/* =========================================================
   Extra styles for dedicated pages: galeria, filmy, techniczne, produkty
   Extends home-light.css
   ========================================================= */

/* ========== PAGE HERO (wspólny dla nowych stron) ========== */
.page-hero {
  background: linear-gradient(135deg, #0b0b0d 0%, #18181c 100%);
  color: #ededea;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-label::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--accent);
}
.page-hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.page-hero-title strong { color: var(--accent); }
.page-hero-lead {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.55;
  color: #b0b0ad;
  max-width: 820px;
  margin-bottom: 24px;
}
.page-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #8a8a88;
  letter-spacing: 0.06em;
}
.page-hero-stats strong { color: var(--accent); font-weight: 800; margin-right: 4px; }

.tech-toc {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #262628;
}
.tech-toc a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b0b0ad;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,106,0,0.2);
  transition: all 0.2s;
}
.tech-toc a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========== GALLERY FILTERS ========== */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.gallery-filter {
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  font-weight: 600;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========== GALLERY GRID ========== */
.gallery-section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.gallery-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px; height: 2px;
  background: var(--accent);
}
.gallery-section-desc {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 820px;
  margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0b0b0d;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover { border-color: var(--accent); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.2s;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-caption {
  color: #ededea;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  max-width: 800px;
  text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  width: 48px; height: 48px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close { top: -60px; right: 0; }
.lightbox-prev { top: 50%; left: -70px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: -70px; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 820px) {
  .lightbox { padding: 20px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 10px; right: 10px; }
}

/* ========== VIDEO SECTION TITLES ========== */
.video-section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #262628;
  position: relative;
}
.video-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px; height: 2px;
  background: var(--accent);
}

/* ========== RELATED CARDS ========== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.related-card {
  display: block;
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #ededea;
  transition: all 0.2s;
  border-left: 3px solid var(--accent);
}
.related-card:hover {
  background: rgba(255,106,0,0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.related-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.related-card h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.related-card p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #b0b0ad;
  margin-bottom: 14px;
}
.related-card-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.related-card.light {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.related-card.light:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.related-card.light h3 { color: var(--text); }
.related-card.light p { color: var(--text-2); }

.gallery-cta-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.gallery-cta-title strong { color: var(--accent); }

/* ========== TECHNICZNE SECTIONS ========== */
.tech-section {
  background: #ffffff;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.tech-section.alt { background: #f4f3ee; }
.tech-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tech-num::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--accent);
}
.tech-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 30px;
}
.tech-title strong { color: var(--accent); }
.tech-two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.tech-two-col.reversed {
  grid-template-columns: 1fr 1.1fr;
}
.tech-two-col.reversed .tech-copy {
  order: 2;
}
.tech-two-col.reversed .tech-media {
  order: 1;
}
@media (max-width: 900px) {
  .tech-two-col, .tech-two-col.reversed {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tech-two-col.reversed .tech-copy { order: 1; }
  .tech-two-col.reversed .tech-media { order: 2; }
}
.tech-copy {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-2);
}
.tech-copy h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  margin: 26px 0 12px;
  letter-spacing: -0.01em;
}
.tech-copy ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.tech-copy li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.tech-copy li::marker { color: var(--accent); font-weight: 700; }
.tech-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}
.tech-copy a:hover { color: var(--accent-dark); }
.tech-copy strong { color: var(--text); font-weight: 700; }
.tech-copy p { margin-bottom: 14px; }

.tech-media {
  position: sticky;
  top: 20px;
}
.tech-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tech-photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #0b0b0d;
}

/* insight box */
.insight-box {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  margin: 20px 0;
}
.insight-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.insight-box p { margin-bottom: 0; }
.tech-section.alt .insight-box {
  background: #ebe9e4;
}

/* ========== PRODUKTY ========== */
.produkty-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.produkty-strip img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.2s;
}
.produkty-strip img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
  .produkty-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  .produkty-strip { grid-template-columns: repeat(2, 1fr); }
}

.produkty-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
}
.produkty-cat {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 26px 22px;
  border-left: 4px solid var(--accent);
  transition: all 0.2s;
}
.produkty-cat:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.produkty-cat-icon {
  display: inline-block;
  width: 48px; height: 48px;
  background: var(--accent);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 48px;
  text-align: center;
  margin-bottom: 16px;
}
.produkty-cat-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.produkty-cat-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 16px;
}
.produkty-cat-list {
  margin: 0 0 16px;
  padding-left: 20px;
}
.produkty-cat-list li {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 6px;
  padding-left: 4px;
}
.produkty-cat-list li::marker { color: var(--accent); }
.produkty-cat-machines {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.produkty-cat-machines strong {
  color: var(--text);
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.produkty-cat-machines a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.produkty-cat-machines a:hover { text-decoration: underline; }

/* ========== INDEX PAGE — POLISH SOFTWARE CALLOUT ========== */
.polish-callout {
  background: linear-gradient(135deg, #0b0b0d 0%, #18181c 100%);
  color: #ededea;
  padding: 56px 0;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}
.polish-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
  pointer-events: none;
}
.polish-callout .container { position: relative; z-index: 2; }
.polish-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .polish-callout-grid { grid-template-columns: 1fr; gap: 30px; }
}
.polish-callout-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.polish-callout-label::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--accent);
}
.polish-callout h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.polish-callout h2 strong { color: var(--accent); }
.polish-callout p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0ad;
  margin-bottom: 16px;
}
.polish-callout-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.polish-callout-badges span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,106,0,0.3);
  padding: 6px 12px;
  text-transform: uppercase;
}
.polish-callout-media {
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.polish-callout-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
}

/* ========== INDEX PAGE — WAGA CALLOUT ========== */
.waga-callout {
  background: #f4f3ee;
  padding: 56px 0;
}
.waga-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 900px) {
  .waga-callout-grid { grid-template-columns: 1fr; gap: 26px; }
}
.waga-callout-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0b0b0d;
}
.waga-callout-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.waga-callout-img:hover img { transform: scale(1.04); }
.waga-callout h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2.0rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.waga-callout h2 strong { color: var(--accent); }
.waga-callout p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 14px;
}
.waga-callout-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ============ PRODUCT GALLERY + VIDEO (karta maszyny) ============ */
.product-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 4px;
}
.product-gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  background: #0b0b0d;
  border: 1px solid var(--border);
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-gallery-main:hover img { transform: scale(1.04); }
.product-gallery-main .mach-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}
.product-gallery-main .mach-badge.bowls {
  top: 50px;
  background: #0b0b0d;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-gallery-thumb {
  aspect-ratio: 4/3;
  background: #0b0b0d;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all 0.2s;
  padding: 0;
}
.product-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery-thumb:hover { border-color: var(--accent); }
.product-gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

/* Product video demo */
.product-video-section {
  background: #0b0b0d;
  color: #ededea;
  padding: 50px 0 60px;
  margin: 50px -20px 30px;
  position: relative;
  overflow: hidden;
}
.product-video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 70%);
  pointer-events: none;
}
.product-video-section .container-inner { position: relative; z-index: 2; padding: 0 20px; }
.product-video-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-video-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.product-video-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.product-video-title strong { color: var(--accent); }
.product-video-player {
  aspect-ratio: 16/9;
  border: 1px solid #262628;
  background: #000;
  overflow: hidden;
}
.product-video-player video {
  width: 100%; height: 100%;
  display: block;
  background: #000;
}

/* Additional feature callouts in product page */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.product-feature {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}
.product-feature-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.product-feature-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-2);
}

/* Applications lightbox for main image */
.product-gallery-main { cursor: zoom-in; }
