/* =========================================================================
   POSHAK MANDI — Stylesheet
   Design tokens live at the top under :root. Change colors/fonts there.
   ========================================================================= */

:root {
  /* ---- Color palette ---- */
  --color-bg: #FAF6F0;          /* warm ivory background */
  --color-bg-alt: #FAF6F0;      /* soft beige panel */
  --color-surface: #FFFFFF;     /* card surface */
  --color-text: #2B2622;        /* deep charcoal */
  --color-text-soft: #736A5E;   /* muted charcoal-brown, secondary text */
  --color-line: #E1D5C0;        /* hairline border */
  --color-accent: #A9824C;      /* muted gold */
  --color-accent-soft: #C7A876; /* lighter gold, hovers */

  /* ---- Type ---- */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --container-max: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-height: 84px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                  */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.logo_img { max-width: 40%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------------------------------------------------------------- */
/* Signature motif — thin zari-inspired divider                          */
/* A repeating diamond-and-dash pattern nods to the woven borders on an   */
/* ethnic suit. Used sparingly as a section divider, never decoratively. */
/* ---------------------------------------------------------------------- */
.zari-divider {
  width: 100%;
  height: 14px;
  background-image:
    linear-gradient(45deg, var(--color-accent) 25%, transparent 25%, transparent 75%, var(--color-accent) 75%),
    linear-gradient(45deg, var(--color-accent) 25%, transparent 25%, transparent 75%, var(--color-accent) 75%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-accent);
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--color-text);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--color-text); color: var(--color-bg); }

.btn--primary {
  background: var(--color-text);
  color: var(--color-bg);
}
.btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface);
}

.btn--gold {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn--gold:hover {
  background: var(--color-accent);
  color: var(--color-surface);
}

.btn--whatsapp {
  border-color: #3C6E52;
  color: #3C6E52;
}
.btn--whatsapp:hover {
  background: #3C6E52;
  border-color: #3C6E52;
  color: #fff;
}

.btn--block { width: 100%; }
.btn--small { padding: 12px 22px; font-size: 11px; }

/* ---------------------------------------------------------------------- */
/* Navigation                                                             */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-color: var(--color-line);
  box-shadow: 0 8px 24px -20px rgba(43, 38, 34, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.14em;
  font-weight: 600;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: var(--color-text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--color-accent);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--color-accent); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}
.nav-icons button:not(.nav-toggle), .nav-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--color-text);
  transition: color 0.25s ease, transform 0.25s ease;
  background: none;
  border: none;
  padding: 0;
}
.nav-icons button:hover, .nav-icons a:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}
.nav-icons svg { width: 19px; height: 19px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 40px var(--gutter);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-panel ul { display: flex; flex-direction: column; gap: 28px; }
.mobile-panel a {
  font-family: var(--font-display);
  font-size: 30px;
}
.mobile-panel .mobile-icons {
  margin-top: 48px;
  display: flex;
  gap: 24px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-panel { display: block; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                   */
/* ---------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: calc(100vh - var(--nav-height));
}
.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--gutter);
  gap: 26px;
}
.hero-copy .eyebrow { margin-bottom: 4px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--color-text-soft);
}
.hero-desc {
  max-width: 420px;
  color: var(--color-text-soft);
  font-size: 15px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { height: 60vh; }
  .hero-copy { padding: 48px var(--gutter); }
}

/* ---------------------------------------------------------------------- */
/* Section shell                                                         */
/* ---------------------------------------------------------------------- */
.section { padding: 108px 0; }
.section--alt { background: var(--color-bg-alt); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-top: 10px;
}
.section-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-text-soft);
  margin-top: 10px;
}
.section-head-text { max-width: 560px; }

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------------- */
/* Product grid + cards                                                   */
/* ---------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}
@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card { display: flex; flex-direction: column; }
.product-media {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 3 / 4;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.045); }
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-bg);
  padding: 6px 12px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.product-info { padding-top: 20px; }
.product-category {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.product-name {
  font-family: var(--font-display);
  font-size: 24px;
  margin-top: 6px;
}
.product-desc {
  color: var(--color-text-soft);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.55;
}
.product-price {
  margin-top: 12px;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.product-actions .btn { flex: 1; }

.section-footer-link {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ---------------------------------------------------------------------- */
/* Category / collection preview cards                                   */
/* ---------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--color-line);
}
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.1;
  background: var(--color-bg-alt);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.category-card:hover img { transform: scale(1.06); }
.category-card-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 22px;
  background: linear-gradient(0deg, rgba(20,17,14,0.62), rgba(20,17,14,0));
  color: #fff;
}
.category-card-label .eyebrow { color: var(--color-accent-soft); }
.category-card-label .eyebrow::before { background: var(--color-accent-soft); }
.category-card-label h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-top: 8px;
  font-weight: 500;
}
.category-card-label p {
  font-size: 12.5px;
  margin-top: 6px;
  opacity: 0.85;
  max-width: 220px;
}

@media (max-width: 980px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* Filter tabs (collection page) */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 20px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-text-soft);
  transition: all 0.25s ease;
}
.filter-tab:hover { border-color: var(--color-accent); color: var(--color-text); }
.filter-tab.is-active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-bg);
}

.empty-state {
  padding: 80px 0;
  text-align: center;
  color: var(--color-text-soft);
  font-family: var(--font-display);
  font-size: 22px;
}

/* ---------------------------------------------------------------------- */
/* About teaser / split sections                                         */
/* ---------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-media { overflow: hidden; aspect-ratio: 4/5; background: var(--color-bg-alt); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy p { color: var(--color-text-soft); margin-top: 22px; font-size: 15.5px; line-height: 1.85; }
.split-copy .btn { margin-top: 34px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------------------------------------------------------------------- */
/* Testimonials                                                          */
/* ---------------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 40px 34px;
}
.testimonial-stars { color: var(--color-accent); letter-spacing: 3px; font-size: 14px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  margin-top: 18px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--color-bg-alt);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                 */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-brand { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.12em; }
.footer-tagline { margin-top: 14px; color: #C9C0B4; font-size: 14px; max-width: 260px; }
.footer-col h4 {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { color: #D9D2C6; font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #55504A;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--color-accent-soft); color: var(--color-accent-soft); }

.newsletter-form { display: flex; margin-top: 18px; border-bottom: 1px solid #55504A; padding-bottom: 10px; }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.newsletter-form input::placeholder { color: #8A8378; }
.newsletter-form button {
  background: none;
  border: none;
  color: var(--color-accent-soft);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.newsletter-success { margin-top: 12px; font-size: 13px; color: var(--color-accent-soft); display: none; }
.newsletter-success.is-visible { display: block; }

.footer-bottom {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid #423E38;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #8A8378;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------------------------------------------------------------- */
/* Floating WhatsApp button                                              */
/* ---------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3C6E52;
  color: #fff;
  padding: 15px 20px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -8px rgba(0,0,0,0.45); }
.whatsapp-float svg { width: 20px; height: 20px; flex: 0 0 auto; }
.whatsapp-float span { display: none; }
@media (min-width: 700px) { .whatsapp-float span { display: inline; } }

/* ---------------------------------------------------------------------- */
/* Search overlay                                                        */
/* ---------------------------------------------------------------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(43, 38, 34, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-panel {
  background: var(--color-bg);
  max-width: 760px;
  margin: 0 auto;
  padding: 90px var(--gutter) 60px;
  min-height: 100%;
  transform: translateY(-16px);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  max-height: 100vh;
}
.search-overlay.is-open .search-panel { transform: translateY(0); }
.search-close {
  position: absolute;
  top: 26px;
  right: var(--gutter);
  background: none;
  border: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}
.search-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 16px;
}
.search-input-row svg { width: 22px; height: 22px; flex: 0 0 auto; }
#search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-text);
}
#search-input::placeholder { color: var(--color-text-soft); }
.search-hint { margin-top: 16px; font-size: 12.5px; color: var(--color-text-soft); letter-spacing: 0.02em; }
.search-results { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.search-result {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}
.search-result img { width: 56px; height: 70px; object-fit: cover; }
.search-result-name { font-family: var(--font-display); font-size: 18px; }
.search-result-meta { font-size: 12px; color: var(--color-text-soft); margin-top: 3px; }

/* ---------------------------------------------------------------------- */
/* Page header (interior pages)                                          */
/* ---------------------------------------------------------------------- */
.page-header {
  padding: 72px 0 48px;
  text-align: center;
}
.page-header .eyebrow { justify-content: center; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  margin-top: 14px;
}
.page-header p {
  margin-top: 14px;
  color: var(--color-text-soft);
  max-width: 480px;
  margin-inline: auto;
}

.page-banner {
  width: 100%;
  aspect-ratio: 18/7;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: 64px;
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) {
  .page-banner { aspect-ratio: 4/5; margin-bottom: 40px; }
}

/* ---------------------------------------------------------------------- */
/* Editorial lookbook spread (New Arrivals page)                         */
/* ---------------------------------------------------------------------- */
.lookbook {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
}
.lookbook-media { overflow: hidden; background: var(--color-bg-alt); }
.lookbook-media img { width: 100%; height: 100%; object-fit: cover; }
.lookbook-media--tall { aspect-ratio: 3/4; }
.lookbook-media--offset { aspect-ratio: 3/4; margin-bottom: 48px; }
@media (max-width: 800px) {
  .lookbook { grid-template-columns: 1fr; gap: 16px; }
  .lookbook-media--offset { margin-bottom: 0; }
}

/* ---------------------------------------------------------------------- */
/* Product detail page                                                   */
/* ---------------------------------------------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  padding: 56px 0 100px;
}
.product-gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.product-gallery-thumbs img {
  aspect-ratio: 3/4;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, outline 0.2s ease;
}
.product-gallery-thumbs img:hover, .product-gallery-thumbs img.is-active { opacity: 1; outline: 1px solid var(--color-accent); }

.pd-category { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent); }
.pd-name { font-family: var(--font-display); font-size: clamp(34px, 4vw, 46px); margin-top: 10px; }
.pd-price { margin-top: 14px; font-size: 19px; }
.pd-desc { margin-top: 22px; color: var(--color-text-soft); line-height: 1.8; font-size: 15px; }

.pd-specs { margin-top: 30px; border-top: 1px solid var(--color-line); }
.pd-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
}
.pd-spec-row span:first-child { color: var(--color-text-soft); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }

.pd-sizes { display: flex; gap: 10px; margin-top: 10px; }
.size-chip {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-line);
  font-size: 12.5px;
}

.pd-actions { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.pd-note { font-size: 12.5px; color: var(--color-text-soft); }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 36px; padding-top: 24px; }
}

/* ---------------------------------------------------------------------- */
/* Scroll reveal                                                         */
/* ---------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
