:root {
  --cream: #f8f3ea;
  --cream-soft: #fffaf2;
  --sage: #7a8f72;
  --sage-dark: #4f6249;
  --clay: #b97855;
  --gold: #c7a45c;
  --charcoal: #272421;
  --muted: #6f6961;
  --white: #ffffff;
  --border: rgba(39, 36, 33, 0.12);
  --shadow: 0 24px 70px rgba(57, 46, 35, 0.12);
  --shadow-soft: 0 12px 34px rgba(57, 46, 35, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-main: "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(199, 164, 92, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--cream-soft), var(--cream));
  color: var(--charcoal);
  font-family: var(--font-main);
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-logo {
  display: block;
  width: 132px;
  max-height: 58px;
  object-fit: contain;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  padding: 0.55rem 0.85rem;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--sage-dark);
  background: rgba(122, 143, 114, 0.13);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--cream-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  border-radius: 10px;
}

main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 90px);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(47, 62, 48, 0.72), rgba(86, 65, 45, 0.46)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.22), transparent 22rem),
    linear-gradient(135deg, #6f8068, #d3bf97);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  left: -70px;
  bottom: -120px;
  width: min(560px, 58vw);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.hero-symbols {
  position: absolute;
  right: -90px;
  top: 70px;
  width: min(520px, 48vw);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 22px 40px rgba(39, 36, 33, 0.12));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  margin: 1.4rem 0 0;
  max-width: 650px;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.15;
  font-family: var(--font-display);
}

.hero-text {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cream-soft);
  color: var(--sage-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.hero-card-item {
  padding: 1.35rem;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(30, 24, 18, 0.15);
}

.hero-card-item span {
  display: inline-block;
  color: var(--clay);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.hero-card-item strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.hero-card-item p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.intro-section,
.section,
.materials-section,
.visual-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4rem;
}

.intro-section {
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.intro-section h2,
.section-header h2,
.materials-content h2,
.regional-card h2,
.contact-copy h2,
.visual-content h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.intro-section p {
  max-width: 900px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-header {
  margin-bottom: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.collection-card {
  min-height: 350px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.collection-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(122, 143, 114, 0.13);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(122, 143, 114, 0.13);
  color: var(--sage-dark);
  font-size: 1.5rem;
}

.collection-card h3 {
  margin: 1.2rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.collection-card p {
  color: var(--muted);
  margin: 0;
}

.collection-card ul {
  margin: auto 0 0;
  padding-left: 1.2rem;
  color: var(--charcoal);
}

.collection-card li {
  margin-bottom: 0.35rem;
}

.card-yoga {
  background: linear-gradient(180deg, #ffffff, #fbf4e8);
}

.card-fitness {
  background: linear-gradient(180deg, #ffffff, #edf3eb);
}

.card-accessories {
  background: linear-gradient(180deg, #ffffff, #f7eee8);
}

.card-strength {
  background: linear-gradient(180deg, #ffffff, #f5f0df);
}

.card-bags {
  background: linear-gradient(180deg, #ffffff, #eef1ea);
}

.card-custom {
  background: linear-gradient(180deg, #ffffff, #f8efe5);
}

.materials-section {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(199, 164, 92, 0.16), transparent 22rem),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.materials-content p {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.material-tags {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.material-tags span {
  padding: 0.55rem 0.8rem;
  background: var(--cream);
  color: var(--sage-dark);
  border: 1px solid rgba(122, 143, 114, 0.2);
  border-radius: 999px;
  font-weight: 750;
}

.materials-panel {
  padding: 1.6rem;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.materials-panel h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.materials-panel ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.materials-panel li {
  margin-bottom: 0.55rem;
}

.regional-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 1rem;
}

.regional-card,
.regional-side,
.contact-copy,
.contact-form {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.regional-card p,
.regional-side p,
.contact-copy p {
  color: var(--muted);
}

.regional-link {
  display: inline-flex;
  margin-top: 0.6rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.regional-side {
  background:
    linear-gradient(135deg, rgba(122, 143, 114, 0.14), rgba(199, 164, 92, 0.14)),
    var(--cream-soft);
}

.regional-side h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
}

.mini-stat-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.mini-stat-grid div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.mini-stat-grid strong,
.mini-stat-grid span {
  display: block;
}

.mini-stat-grid strong {
  color: var(--sage-dark);
  font-size: 1.25rem;
}

.mini-stat-grid span {
  color: var(--muted);
}

.visual-section {
  min-height: 360px;
  padding: 3rem;
  display: grid;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(39, 36, 33, 0.52), rgba(79, 98, 73, 0.65)),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.24), transparent 18rem),
    linear-gradient(135deg, #9ba98e, #d4b784);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--white);
}

.visual-content {
  max-width: 800px;
}

.visual-content h2 {
  color: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.presence-note {
  margin-top: 1.4rem;
  padding: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-weight: 750;
}

.contact-form label {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--sage-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.85rem 0.9rem;
  color: var(--charcoal);
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
}

.site-footer p {
  margin: 0.2rem 0;
  color: rgba(248, 243, 234, 0.76);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(39, 36, 33, 0.45);
}

.popup.is-visible {
  display: flex;
}

.popup-box {
  position: relative;
  width: min(460px, 100%);
  padding: 2.3rem 1.6rem 1.6rem;
  background: var(--cream-soft);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.popup-box h2 {
  margin: 0 0 0.7rem;
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 2rem;
}

.popup-box p {
  margin: 0;
  color: var(--muted);
}

.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-section,
  .section-header,
  .materials-section,
  .regional-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section {
    padding: 2.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 740px) {
  .site-header {
    position: static;
  }

  .navbar {
    border-radius: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.6rem;
  }

  .nav-links.is-open {
    display: flex;
  }

   .brand-logo {
  width: 112px;
}

.hero-watermark {
  width: 420px;
  left: -140px;
  bottom: -120px;
  opacity: 0.12;
}

.hero-symbols {
  width: 360px;
  right: -160px;
  top: 80px;
  opacity: 0.18;
} 
    
  .nav-links a {
    text-align: center;
    background: rgba(122, 143, 114, 0.08);
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 1.3rem;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .intro-section,
  .materials-section,
  .visual-section,
  .regional-card,
  .regional-side,
  .contact-copy,
  .contact-form {
    padding: 1.4rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}@charset "utf-8";
/* CSS Document */
/* Product Lines Page */

.no-scroll {
  overflow: hidden;
}

.product-hero {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  min-height: 460px;
  margin: 0 auto 2rem;
  padding: 4rem;
  display: grid;
  align-items: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(79, 98, 73, 0.82), rgba(177, 124, 86, 0.58)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, #6f8068, #d7bd8f);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.product-hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.product-hero-content p {
  margin: 1.1rem 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.product-watermark {
  position: absolute;
  left: -90px;
  bottom: -150px;
  width: min(620px, 58vw);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.product-symbols {
  position: absolute;
  right: -80px;
  top: 20px;
  width: min(580px, 52vw);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.product-nav-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 3rem;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.product-nav-section a {
  padding: 0.65rem 0.95rem;
  color: var(--sage-dark);
  background: rgba(122, 143, 114, 0.1);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.product-nav-section a:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.product-line-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.product-line-header {
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.product-line-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.product-line-header p {
  margin: 0;
  color: var(--muted);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-photo {
  position: relative;
  min-height: 280px;
  padding: 0;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.product-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(39, 36, 33, 0.72));
}

.product-photo span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: left;
}

.product-photo:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.product-lightbox.is-visible {
  display: block;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.88);
}

.product-lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox-stage {
  position: relative;
  width: min(1100px, 90vw);
  height: min(760px, 82vh);
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.lightbox-caption p,
.lightbox-caption h2,
.lightbox-caption span {
  margin: 0;
}

.lightbox-caption p {
  color: var(--sage-dark);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.lightbox-caption h2 {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
}

.lightbox-caption span {
  color: var(--muted);
  font-weight: 750;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 3;
  border: none;
  cursor: pointer;
  background: rgba(255, 250, 242, 0.92);
  color: var(--charcoal);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.lightbox-close {
  top: 1.3rem;
  right: 1.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 72px;
  border-radius: 999px;
  font-size: 3rem;
  line-height: 1;
}

.lightbox-arrow-left {
  left: 1.3rem;
}

.lightbox-arrow-right {
  right: 1.3rem;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--white);
}

@media (max-width: 980px) {
  .product-line-header {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero {
    padding: 2.5rem;
  }
}

@media (max-width: 740px) {
  .product-hero {
    min-height: 380px;
    padding: 2rem 1.3rem;
  }

  .product-symbols {
    width: 420px;
    right: -190px;
    top: 70px;
    opacity: 0.2;
  }

  .product-watermark {
    width: 420px;
    left: -150px;
    bottom: -130px;
    opacity: 0.13;
  }

  .product-nav-section {
    border-radius: 24px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-line-section {
    padding: 1.3rem;
  }

  .lightbox-stage {
    width: 94vw;
    height: 78vh;
  }

  .lightbox-caption {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .lightbox-arrow {
    width: 44px;
    height: 58px;
    font-size: 2.4rem;
  }

  .lightbox-arrow-left {
    left: 0.5rem;
  }

  .lightbox-arrow-right {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 0.8rem;
    right: 0.8rem;
  }
}




