/* ==========================================================================
   EVERLOOM DESIGN SYSTEM & LUXURY STYLING
   Primary Background: #eeebe6
   ========================================================================== */

:root {
  --bg-primary: #eeebe6;
  --bg-secondary: #e5e2dc;
  --color-dark: #000000;
  --color-muted: #55524e;
  --color-light-muted: #88847f;
  --color-white: #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Outfit', sans-serif;

  --nav-height: 65px;
  --topbar-height: 34px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-y: auto;
  /* Kill the native scrollbar entirely — we use a custom floating one */
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

/* ── Custom floating scrollbar ──────────────────────────────
   Position fixed, no background, zero footprint on the layout.
   Only the black thumb is visible — and only while scrolling.
   ─────────────────────────────────────────────────────────── */
#custom-scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 5px;
  height: 100vh;
  z-index: 99999;
  pointer-events: none;
  /* don't block clicks */
  background: transparent;
  /* NO background — fully invisible gutter */
}

#custom-scrollbar-thumb {
  position: absolute;
  right: 0;
  width: 5px;
  background-color: #000000;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#custom-scrollbar.is-scrolling #custom-scrollbar-thumb {
  opacity: 1;
}


body {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--bg-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   GLOBAL ANIMATED UNDERLINE HOVER EFFECT (Excludes Buttons & Logos)
   ========================================================================== */
a:not(.btn):not(.button):not(.social-icon-btn):not(.stay-know-btn):not(.privilege-action-btn):not(.newsletter-btn):not(.nav-brand):not(.footer-logo):not(.subject-wrapper):not(.product-card):not(.nav-action-btn):not(.quick-view-overlay-btn):not(.shop-now-circle):not(.designed-cta-btn) {
  position: relative;
  text-decoration: none;
}

a:not(.btn):not(.button):not(.social-icon-btn):not(.stay-know-btn):not(.privilege-action-btn):not(.newsletter-btn):not(.nav-brand):not(.footer-logo):not(.subject-wrapper):not(.product-card):not(.nav-action-btn):not(.quick-view-overlay-btn):not(.shop-now-circle):not(.designed-cta-btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

a:not(.btn):not(.button):not(.social-icon-btn):not(.stay-know-btn):not(.privilege-action-btn):not(.newsletter-btn):not(.nav-brand):not(.footer-logo):not(.subject-wrapper):not(.product-card):not(.nav-action-btn):not(.quick-view-overlay-btn):not(.shop-now-circle):not(.designed-cta-btn):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.shop-now-circle::after,
.designed-cta-btn::after {
  display: none !important;
  content: none !important;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   1. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: var(--color-dark);
  color: var(--color-white);
  height: var(--topbar-height);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.announcement-content {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.announcement-right a:hover {
  color: var(--color-white);
}

.announcement-right .divider {
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   2. NAVBAR
   ========================================================================== */
.navbar {
  background-color: var(--bg-primary);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
  transition: var(--transition-smooth);
}

.nav-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-item {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-dark);
  position: relative;
  padding: 0.2rem 0;
  transition: opacity 0.2s ease;
}

.nav-item:hover {
  opacity: 1;
}

/* Brand Logo */
.nav-brand {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--color-dark);
  text-transform: uppercase;
  text-align: center;
}

/* Right Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.8rem;
}

.nav-action-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  transition: opacity 0.2s ease;
}

.nav-action-btn:hover {
  opacity: 0.65;
}

/* ==========================================================================
   3. HERO SECTION (PIXEL PERFECT MATCH TO REFERENCE IMAGE 2)
   ========================================================================== */
.hero-section {
  position: relative;
  height: calc(100vh - var(--topbar-height) - var(--nav-height));
  min-height: 720px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

/* Mobile Hero Tagline — Hidden on Desktop */
.mobile-hero-tagline {
  display: none;
}

/* Giant Display Background Typography */
.hero-bg-text-container {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.giant-bg-text {
  font-family: var(--font-display);
  font-size: clamp(240px, 33vw, 580px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  margin: 0;
  white-space: nowrap;
  opacity: 0.98;
  transform-origin: center center;
  transition: transform 0.12s ease-out;
}

/* Hero Stage & Subject Model Layer */
.hero-stage {
  position: absolute;
  /* Anchor stage to the very bottom of the hero */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* No max-width cap — let model breathe across the layout */
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* No pointer events on the container so bottom UI stays clickable */
  pointer-events: none;
}

.subject-wrapper {
  position: relative;
  /* Fill most of the hero height so model is big */
  height: 96%;
  pointer-events: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
  /* transform-origin at bottom so scale changes don't shift position */
  transform-origin: bottom center;
  /* Smooth transition between subjects */
  transition: opacity 0.35s ease;
}

.subject-img {
  /* Let height drive the sizing, width adapts automatically */
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: none;
  transform-origin: bottom center;
  will-change: transform, opacity;
  /* Bottom of image = bottom of wrapper = bottom of hero */
  vertical-align: bottom;
  display: block;
}

/* Model Drift-Left Out & Enter-From-Right In Animations */
@keyframes subjectFlyOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-150px);
  }
}

@keyframes subjectFlyIn {
  0% {
    opacity: 0;
    transform: translateX(150px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.subject-img.fly-out {
  animation: subjectFlyOut 0.45s cubic-bezier(0.3, 0, 0.7, 1) forwards;
}

.subject-img.fly-in {
  animation: subjectFlyIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Bottom Left Block (Headline + Counter + Progress Bars) */
.hero-bottom-left {
  position: absolute;
  bottom: 3.5rem;
  left: 4.5rem;
  z-index: 10;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  text-transform: uppercase;
}

.accent-line {
  width: 24px;
  height: 1.5px;
  background-color: var(--color-dark);
  margin: 0.8rem 0 1.6rem 0;
}

.hero-pagination-control {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.counter-display {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.current-num {
  color: var(--color-dark);
}

.separator,
.total-num {
  color: var(--color-muted);
}

/* Progress Step Bar Lines */
.step-bars {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.step-bar {
  position: relative;
  overflow: hidden;
  width: 42px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.step-bar.active {
  width: 52px;
}

/* Animated fill that sweeps across the active step bar */
.step-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--color-dark);
  border-radius: 2px;
  /* transition is set dynamically by JS */
}

/* Bottom Right Block (Circular SHOP NOW Button + NEW COLLECTION 2026) */
.hero-bottom-right {
  position: absolute;
  bottom: 3.5rem;
  right: 4.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Circular Floating Magnetic CTA Button */
.shop-now-circle {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-dark);
  transition: var(--transition-smooth);
  margin-bottom: 2.2rem;
}

.circle-text {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.2;
}

.circle-arrow-icon {
  margin-top: 0.4rem;
  transition: transform 0.3s ease;
}

.shop-now-circle:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.shop-now-circle:hover .circle-arrow-icon {
  transform: translate(2px, -2px);
}

.meta-block {
  text-align: right;
}

.meta-title {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-dark);
}

.meta-year {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  margin-top: 0.1rem;
}

.accent-line-small {
  width: 20px;
  height: 1.5px;
  background-color: var(--color-dark);
  margin: 0.4rem 0 0 auto;
}

/* ==========================================================================
   CATEGORY SHOWCASE & DESIGNED TO LAST SECTION (EXACT MATCH TO REFERENCE 2)
   ========================================================================== */
.category-showcase-section {
  width: 100%;
  background-color: var(--bg-primary);
}

/* ── Top Row: 3 Column Category Cards ─────────────────────── */
.category-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border: none;
}

.category-card {
  display: flex;
  align-items: center;
  position: relative;
  height: 335px;
  overflow: hidden;
  padding: 0;
  border: none;
}

.category-card:last-child {
  border: none;
}

/* Exact Background Colors Matching Reference Image 2 */
.card-men {
  background-color: #8a8d8f;
}

.card-women {
  background-color: #ece8e1;
}

.card-kids {
  background-color: #e5e1da;
}

/* Image Wrapper — Full Card Seamless Background */
.category-img-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-img {
  transform: scale(1.04);
}

/* Card Content Typography — Larger Text & Pushed to Far Right Edge */
.category-content {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32%;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
  pointer-events: auto;
}

.category-title {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  text-transform: uppercase;
}

.category-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
  margin: 0.7rem 0 1.4rem 0;
}

.category-link {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.category-link:hover {
  opacity: 0.65;
}

/* ── Bottom Row: Split Grid (DESIGNED TO LAST) ───────────── */
.designed-to-last-banner {
  display: grid;
  grid-template-columns: 51.5% 48.5%;
  min-height: 540px;
  width: 100%;
  border: none;
}

.designed-img-wrapper {
  width: 100%;
  height: 100%;
  min-height: 540px;
  background-color: #626568;
  overflow: hidden;
}

.designed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.designed-to-last-banner:hover .designed-img {
  transform: scale(1.03);
}

/* Editorial Banner Content */
.designed-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 6.5rem;
  background-color: #9b928b;
}

.designed-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #353434d6;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.designed-heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.designed-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.42;
  color: #333333;
  margin-bottom: 2.4rem;
}

.designed-cta-btn {
  display: inline-block;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.15rem 2.6rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.designed-cta-btn:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

/* ── Trust Features Bar (Exact Match to Reference Screenshot) ── */
.trust-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.2rem 3rem;
}

.trust-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-feature-item:last-child {
  border-right: none;
}

.trust-icon-wrapper {
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text-group {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  text-transform: uppercase;
}

.trust-sub {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  color: #555555;
  margin-top: 0.15rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .category-grid-top {
    grid-template-columns: 1fr;
  }

  .category-card {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .designed-to-last-banner {
    grid-template-columns: 1fr;
  }

  .designed-content-wrapper {
    padding: 3.5rem 2.5rem;
  }
}

/* ==========================================================================
   4. PLASMA LOOKBOOK STRIP SECTION
   ========================================================================== */
.plasma-strip-section {
  background-color: var(--bg-secondary);
  padding: 3rem 0 3.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section-header-compact {
  max-width: 1800px;
  margin: 0 auto 1.8rem auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-light-muted);
  display: block;
}

.strip-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-dark);
}

.drag-hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.plasma-thumbnails-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.plasma-thumbnails-track::-webkit-scrollbar {
  display: none;
}

.thumb-card {
  flex: 0 0 200px;
  height: 270px;
  background-color: var(--bg-primary);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.thumb-card.active {
  border-color: var(--color-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.thumb-card.active::before {
  content: 'CURRENT';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 2px 6px;
  border-radius: 3px;
}

.thumb-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.3);
}

.thumb-img-wrapper {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.thumb-card:hover .thumb-img {
  transform: scale(1.06);
}

.thumb-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.6rem;
}

.thumb-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-dark);
}

.thumb-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   5. CURATED COLLECTIONS GRID SECTION
   ========================================================================== */
.collections-section {
  padding: 6rem 0;
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.5rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-light-muted);
  display: block;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

.filter-tabs {
  display: flex;
  gap: 1rem;
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--color-white);
  background-color: var(--color-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.product-img-wrapper {
  height: 420px;
  background-color: #e0dcd6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img {
  max-height: 88%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 3px;
}

.quick-view-overlay-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--color-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.product-card:hover .quick-view-overlay-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-info {
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--bg-secondary);
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.product-cat {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* ==========================================================================
   6. CRAFT & ESSENCE MANIFESTO
   ========================================================================== */
.craft-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.craft-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-light-muted);
  margin-bottom: 1rem;
  display: block;
}

.craft-heading {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.craft-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}

.spec-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  color: var(--color-dark);
}

.spec-label {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.3;
}

.craft-right {
  display: flex;
  justify-content: center;
}

.craft-card-main {
  background-color: #e5e1da;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  max-width: 480px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.craft-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  margin: 0;
  display: block;
}

.craft-card-caption {
  padding: 1.8rem 2rem;
  background-color: #e5e1da;
}

.craft-card-caption h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.craft-card-caption p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ==========================================================================
   7. NEWSLETTER & FOOTER
   ========================================================================== */
.newsletter-section {
  padding: 4.5rem 0;
  background-color: #dbd7cf;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.newsletter-3col-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 3rem;
  gap: 0;
}

.nl-col {
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
}

.nl-col-left {
  align-items: flex-start;
  text-align: left;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 0;
}

.nl-col-center {
  align-items: center;
  text-align: center;
  padding: 0 3.5rem;
}

.nl-col-right {
  align-items: flex-end;
  text-align: right;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 0;
}

.nl-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.nl-col-center .nl-icon-circle {
  margin-left: auto;
  margin-right: auto;
}

.nl-col-tag,
.newsletter-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.nl-col-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.nl-title-line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.newsletter-title {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.nl-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.nl-perks-left li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
}

.nl-perks-right li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  text-align: right;
}

.bullet-star-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 40px;
  padding: 4px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 1.2rem;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter-btn {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.newsletter-btn:hover {
  opacity: 0.85;
}

.nl-privacy-note {
  font-size: 0.72rem;
  color: var(--color-light-muted);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .newsletter-section {
    padding: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .newsletter-3col-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 0 !important;
  }

  .nl-col {
    padding: 3.2rem 1rem !important;
    align-items: center !important;
    text-align: center !important;
    border: none !important;
  }

  .nl-col-left {
    border-bottom: none !important;
  }

  .nl-col-center {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-left: none !important;
    border-right: none !important;
    padding: 3.2rem 1rem !important;
  }

  .nl-col-right {
    border-top: none !important;
  }

  .nl-col .nl-icon-circle {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0 !important;
    margin-bottom: 1.2rem !important;
  }

  .nl-col .nl-col-tag,
  .nl-col .nl-col-title {
    text-align: center !important;
  }

  .nl-col .nl-title-line {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 280px !important;
  }

  .nl-perks-left,
  .nl-perks-right {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .nl-perks-left li,
  .nl-perks-right li {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Footer (Exact Match to Reference Image 2) */
.site-footer {
  background-color: #0b0b0b;
  color: var(--color-white);
  padding: 3rem 0 1.8rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  color: var(--color-white);
  display: block;
  text-transform: uppercase;
}

.footer-logo-line {
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0.8rem 0;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 1.4rem;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  border-color: var(--color-white);
  color: var(--color-dark);
  background-color: var(--color-white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
  color: var(--color-white);
  text-transform: uppercase;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.footer-sub-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0.8rem 0;
}

.currency-selector {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.2rem;
}

.stay-know-block {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stay-know-content {
  flex: 1;
}

.stay-know-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.stay-know-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.stay-know-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stay-know-btn:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   8. CART DRAWER & SEARCH MODALS
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 90vw;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.drawer-close-btn {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-dark);
}

.free-shipping-bar {
  padding: 0.9rem 2rem;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
}

.progress-track {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-dark);
  transition: width 0.3s ease;
}

.drawer-body {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.empty-cart-msg {
  text-align: center;
  padding: 4rem 0;
  color: var(--color-muted);
}

.start-shopping-btn {
  margin-top: 1.2rem;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.cart-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item-img {
  width: 80px;
  height: 100px;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}

.cart-item-remove {
  font-size: 0.72rem;
  color: #d94343;
  cursor: pointer;
}

.drawer-footer {
  padding: 1.8rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--bg-secondary);
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.taxes-note {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-bottom: 1.2rem;
}

.checkout-btn {
  width: 100%;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
}

.checkout-btn:hover {
  background-color: #333;
}

/* Search Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(238, 235, 230, 0.98);
  backdrop-filter: blur(15px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-container {
  max-width: 1000px;
  margin: 5rem auto 0 auto;
  padding: 0 2rem;
}

.search-modal-header {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-dark);
  padding-bottom: 0.8rem;
}

.search-modal-input {
  width: 100%;
  background: transparent;
  border: none;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  outline: none;
}

.search-close-btn {
  font-size: 2.5rem;
  color: var(--color-dark);
}

.quick-tags {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.tag-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-light-muted);
}

.search-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.search-tag:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.search-results-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   HAMBURGER MENU & MOBILE OVERLAY
   ========================================================================== */

/* Desktop-only elements — hide on mobile */
.desktop-only {
  display: flex;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  color: var(--color-dark);
  transition: opacity 0.2s ease;
}

.hamburger-btn:hover {
  opacity: 0.7;
}

.hamburger-icon-svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}

.menu-line-top,
.menu-line-bottom {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: 12px 12px;
}

.hamburger-btn.active .menu-line-top {
  transform: translateY(4px) rotate(45deg);
}

.hamburger-btn.active .menu-line-bottom {
  transform: translateY(-4px) rotate(-45deg);
}


/* Mobile full-screen menu overlay — High-Fashion Spacious Luxury Layout */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #080808;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.38s ease,
    visibility 0s linear 0.48s;
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.38s ease,
    visibility 0s linear 0s;
}

.mobile-menu-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 1.8rem 1.8rem;
  overflow-y: auto;
  box-sizing: border-box;
}

/* Top Bar */
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-brand {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #ffffff;
  text-transform: uppercase;
}

.mobile-menu-top-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.mobile-region-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: scale(1.05);
}

/* Body — Vertically Centered & Generously Spaced Navigation Links */
.mobile-menu-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.2rem 0;
}

.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link .link-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  width: 32px;
  flex-shrink: 0;
}

.mobile-nav-link .link-text {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  line-height: 1;
  flex: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-nav-link .link-arrow {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover .link-text,
.mobile-nav-link:focus .link-text {
  color: #ffffff;
  transform: translateX(8px);
}

.mobile-nav-link:hover .link-num {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-nav-link:hover .link-arrow {
  opacity: 1;
  color: #ffffff;
  transform: translate(0, 0);
}

/* Bottom Actions & Social Footer */
.mobile-menu-bottom {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1rem;
}

.mobile-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.mobile-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.mobile-action-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-menu-socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-tag {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE — 1024px (Tablet / iPad)
   ========================================================================== */
@media (max-width: 1024px) {

  /* Navbar — 3-column layout: Bag (Left), Brand (Center), Hamburger (Right) */
  .nav-links {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .btn-text {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: relative;
  }

  /* Shift Bag/Shop icon to far left & enlarge slightly */
  #btn-bag {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  #btn-bag svg {
    width: 27px !important;
    height: 27px !important;
    stroke-width: 1.8;
  }

  /* Center brand absolutely over the flex row */
  .nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.75rem;
    letter-spacing: 0.32em;
    white-space: nowrap;
  }

  /* Nav actions float to the right for hamburger */
  .nav-actions {
    margin-left: auto;
    gap: 0.8rem;
  }

  /* Mobile Hero Tagline / Quote (Fills upper space on mobile layout) */
  .mobile-hero-tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 90%;
    max-width: 360px;
    text-align: center;
    pointer-events: none;
  }

  .mobile-tagline-season {
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--color-dark);
    opacity: 0.5;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
  }

  .mobile-tagline-quote {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--color-dark);
    opacity: 0.82;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* Hero — Full screen banner with imposing 2x model cutout */
  .hero-section {
    height: calc(100dvh - var(--topbar-height) - var(--nav-height));
    min-height: 560px;
  }

  .hero-bg-text-container {
    top: 42%;
  }

  .giant-bg-text {
    font-size: clamp(100px, 18vw, 180px);
  }

  .subject-wrapper {
    height: 98%;
    transform: translateY(-80px);
  }

  .subject-img {
    height: 72vh !important;
    max-height: 600px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .hero-bottom-left {
    left: 2rem;
    bottom: 2rem;
  }

  .hero-bottom-right {
    right: 2rem;
    bottom: 2rem;
  }

  .shop-now-circle {
    width: 88px;
    height: 88px;
    margin-bottom: 1.4rem;
  }

  /* Sections */
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .privileges-grid {
    grid-template-columns: 1fr;
  }

  .privilege-col-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .privilege-col {
    padding: 3.5rem 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   RESPONSIVE — 768px (Mobile Landscape / Small Tablet)
   ========================================================================== */
@media (max-width: 768px) {

  /* Announcement */
  .announcement-right {
    display: none;
  }

  .announcement-content {
    padding: 0 1.5rem;
    justify-content: center;
  }

  /* Navbar */
  .nav-container {
    padding: 0 1.2rem;
  }

  .nav-brand {
    font-size: 1.65rem;
    letter-spacing: 0.3em;
  }

  .nav-actions {
    gap: 0.8rem;
  }

  /* Hero — Full screen mobile hero banner with 2x bigger cutout model */
  .hero-section {
    height: calc(100dvh - var(--topbar-height) - var(--nav-height));
    min-height: 520px;
  }

  .giant-bg-text {
    font-size: clamp(90px, 21vw, 140px);
  }

  .hero-bg-text-container {
    top: 40%;
  }

  .subject-wrapper {
    height: 98%;
    transform: translateY(-105px);
  }

  .subject-img {
    height: 70vh !important;
    max-height: 560px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .hero-stage {
    align-items: flex-end;
  }

  .hero-bottom-left {
    left: 1.2rem;
    bottom: 1.5rem;
  }

  .hero-bottom-right {
    right: 1.2rem;
    bottom: 1.5rem;
  }

  .hero-headline {
    font-size: 1rem;
  }

  .shop-now-circle {
    width: 76px;
    height: 76px;
    margin-bottom: 1rem;
  }

  .circle-text {
    font-size: 0.56rem;
  }

  /* Category cards — Collide seamlessly (zero gap) & right-align texts */
  .category-grid-top {
    grid-template-columns: 1fr;
    gap: 0 !important;
  }

  .category-card {
    height: 260px;
    margin: 0;
    border: none;
  }

  .category-card .category-img {
    object-position: 5% center;
  }

  .category-content {
    right: 1.2rem;
    left: auto;
    width: 52%;
    min-width: 0;
    align-items: flex-end;
    text-align: right;
  }

  .category-title {
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    text-align: right;
  }

  .category-sub {
    font-size: 0.84rem;
    line-height: 1.35;
    margin: 0.4rem 0 0.9rem 0;
    text-align: right;
  }

  .category-link {
    font-size: 0.8rem;
    text-align: right;
  }

  /* Designed to Last — Full-Bleed Editorial Overlay Banner Card */
  .designed-to-last-banner {
    display: block;
    position: relative;
    height: 440px;
    width: 100%;
    overflow: hidden;
  }

  .designed-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .designed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  .designed-content-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 55%, transparent 100%) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 2.2rem 1.6rem;
    box-sizing: border-box;
    z-index: 2;
  }

  .designed-tag {
    color: rgba(238, 235, 230, 0.75) !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.24em !important;
    font-weight: 600 !important;
  }

  .designed-heading {
    color: #eeebe6 !important;
    font-size: clamp(2.4rem, 10vw, 3.4rem) !important;
    line-height: 0.95 !important;
    margin: 0.4rem 0 0.6rem 0 !important;
    letter-spacing: 0.02em !important;
  }

  .designed-desc {
    color: rgba(238, 235, 230, 0.9) !important;
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
    margin-bottom: 1.4rem !important;
  }

  .designed-cta-btn {
    background: #eeebe6 !important;
    color: #000000 !important;
    border: none !important;
    padding: 0.85rem 1.8rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.16em !important;
    font-weight: 700 !important;
    border-radius: 2px !important;
    display: inline-block !important;
    transition: all 0.25s ease !important;
  }

  .designed-cta-btn:hover {
    background: #dfdcd7 !important;
    color: #000000 !important;
  }

  /* Privilege Pill Badges — Always single line with clean padding */
  .privilege-badge-pill {
    display: inline-block !important;
    white-space: nowrap !important;
    padding: 0.35rem 0.65rem !important;
    border: 1px solid var(--color-dark) !important;
    font-family: var(--font-head) !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: var(--color-dark) !important;
    background: transparent !important;
    border-radius: 2px !important;
    line-height: 1 !important;
  }

  .privilege-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.8rem !important;
    width: 100% !important;
  }

  /* Trust features — 4-Quadrant Perfectly Symmetric 2x2 Grid for Mobile */
  .trust-features-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.8rem 1rem;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .trust-feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1.2rem 0.6rem;
    border-right: none;
  }

  .trust-feature-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 1rem;
  }

  .trust-feature-item:nth-child(even) {
    padding-left: 1rem;
  }

  .trust-feature-item:nth-child(1),
  .trust-feature-item:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .trust-icon-wrapper svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .trust-title {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .trust-sub {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  /* Collections — fix section header vertical stack */
  .section-header {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .filter-tabs {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    font-size: 0.68rem;
    padding: 0.45rem 0.8rem;
  }

  /* Collections Product Grid — Single Column Stacked Cards (Big & Spacious) */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
  }

  .product-card {
    width: 100%;
  }

  .product-img-wrapper {
    height: 380px !important;
  }

  .product-info {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
    padding: 1.4rem 1.2rem !important;
  }

  .product-info>div {
    width: 100% !important;
  }

  .product-title {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.2rem !important;
  }

  .product-price {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--color-dark) !important;
    margin-top: 0.25rem !important;
    display: block !important;
  }

  /* Craft — fix text overflow */
  .craft-heading {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }

  .craft-desc {
    font-size: 0.88rem;
  }

  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .spec-num {
    font-size: 1.8rem;
  }

  /* Newsletter */
  .newsletter-3col-grid {
    grid-template-columns: 1fr;
  }

  .bullet-star-icon {
    display: none !important;
  }

  .nl-col-center {
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 3.2rem 1rem !important;
  }

  .nl-col-right {
    border-left: none;
  }

  /* Newsletter Form — Same Inline Pill Design as PC */
  .newsletter-form {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background-color: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 40px !important;
    padding: 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.2rem !important;
    box-sizing: border-box !important;
  }

  .newsletter-input {
    flex: 1 !important;
    min-width: 0 !important;
    background: transparent !important;
    border: none !important;
    padding: 0.7rem 0.6rem 0.7rem 1.1rem !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    color: var(--color-dark) !important;
    outline: none !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .newsletter-btn {
    background-color: var(--color-dark) !important;
    color: var(--color-white) !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 30px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
  }

  /* Footer — 2-Column Symmetric Flexbox Layout for Mobile */
  .footer-top {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 2.2rem 0 !important;
    padding: 2.5rem 1.2rem 7.2rem !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  /* Footer links list reset with 16px gap */
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .footer-links li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-links a {
    display: block !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* Brand Column — Centered at Top (Row 1 Full Width) */
  .footer-col.brand-col {
    width: 100% !important;
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 1.8rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 0.5rem !important;
  }

  .footer-logo {
    font-size: 1.6rem !important;
    letter-spacing: 0.32em !important;
    text-align: center !important;
  }

  .footer-logo-line {
    margin: 0.6rem auto !important;
  }

  .footer-tagline {
    text-align: center !important;
    margin-bottom: 1.2rem !important;
  }

  .footer-social-icons {
    justify-content: center !important;
  }

  /* Columns 2, 3, 4, 5 (SHOP, CLIENT CARE, ABOUT, LOCATION) — Symmetrical Left & Right Flush Columns */
  .footer-top > .footer-col:not(.brand-col) {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-self: flex-start !important;
    box-sizing: border-box !important;
    position: static !important;
  }

  /* Left Columns (SHOP, ABOUT) — Flush Left */
  .footer-top > .footer-col:nth-child(2),
  .footer-top > .footer-col:nth-child(4) {
    width: 50% !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding-right: 0.5rem !important;
    padding-left: 0 !important;
  }

  .footer-top > .footer-col:nth-child(2) {
    order: 2 !important;
  }

  .footer-top > .footer-col:nth-child(4) {
    order: 4 !important;
  }

  /* Right Columns (CLIENT CARE, LOCATION) — Flush Right to Fill 100% Width */
  .footer-top > .footer-col:nth-child(3),
  .footer-col.location-col {
    width: 50% !important;
    align-items: flex-end !important;
    text-align: right !important;
    padding-left: 0.5rem !important;
    padding-right: 0 !important;
  }

  .footer-top > .footer-col:nth-child(3) {
    order: 3 !important;
  }

  .footer-col.location-col {
    order: 5 !important;
  }

  .footer-top > .footer-col:nth-child(3) .footer-links,
  .footer-col.location-col .footer-links {
    align-items: flex-end !important;
    text-align: right !important;
  }

  .footer-top > .footer-col > .footer-heading {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    line-height: 1 !important;
  }

  .footer-col.location-col > .footer-address {
    text-align: right !important;
    width: 100% !important;
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .footer-col.location-col > .footer-sub-divider {
    display: none !important;
  }

  .footer-col.location-col > .currency-selector {
    justify-content: flex-end !important;
    text-align: right !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  /* Stay in the Know — Positioned Full Width with Balanced Top & Bottom Padding */
  .stay-know-block {
    position: absolute !important;
    left: 1.2rem !important;
    right: 1.2rem !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: none !important;
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .stay-know-content {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .stay-know-title {
    margin-top: 0 !important;
    margin-bottom: 0.3rem !important;
  }

  .stay-know-text {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .stay-know-btn {
    align-self: center !important;
    flex-shrink: 0 !important;
  }

  /* Footer Bottom Copyright & Legal Links */
  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.8rem !important;
    padding: 1.8rem 1.2rem 2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 0 !important;
  }

  .footer-bottom p {
    text-align: center !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
    opacity: 0.6 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .legal-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.2rem !important;
    flex-wrap: wrap !important;
    margin-top: 0.2rem !important;
  }

  .legal-links a {
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
  }

  /* Container padding */
  .container {
    padding: 0 1.5rem;
  }

  .collections-section .container {
    padding: 3.5rem 1.5rem;
  }

  .craft-section .container {
    padding: 3.5rem 1.5rem;
  }
}

/* ==========================================================================
   RESPONSIVE — 640px (Mobile Portrait)
   ========================================================================== */
@media (max-width: 640px) {
  .announcement-bar {
    font-size: 0.6rem;
  }

  /* Hero — Full screen mobile banner with towering 2x character model */
  .hero-section {
    height: calc(100dvh - var(--topbar-height) - var(--nav-height));
    min-height: 480px;
  }

  .giant-bg-text {
    font-size: clamp(80px, 21vw, 120px);
  }

  .hero-bg-text-container {
    top: 38%;
  }

  .subject-wrapper {
    height: 98%;
    transform: translateY(-115px);
  }

  .subject-img {
    height: 68vh !important;
    max-height: 520px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .hero-bottom-left {
    left: 1rem;
    bottom: 1.2rem;
  }

  .hero-bottom-right {
    right: 1rem;
    bottom: 1.2rem;
  }

  .hero-headline {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .step-bars {
    display: none;
  }

  .shop-now-circle {
    width: 72px;
    height: 72px;
    margin-bottom: 0.6rem;
  }

  .circle-text {
    font-size: 0.54rem;
  }

  .meta-title {
    font-size: 0.62rem;
  }

  .meta-year {
    font-size: 0.65rem;
  }

  /* Craft section — prevent overflow */
  .craft-heading {
    font-size: clamp(1.1rem, 6vw, 1.6rem);
    word-break: break-word;
  }

  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .spec-num {
    font-size: 1.5rem;
  }

  .spec-label {
    font-size: 0.65rem;
  }

  /* Privileges */
  .privilege-col {
    padding: 2.5rem 1.2rem;
  }

  .privilege-heading {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .privilege-footer-row {
    flex-direction: column;
    gap: 1rem;
  }

  .privilege-action-btn {
    width: 100%;
    text-align: center;
  }

  /* Footer — Preserved 2-column grid on small phones */

  /* Newsletter */
  .nl-col {
    padding: 2rem 1.2rem;
  }
}

/* ==========================================================================
   RESPONSIVE — 480px (Small phones)
   ========================================================================== */
@media (max-width: 480px) {
  .nav-brand {
    font-size: 1.55rem;
    letter-spacing: 0.28em;
  }

  .giant-bg-text {
    font-size: clamp(70px, 20vw, 105px);
  }

  .hero-section {
    height: calc(100dvh - var(--topbar-height) - var(--nav-height));
    min-height: 460px;
  }

  .subject-wrapper {
    height: 98%;
    transform: translateY(-120px);
  }

  .subject-img {
    height: 66vh !important;
    max-height: 500px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .hero-bg-text-container {
    top: 38%;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .product-img-wrapper {
    height: 200px !important;
  }

  /* Trust features — 2 col */
  .trust-features-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-btn {
    padding: 0 1.2rem;
    font-size: 0.68rem;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }
}



/* ==========================================================================
   SEAMLESS FULL-BLEED PRIVILEGES & DISCOUNTS BANNER
   ========================================================================== */
.privileges-banner-section {
  width: 100%;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.privileges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.privilege-col {
  padding: 4.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: background-color 0.3s ease;
}

.privilege-col-left {
  background-color: #dbd7cf;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.privilege-col-right {
  background-color: #dbd7cf;
}

.privilege-col:hover {
  background-color: #d1ccc2;
}

.privilege-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

.privilege-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #666666;
  text-transform: uppercase;
}

.privilege-badge-pill {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  padding: 0.35rem 0.9rem;
}

.privilege-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.privilege-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.45;
  color: #333333;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.privilege-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.privilege-code-badge {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-dark);
}

.privilege-action-btn {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.85rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.privilege-action-btn:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  opacity: 0.7;
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .privileges-grid {
    grid-template-columns: 1fr;
  }

  .privilege-col-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .privilege-col {
    padding: 3.5rem 2.5rem;
  }
}