/* ==========================================================================
   SECTIONS.CSS -- Shubhdeep Metier
   ========================================================================== */

/* 1. ANNOUNCEMENT BAR */
.announcement-bar {
  background-color: var(--color-text-primary);
  color: var(--color-bg-surface);
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: var(--z-sticky);
}
.announcement-bar__text {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-align: center;
  margin-bottom: 0;
}
.announcement-bar__text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.announcement-bar__close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-bg-surface);
  opacity: 0.6;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: opacity var(--transition-base);
}
.announcement-bar__close:hover { opacity: 1; }

/* 2. NAVBAR */
.navbar {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  right: 0;
  z-index: calc(var(--z-sticky) - 1);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: all 300ms ease;
  background: var(--color-bg-surface);
  border-bottom: 1px solid transparent;
}
.navbar--scrolled {
  top: 0;
  height: var(--navbar-height-scrolled);
  background: var(--color-bg-surface);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-xs);
}
.navbar--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
/* Transparent state when floating over the full-bleed hero */
.navbar--over-hero {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
.navbar--over-hero .navbar__brand-name,
.navbar--over-hero .nav-link,
.navbar--over-hero .hamburger-line {
  color: #fff;
}
.navbar--over-hero .navbar__brand-tag {
  color: rgba(255,255,255,0.65);
}
.navbar--over-hero .nav-link:hover {
  color: var(--color-gold);
}
.navbar--over-hero .nav-icon-btn {
  color: #fff;
}
.navbar--over-hero .nav-icon-btn:hover {
  color: var(--color-gold);
  background: rgba(255,255,255,0.1);
}
.navbar--over-hero .hamburger-line {
  background: #fff;
}
.navbar--over-hero .navbar__logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0,0,0,0.25));
}

.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar__logo-img {
  height: 40px;
  width: auto;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar__brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
}
.navbar__brand-tag {
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}
.navbar__nav {
  display: none;
}
.nav-link {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-primary);
  padding: 8px 14px;
  letter-spacing: var(--tracking-wide);
  transition: color var(--transition-base);
  position: relative;
  text-transform: uppercase;
}
.nav-link:hover, .nav-link--active {
  color: var(--color-clay);
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
}
.nav-icon-btn:hover {
  color: var(--color-clay);
  background: var(--color-clay-light);
}
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger-line {
  width: 22px;
  height: 1.5px;
  background: var(--color-text-primary);
  transition: all 300ms ease;
  display: block;
}
.navbar__hamburger.is-open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.navbar__hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* 3. DROPDOWN MENU */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 12px 0;
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
  font-weight: 500;
}
.dropdown-menu a:hover {
  color: var(--color-clay);
  background: var(--color-bg-main);
  padding-left: 28px;
}
.dropdown-menu__divider {
  height: 1px;
  background: var(--color-border);
  margin: 8px 0;
}

/* 4. MOBILE DRAWER */
.drawer-overlay {
  fixed: inset 0; /* Fallback syntax handled below */
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(48,39,34,0.6);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(85vw, 360px);
  background: var(--color-bg-surface);
  z-index: var(--z-modal);
  transform: translateX(-100%);
  transition: transform 400ms var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}
.drawer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text-primary);
  font-weight: 500;
}
.drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-secondary);
  background: transparent;
  border: none;
}
.drawer__nav {
  padding: 16px 0;
  flex-grow: 1;
}
.drawer__nav-item {
  display: block;
  padding: 14px 24px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-base);
}
.drawer__nav-item:hover { color: var(--color-clay); }
.drawer__nav-label {
  display: block;
  font-size: var(--text-label);
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  padding: 24px 24px 12px;
}
.drawer__subnav {
  display: flex;
  flex-direction: column;
}
.drawer__subnav a {
  padding: 12px 24px 12px 32px;
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}
.drawer__subnav a:hover { color: var(--color-clay); }
.drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-main);
}
.drawer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 5. HERO SECTION — Full-Bleed Cinematic */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  background: var(--color-black);
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
/* Multi-layer overlay: bottom warm gradient + overall dark tint */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(30,22,18,0.88) 0%,  rgba(30,22,18,0.45) 45%, rgba(30,22,18,0.15) 100%),
    linear-gradient(to right, rgba(30,22,18,0.35) 0%, transparent 60%);
}

/* Floating badge — top right */
.hero__badge {
  position: absolute;
  top: calc(var(--navbar-height) + var(--announcement-height) + 28px);
  right: clamp(1.25rem, 4vw, 3.5rem);
  z-index: 3;
  animation: badgeFadeIn 1s 0.8s both;
}
@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 16px 18px;
  background: rgba(195, 164, 109, 0.18);
  border: 1px solid rgba(195, 164, 109, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.4;
}
.hero__badge-inner svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Centered content body */
.hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: calc(var(--navbar-height) + var(--announcement-height) + 4rem) clamp(1.25rem, 6vw, 5rem) 8rem;
  max-width: 900px;
  animation: heroBodyIn 1s 0.2s both cubic-bezier(0.16,1,0.3,1);
}
@keyframes heroBodyIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow with decorative lines */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.hero__eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-white);
  margin: 0;
}
.hero__headline em {
  font-style: italic;
  color: var(--color-gold);
}

/* Subtext */
.hero__subtext {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(247, 243, 238, 0.78);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin: 0;
}
.hero__br { display: none; }
@media (min-width: 640px) { .hero__br { display: inline; } }

/* CTA buttons */
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 4px;
}
.btn--hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--color-clay);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border: 2px solid var(--color-clay);
  border-radius: 0;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease, transform 200ms ease;
  text-decoration: none;
}
.btn--hero-primary:hover {
  background: var(--color-clay-hover);
  border-color: var(--color-clay-hover);
  transform: translateY(-2px);
}
.btn--hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  cursor: pointer;
  transition: background 250ms ease, border-color 250ms ease, transform 200ms ease;
  text-decoration: none;
  backdrop-filter: blur(6px);
}
.btn--hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

/* Trust strip */
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  margin-top: 8px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.75);
}
.hero__trust-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}
.hero__trust-divider {
  font-size: 0.5rem;
  color: var(--color-gold);
  opacity: 0.6;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroBodyIn 1s 1.2s both;
}
.hero__scroll-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.45);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(247, 243, 238, 0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  top: -8px;
  left: 0;
  width: 1px;
  height: 12px;
  background: var(--color-gold);
  animation: scrollDrop 1.8s 1.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -12px; opacity: 1; }
  80%  { top: 50px;  opacity: 1; }
  100% { top: 56px;  opacity: 0; }
}

/* 6. CATEGORIES & BESTSELLERS */
.categories__header, .bestsellers__header {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-10);
}
.categories__header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.bestsellers__header {
  align-items: center;
  text-align: center;
}
.bestsellers__footer {
  text-align: center;
  margin-top: var(--space-12);
}

/* 7. PERSONALISATION SECTION */
.personalisation__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.personalisation__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.personalisation__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  width: 100%;
}
.personalisation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.personalisation-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}
.personalisation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-body);
  color: var(--color-text-secondary);
}
.personalisation-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-clay);
  margin-top: 10px;
}

/* 8. HOW IT WORKS */
.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  position: relative;
}

/* 9. OCCASIONS */
.occasion-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
}
.occasion-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}
.occasion-card:hover .occasion-card__image {
  transform: scale(1.06);
}
.occasion-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(48,39,34,0.7) 0%, rgba(48,39,34,0) 60%);
}
.occasion-card__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: var(--color-white);
  margin: 0;
}

/* 10. SEASONAL EDIT */
.seasonal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  max-width: 720px;
  margin: 0 auto;
}
.seasonal__eyebrow {
  font-size: var(--text-label);
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 700;
}
.seasonal__heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  color: var(--color-bg-main);
  font-weight: 400;
  font-style: italic;
  margin: 0;
}
.seasonal__desc {
  font-size: var(--text-body-lg);
  color: rgba(247,243,238,0.7);
  line-height: var(--leading-relaxed);
}
.seasonal__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

/* 11. BRAND STORY */
.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-story__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.brand-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-story__image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(247,243,238,0.95);
  padding: 16px;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}
.brand-story__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* 12. WHY SHUBHDEEP */
.why__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
.why__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.why__pillars {
  display: flex;
  flex-direction: column;
}
.why-pillar {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.why-pillar:first-child {
  border-top: 1px solid var(--color-border);
}
.why-pillar__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-border-strong);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.why-pillar__title {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}
.why-pillar__desc {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* 13. REVIEWS */
.reviews__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

/* 14. INSTAGRAM */
.instagram-section__header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: var(--space-10);
}
.instagram-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  display: block;
  background: var(--color-border);
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.instagram-item:hover img {
  transform: scale(1.05);
}
.instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(48,39,34,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: white;
}
.instagram-item:hover .instagram-item__overlay {
  opacity: 1;
}

/* 15. CUSTOM CTA */
.custom-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  max-width: 640px;
  margin: 0 auto;
}
.custom-cta__heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  color: var(--color-bg-surface);
  font-weight: 400;
  font-style: italic;
  margin: 0;
}
.custom-cta__text {
  font-size: var(--text-body-lg);
  color: rgba(255,253,252,0.8);
  line-height: var(--leading-relaxed);
}
.custom-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

/* 16. FOOTER */
.footer {
  background: var(--color-text-primary);
  color: var(--color-bg-main);
  padding-top: var(--section-py);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-bg-main);
  font-weight: 300;
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(247,243,238,0.85);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 32px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color var(--transition-base);
}
.footer__social-link:hover {
  color: var(--color-clay);
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-bg-main);
  transition: opacity var(--transition-base);
  opacity: 0.9;
}
.footer__links a:hover {
  opacity: 1;
  color: var(--color-gold);
}
.footer__bottom {
  margin-top: 4rem;
  padding: 24px 0;
  border-top: 1px solid rgba(247,243,238,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.footer__copyright {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(247,243,238,0.7);
}
.footer__tags {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.6);
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* 17. PAGE HERO */
.page-hero {
  padding: calc(var(--navbar-height) + var(--announcement-height) + var(--space-12)) 0 var(--space-10);
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border);
}
.page-hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: var(--space-4);
}
.page-hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 400;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-4) 0;
}
.page-hero__subtext {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 640px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}
.breadcrumb a:hover {
  color: var(--color-clay);
}
.breadcrumb__separator {
  color: var(--color-border-strong);
  font-size: 10px;
}

/* 18. PRODUCT DETAIL */
.product-detail {
  padding-block: var(--section-py-sm);
  background: var(--color-bg-surface);
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.product-gallery {
  position: relative;
}
.product-gallery__main {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-bg-main);
  margin-bottom: 16px;
  cursor: zoom-in;
  border: 1px solid var(--color-border);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-gallery__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-base);
  background: var(--color-bg-main);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumb.is-active {
  border-color: var(--color-clay);
}
.product-info {
  display: flex;
  flex-direction: column;
}
.product-info__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  background: var(--color-clay-light);
  color: var(--color-clay);
  margin-bottom: 16px;
}
.product-info__name {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin: 0 0 12px 0;
}
.product-info__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}
.product-info__price-note {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-secondary);
}
.product-info__desc {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 32px;
}
.product-info__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}
.product-info__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: var(--text-small);
}
.product-info__meta-label {
  font-weight: 600;
  color: var(--color-text-primary);
  min-width: 140px;
}
.product-info__meta-value {
  color: var(--color-text-secondary);
  line-height: 1.4;
}
.product-personalisation {
  background: var(--color-bg-main);
  padding: 24px;
  border: 1px solid var(--color-border);
  margin-bottom: 32px;
  border-radius: var(--radius-sm);
}
.product-personalisation__title {
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
  background: var(--color-bg-surface);
}
.quantity-selector__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background var(--transition-base);
}
.quantity-selector__btn:hover {
  background: var(--color-bg-main);
}
.quantity-selector__input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-weight: 600;
  color: var(--color-text-primary);
  background: transparent;
  -moz-appearance: textfield;
}
.quantity-selector__input::-webkit-outer-spin-button,
.quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  z-index: var(--z-sticky);
  box-shadow: 0 -4px 20px rgba(48,39,34,0.08);
}
.product-sticky-bar .btn {
  flex: 1;
}

/* 19. LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,17,16,0.96);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  padding: 20px;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 400ms var(--ease-out);
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base);
}
.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

