/* ============================================================
   AURAWON — Design System & Global Styles
   Palette: near-black bg, emerald accent, wide-tracked serif
   ============================================================ */

/* ── Google & Web Fonts ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors — Luxury Horology Boutique Palette */
  --aw-bg: #050505;
  /* Deep Obsidian Black */
  --aw-surface: #0c0c0c;
  /* Deep Charcoal */
  --aw-surface-2: #121212;
  /* Card Sub-Surface */
  --aw-surface-3: #181818;
  --aw-text: #F5F2EC;
  /* Warm Ivory */
  --aw-muted: #9e9e9e;
  /* Soft Muted Slate */
  --aw-muted-2: #606060;

  /* 10-15% Deliberate Luxury Emerald Accents */
  --aw-accent: #2e7d52;
  /* Deep British Racing / Luxury Emerald */
  --aw-accent-hover: #389462;
  /* Refined Hover */
  --aw-accent-dark: #0e2d1c;
  /* Deep Forest Emerald for Primary Buttons */
  --aw-accent-dark-hover: #143d26;
  --aw-accent-border: #1c5234;
  --aw-accent-light: rgba(46, 125, 82, 0.12);
  --aw-accent-glow: rgba(46, 125, 82, 0.25);

  --aw-border: #1e1e1e;
  /* Crisp Subtle Dark Border */
  --aw-border-2: #282828;
  --aw-overlay: rgba(5, 5, 5, 0.85);

  /* Typography — Archivo (Headings & Menu) + Inter Variable (Body & Subheadings) */
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Archivo', sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --aw-text-xs: clamp(0.65rem, 1vw, 0.75rem);
  --aw-text-sm: clamp(0.8rem, 1.2vw, 0.875rem);
  --aw-text-base: clamp(0.9rem, 1.5vw, 1rem);
  --aw-text-lg: clamp(1rem, 1.8vw, 1.125rem);
  --aw-text-xl: clamp(1.15rem, 2vw, 1.35rem);
  --aw-text-2xl: clamp(1.4rem, 2.5vw, 1.7rem);
  --aw-text-3xl: clamp(1.8rem, 3.5vw, 2.3rem);
  --aw-text-4xl: clamp(2.2rem, 5vw, 3.2rem);
  --aw-text-5xl: clamp(2.7rem, 6vw, 4rem);
  --aw-text-6xl: clamp(3.2rem, 7.5vw, 5.2rem);

  /* Spacing — Tight luxury spacing without excessive dead gaps */
  --aw-section-py: clamp(28px, 4vw, 52px);
  --aw-container: 1280px;
  --aw-gap: clamp(14px, 2vw, 28px);

  /* Motion */
  --aw-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --aw-ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --aw-duration: 0.35s;

  /* Navbar */
  --aw-nav-h: 76px;
  --aw-nav-h-sm: 64px;
  --aw-announce-h: 36px;
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--aw-bg);
  color: var(--aw-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

p {
  max-width: 68ch;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.aw-container {
  width: 100%;
  max-width: var(--aw-container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.aw-section {
  padding-block: var(--aw-section-py);
}

.aw-section--sm {
  padding-block: clamp(40px, 6vw, 80px);
}

.aw-grid {
  display: grid;
  gap: var(--aw-gap);
}

.aw-flex {
  display: flex;
}

.aw-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-text-center {
  text-align: center;
}

.aw-text-muted {
  color: var(--aw-muted);
}

.aw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ── Typography ───────────────────────────────────────────── */
.aw-eyebrow {
  font-family: var(--font-body);
  font-size: var(--aw-text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aw-accent);
  margin-bottom: 14px;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.aw-heading,
.aw-hero__title,
.aw-mobile-hero-title,
.aw-logo,
.aw-nav-link,
.aw-menu-nav-link,
.aw-collection-card__name,
.aw-product-card__name,
.aw-who-card__title,
.aw-why-block__title,
.aw-promise-card__title,
.aw-final-cta__title,
.aw-about__title,
.aw-faq-cat__title {
  font-family: var(--font-heading) !important;
  font-weight: 600;
}

.aw-heading {
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--aw-text);
}

.aw-heading--lg {
  font-size: var(--aw-text-5xl);
}

.aw-heading--md {
  font-size: var(--aw-text-4xl);
}

.aw-heading--sm {
  font-size: var(--aw-text-3xl);
}

.aw-subhead {
  font-size: var(--aw-text-lg);
  color: var(--aw-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Section Headings (Always Center-Aligned Everywhere) ──── */
.aw-section-head {
  text-align: center !important;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.aw-section-head .aw-heading,
.aw-section-head .aw-subhead,
.aw-section-head .aw-eyebrow {
  text-align: center !important;
}

.aw-section-head .aw-divider {
  margin: 14px auto !important;
}

/* ── Buttons (Luxury Aesthetics matching Image 2) ────────── */
.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: var(--aw-text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: background-color 200ms var(--aw-ease),
    color 200ms var(--aw-ease),
    border-color 200ms var(--aw-ease),
    transform 200ms var(--aw-ease),
    box-shadow 200ms var(--aw-ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.aw-btn:active {
  transform: translateY(1px);
}

/* Primary: Deep dark forest emerald luxury button */
.aw-btn-primary {
  background-color: var(--aw-accent-dark, #0e2d1c);
  color: #F5F2EC;
  border: 1px solid var(--aw-accent-border, #1c5234);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.aw-btn-primary:hover {
  background-color: var(--aw-accent-dark-hover, #143d26);
  border-color: var(--aw-accent, #2e7d52);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(46, 125, 82, 0.25);
  transform: translateY(-1px);
}

/* Outline: Subtle dark glass button */
.aw-btn-outline {
  background-color: rgba(14, 14, 14, 0.65);
  color: #F5F2EC;
  border: 1px solid var(--aw-border-2, #282828);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aw-btn-outline:hover {
  border-color: #404040;
  background-color: #181818;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.aw-btn--sm {
  padding: 10px 22px;
  font-size: var(--aw-text-xs);
  border-radius: 10px;
}

.aw-btn--icon {
  padding: 10px;
  border-radius: 50%;
}

/* Add to cart success state */
.aw-btn.added {
  background-color: var(--aw-accent-dark-hover, #143d26);
  border-color: var(--aw-accent, #2e7d52);
  color: #F5F2EC;
  pointer-events: none;
}

/* ── Divider ──────────────────────────────────────────────── */
.aw-divider {
  width: 36px;
  height: 1.5px;
  background: var(--aw-accent);
  margin: 18px auto;
  opacity: 0.85;
  border-radius: 1px;
}

/* ── Skeleton Loaders ─────────────────────────────────────── */
@keyframes shimmer {
  0% {
    background-position: -600px 0;
  }

  100% {
    background-position: 600px 0;
  }
}

.aw-skeleton {
  background: linear-gradient(90deg,
      var(--aw-surface) 25%,
      var(--aw-surface-2) 37%,
      var(--aw-surface) 63%);
  background-size: 1200px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 2px;
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.aw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--aw-ease-out), transform 0.65s var(--aw-ease-out);
}

.aw-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.aw-reveal-delay-1 {
  transition-delay: 0.1s;
}

.aw-reveal-delay-2 {
  transition-delay: 0.2s;
}

.aw-reveal-delay-3 {
  transition-delay: 0.3s;
}

.aw-reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Overlay ──────────────────────────────────────────────── */
.aw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--aw-ease);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.aw-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.aw-announce {
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--aw-announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 310;
}

.aw-announce__track {
  position: relative;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-announce__item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--aw-text-xs);
  letter-spacing: 0.1em;
  color: var(--aw-muted);
  opacity: 0;
  transition: opacity 0.6s var(--aw-ease);
  white-space: nowrap;
}

.aw-announce__item.active {
  opacity: 1;
}

.aw-announce__item span.icon {
  font-size: 0.85em;
}

/* ============================================================
   NAVBAR (Transparent over Hero Video, Solid Glass on Scroll)
   ============================================================ */
.aw-navbar {
  position: fixed;
  top: var(--aw-announce-h);
  /* below announce bar */
  left: 0;
  right: 0;
  height: var(--aw-nav-h);
  z-index: 300;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: top 0.3s var(--aw-ease),
    height 0.3s var(--aw-ease),
    background 0.3s var(--aw-ease),
    border-color 0.3s var(--aw-ease),
    backdrop-filter 0.3s var(--aw-ease),
    box-shadow 0.3s var(--aw-ease);
}

.aw-navbar.scrolled {
  top: 0;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--aw-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  height: var(--aw-nav-h-sm);
}

.aw-navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding-inline: clamp(20px, 5vw, 60px);
}

.aw-navbar__left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.aw-navbar__center {
  display: flex;
  justify-content: center;
}

.aw-navbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

/* Logo wordmark & image asset */
.aw-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s var(--aw-ease), transform 0.2s var(--aw-ease);
}

.aw-logo:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

.aw-logo__img {
  height: clamp(38px, 4.5vw, 52px);
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.aw-menu-drawer__logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.aw-footer__logo-img {
  height: 48px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

/* Nav icon buttons */
.aw-nav-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-text);
  border-radius: 50%;
  transition: background 0.2s var(--aw-ease), color 0.2s;
  position: relative;
}

.aw-nav-icon:hover {
  background: rgba(255, 255, 255, 0.08);
}

.aw-nav-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* Cart badge */
.aw-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--aw-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.25s var(--aw-ease);
}

.aw-cart-badge.visible {
  transform: scale(1);
}

/* ── Menu Drawer (Left) ───────────────────────────────────── */
.aw-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(480px, 90vw);
  background: var(--aw-bg);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.45s var(--aw-ease);
  overflow-y: auto;
  border-right: 1px solid var(--aw-border);
  display: flex;
  flex-direction: column;
}

.aw-menu-drawer.open {
  transform: translateX(0);
}

.aw-menu-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  border-bottom: 1px solid var(--aw-border);
  flex-shrink: 0;
}

.aw-menu-drawer__logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aw-menu-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-muted);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.aw-menu-drawer__close:hover {
  color: var(--aw-text);
  background: rgba(255, 255, 255, 0.06);
}

.aw-menu-drawer__close svg {
  width: 20px;
  height: 20px;
}

.aw-menu-drawer__search {
  padding: 24px 36px;
  flex-shrink: 0;
}

.aw-menu-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 3px;
  padding: 12px 16px;
  transition: border-color 0.2s;
}

.aw-menu-search:focus-within {
  border-color: var(--aw-accent);
}

.aw-menu-search svg {
  width: 16px;
  height: 16px;
  color: var(--aw-muted);
  flex-shrink: 0;
}

.aw-menu-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--aw-text);
  font-size: var(--aw-text-sm);
  width: 100%;
}

.aw-menu-search input::placeholder {
  color: var(--aw-muted-2);
}

.aw-menu-drawer__nav {
  padding: 8px 36px;
  flex: 1;
}

.aw-menu-nav-link {
  display: block;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.02rem, 2.7vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--aw-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--aw-border);
  transition: color 0.2s var(--aw-ease), padding-left 0.25s var(--aw-ease);
  line-height: 1.25;
  white-space: nowrap;
}

.aw-menu-nav-link:last-child {
  border-bottom: none;
}

.aw-menu-nav-link:hover {
  color: var(--aw-accent);
  padding-left: 8px;
}

.aw-menu-divider {
  height: 1px;
  background: var(--aw-border);
  margin: 12px 0;
}

.aw-menu-nav-link--sm {
  font-family: var(--font-sans);
  font-size: var(--aw-text-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--aw-muted);
  padding: 10px 0;
}

.aw-menu-nav-link--sm:hover {
  color: var(--aw-text);
}

.aw-menu-drawer__foot {
  padding: 24px 36px;
  border-top: 1px solid var(--aw-border);
  flex-shrink: 0;
}

.aw-menu-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.aw-menu-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--aw-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-muted);
  transition: border-color 0.2s, color 0.2s;
}

.aw-menu-social:hover {
  border-color: var(--aw-accent);
  color: var(--aw-accent);
}

.aw-menu-social svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   CART DRAWER (Right)
   ============================================================ */
.aw-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--aw-surface);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.45s var(--aw-ease);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--aw-border);
}

.aw-cart-drawer.open {
  transform: translateX(0);
}

.aw-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--aw-border);
  flex-shrink: 0;
}

.aw-cart-drawer__title {
  font-family: var(--font-serif);
  font-size: var(--aw-text-2xl);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.aw-cart-drawer__count {
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  margin-left: 8px;
}

.aw-cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-muted);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.aw-cart-drawer__close:hover {
  color: var(--aw-text);
  background: rgba(255, 255, 255, 0.06);
}

.aw-cart-drawer__close svg {
  width: 20px;
  height: 20px;
}

/* Cart body - scrollable */
.aw-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.aw-cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}

.aw-cart-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}

.aw-cart-drawer__body::-webkit-scrollbar-thumb {
  background: var(--aw-border-2);
  border-radius: 2px;
}

/* Empty state */
.aw-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  min-height: 200px;
  text-align: center;
  color: var(--aw-muted);
}

.aw-cart-empty svg {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}

.aw-cart-empty p {
  font-size: var(--aw-text-sm);
}

/* Cart line item */
.aw-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--aw-border);
}

.aw-cart-item:last-child {
  border-bottom: none;
}

.aw-cart-item__img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 3px;
  background: var(--aw-surface-2);
}

.aw-cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.aw-cart-item__name {
  font-size: var(--aw-text-sm);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aw-cart-item__variant {
  font-size: var(--aw-text-xs);
  color: var(--aw-muted);
  letter-spacing: 0.04em;
}

.aw-cart-item__price {
  font-size: var(--aw-text-sm);
  font-weight: 500;
  color: var(--aw-text);
  margin-top: auto;
}

.aw-cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.aw-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--aw-border);
  border-radius: 2px;
  overflow: hidden;
}

.aw-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-muted);
  font-size: 1.1rem;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.aw-qty-btn:hover {
  background: var(--aw-surface-2);
  color: var(--aw-text);
}

.aw-qty-value {
  width: 32px;
  text-align: center;
  font-size: var(--aw-text-sm);
  border-left: 1px solid var(--aw-border);
  border-right: 1px solid var(--aw-border);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-cart-item__remove {
  font-size: var(--aw-text-xs);
  color: var(--aw-muted-2);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.aw-cart-item__remove:hover {
  color: #c0392b;
}

/* Cart footer */
.aw-cart-drawer__foot {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--aw-border);
  flex-shrink: 0;
}

.aw-cart-coupon {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.aw-input {
  flex: 1;
  background: var(--aw-bg);
  border: 1px solid var(--aw-border);
  color: var(--aw-text);
  padding: 10px 14px;
  font-size: var(--aw-text-sm);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.aw-input:focus {
  border-color: var(--aw-accent);
}

.aw-input::placeholder {
  color: var(--aw-muted-2);
}

.aw-cart-summary {
  margin-bottom: 16px;
}

.aw-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  margin-bottom: 8px;
}

.aw-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--aw-border);
  margin-top: 8px;
}

.aw-cart-summary__total span:first-child {
  font-size: var(--aw-text-sm);
  font-weight: 500;
  color: var(--aw-text);
}

.aw-cart-summary__total span:last-child {
  font-family: var(--font-serif);
  font-size: var(--aw-text-xl);
  font-weight: 500;
  color: var(--aw-text);
}

.aw-cart-drawer__foot .aw-btn {
  width: 100%;
}

/* ============================================================
   HERO — CINEMATIC BACKGROUND VIDEO & SCROLL FADE
   ============================================================ */
.aw-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--aw-nav-h) + var(--aw-announce-h) + 24px);
  padding-bottom: clamp(40px, 5vw, 68px);
  background: var(--aw-bg);
  overflow: hidden;
  margin-top: calc(-1 * var(--aw-announce-h));
}

/* Background video wrapper with full-bleed coverage and scroll fade */
.aw-hero__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: opacity;
}

.aw-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.68) contrast(1.06);
}

/* Multi-layer luxury dark vignette & bottom smooth blend gradient */
.aw-hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.65) 0%,
      rgba(5, 5, 5, 0.15) 20%,
      rgba(5, 5, 5, 0.45) 60%,
      rgba(5, 5, 5, 0.88) 85%,
      var(--aw-bg) 100%),
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(0, 0, 0, 0.1) 0%, rgba(5, 5, 5, 0.75) 100%);
  pointer-events: none;
}

.aw-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.aw-hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 720px;
}

.aw-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aw-hero__eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--aw-accent);
}

.aw-hero__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--aw-text);
}

.aw-hero__title em {
  font-style: italic;
  color: #389462;
  /* Refined luxury emerald highlight */
  font-weight: 400;
}

.aw-hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #b0b0b0;
  font-weight: 400;
  line-height: 1.7;
  max-width: 52ch;
}

.aw-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}

/* Feature Badges — Compact Sleek Dark Badges (Matches Image 1 Fix) */
/* ── Hero Feature Badges (Desktop & Mobile Symmetrical) ── */
.aw-feature-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: clamp(36px, 5vw, 52px);
  padding: 14px 16px;
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 900px;
  margin-inline: auto;
}

.aw-feature-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(18, 18, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  transition: all 0.3s var(--aw-ease);
}

.aw-feature-badge:hover {
  border-color: rgba(56, 148, 98, 0.4);
  background: rgba(24, 24, 28, 0.85);
  transform: translateY(-2px);
}

.aw-feature-badge__icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(56, 148, 98, 0.12);
  border: 1px solid rgba(56, 148, 98, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #389462;
  transition: all 0.3s var(--aw-ease);
}

.aw-feature-badge:hover .aw-feature-badge__icon-wrap {
  background: rgba(56, 148, 98, 0.22);
  border-color: #389462;
  box-shadow: 0 0 10px rgba(56, 148, 98, 0.3);
}

.aw-feature-badge__icon-wrap svg {
  width: 13px;
  height: 13px;
  color: #389462;
}

.aw-feature-badge__content {
  min-width: 0;
  text-align: left;
}

.aw-feature-badge__title {
  font-family: var(--font-heading) !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: #F5F2EC;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .aw-feature-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
    margin-top: 28px;
  }

  .aw-feature-badge {
    padding: 12px 10px;
    gap: 8px;
    justify-content: flex-start;
  }

  .aw-feature-badge__icon-wrap {
    width: 26px;
    height: 26px;
  }

  .aw-feature-badge__icon-wrap svg {
    width: 12px;
    height: 12px;
  }

  .aw-feature-badge__title {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 540px) {
  .aw-hero {
    min-height: 92svh;
    padding-top: calc(var(--aw-nav-h) + var(--aw-announce-h) + 24px);
    padding-bottom: 36px;
  }

  .aw-hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .aw-hero__ctas .aw-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   LUXURY STAR RATING & SOCIAL PROOF (Quiet Horology Detail)
   ============================================================ */
.aw-luxury-rating-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(36px, 5vw, 56px) 0;
  text-align: center;
  background: transparent;
  border: none;
}

.aw-luxury-rating-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(24px, 3.5vw, 40px) 0;
  text-align: center;
  background: transparent;
  border: none;
}

.aw-luxury-stars-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.aw-luxury-stars {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.aw-star-icon {
  width: 17px;
  height: 17px;
  fill: #e5c158;
  /* Rich luxury champagne gold solid star */
  stroke: #e5c158;
  stroke-width: 0.6;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.aw-luxury-score {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  color: #F5F2EC;
  letter-spacing: 0.02em;
}

.aw-luxury-rating-sub {
  font-size: clamp(0.74rem, 1.1vw, 0.82rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9e9ea6;
  font-weight: 600;
  font-family: var(--font-body);
  margin: 0;
}

/* ── Stat Cards (Image 2 Reference: Edge-to-edge images, no side/top padding) ── */
.aw-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.aw-stat-card {
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}

.aw-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 125, 82, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.aw-stat-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #000000;
  margin: 0;
  padding: 0;
  border: none;
}

.aw-stat-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92) contrast(1.05);
}

.aw-stat-card:hover .aw-stat-card__visual img {
  transform: scale(1.05);
}

.aw-stat-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.aw-stat-card__num {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #389462;
  /* Luxury emerald number */
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.aw-stat-card__title {
  font-family: var(--font-heading) !important;
  font-size: 0.92rem;
  color: #ffffff;
  /* White headings */
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.aw-stat-card__desc {
  font-size: 0.78rem;
  color: #888892;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .aw-stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .aw-stat-card {
    padding: 0 !important;
    overflow: hidden;
  }

  .aw-stat-card__visual {
    margin: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 16/11;
  }

  .aw-stat-card__body {
    padding: 12px 14px 16px;
  }

  .aw-stat-card__num {
    font-size: 1.35rem;
  }

  .aw-stat-card__title {
    font-size: 0.85rem;
  }

  .aw-stat-card__desc {
    font-size: 0.72rem;
  }
}

/* ── Trust Strip 2x2 Grid (Symmetrical & Balanced) ── */
.aw-trust-strip {
  margin-top: clamp(28px, 4vw, 44px);
  padding: 18px 24px;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  max-width: 620px;
  margin-inline: auto;
}

.aw-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  align-items: center;
}

.aw-trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #e4e4e7;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
  padding-left: clamp(14px, 3.5vw, 36px);
}

.aw-trust-strip__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(56, 148, 98, 0.12);
  border: 1px solid rgba(56, 148, 98, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #389462;
}

.aw-trust-strip__icon svg {
  width: 12px;
  height: 12px;
  color: #389462;
}

@media (max-width: 540px) {
  .aw-trust-strip {
    padding: 14px 12px;
    margin-top: 24px;
  }

  .aw-trust-strip__grid {
    gap: 12px 10px;
  }

  .aw-trust-strip__item {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    gap: 6px;
    padding-left: 6px;
  }

  .aw-trust-strip__icon {
    width: 18px;
    height: 18px;
  }

  .aw-trust-strip__icon svg {
    width: 10px;
    height: 10px;
  }
}

/* ── Collection Cards (Image 4 & 5 Reference: Image below heading, small grey number, no dashes) ── */
.aw-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.aw-collection-card {
  background: #080809;
  border: 1px solid rgba(255, 255, 255, 0.04);
  /* Barely visible light border */
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--aw-text);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--aw-ease), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.aw-collection-card:hover {
  border-color: rgba(46, 125, 82, 0.5);
  /* Subtle emerald border on hover */
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.aw-collection-card__head {
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 150px;
}

.aw-collection-card__num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #71717a;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.aw-collection-card__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  min-height: 2.3em;
}

.aw-collection-card__divider {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-block: 4px;
}

.aw-collection-card__tagline {
  font-size: 0.82rem;
  color: #389462;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

/* Image being below heading and above description text */
.aw-collection-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000000;
}

.aw-collection-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92) contrast(1.05);
}

.aw-collection-card:hover .aw-collection-card__visual img {
  transform: scale(1.04);
}

.aw-collection-card__foot {
  padding: 16px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

/* Sleek low-opacity emerald pill button */
.aw-collection-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: clamp(0.68rem, 1.4vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #e4e4e7;
  white-space: nowrap; /* STRICTLY 1 LINE */
  text-decoration: none;
  background: rgba(46, 125, 82, 0.16); /* subtle low-opacity emerald */
  border: 1px solid rgba(56, 148, 98, 0.28);
  padding: 5px 14px;
  border-radius: 999px;
  margin-inline: auto;
  transition: all 0.25s var(--aw-ease);
}

.aw-collection-card:hover .aw-collection-card__link {
  background: rgba(46, 125, 82, 0.45);
  border-color: #389462;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(56, 148, 98, 0.25);
}

@media (max-width: 768px) {
  .aw-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .aw-collection-card__head {
    padding: 12px 10px 8px;
    min-height: 108px;
    gap: 3px;
  }

  .aw-collection-card__title {
    font-size: clamp(0.68rem, 2.7vw, 0.78rem) !important;
    min-height: 2.4em;
    line-height: 1.18;
    letter-spacing: 0.01em;
  }

  .aw-collection-card__tagline {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .aw-collection-card__foot {
    padding: 6px 10px 10px;
    justify-content: center !important;
    text-align: center !important;
  }

  .aw-collection-card__link {
    font-size: 0.58rem !important;
    white-space: nowrap !important;
    gap: 3px;
    padding: 4px 10px !important;
    margin-inline: auto !important;
    border-radius: 999px !important;
  }

  .aw-collection-card__visual {
    aspect-ratio: 16/10;
  }
}

/* ── Collections Filter Bar (Still & Wrapped, 100% Visible on Mobile) ── */
.aw-collections-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block: 1px solid var(--aw-border);
  padding: 14px 0;
  margin-bottom: 32px;
  gap: 16px;
}

.aw-collections-showing-text {
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  white-space: nowrap;
}

.aw-collections-showing-text strong {
  color: var(--aw-text);
}

.aw-filter-pills-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Still, no hidden slider */
  gap: 8px;
  max-width: 100%;
  padding: 4px 0;
}

.aw-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aw-muted);
  background: #09090b;
  border: 1px solid var(--aw-border);
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s var(--aw-ease);
}

.aw-filter-pill:hover {
  color: var(--aw-text);
  border-color: rgba(255, 255, 255, 0.16);
  background: #141416;
}

.aw-filter-pill.active {
  color: #ffffff;
  background: rgba(46, 125, 82, 0.22);
  border-color: var(--aw-accent);
  box-shadow: 0 0 12px rgba(46, 125, 82, 0.25);
}

@media (max-width: 768px) {
  .aw-collections-filter-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 12px 0;
  }

  .aw-collections-showing-text {
    text-align: center;
    font-size: 0.82rem;
  }

  .aw-filter-pills-wrap {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap; /* ALL 5 PILLS ALWAYS VISIBLE STILL */
    gap: 6px;
    overflow: visible;
  }

  .aw-filter-pill {
    padding: 7px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.aw-products {
  background: var(--aw-bg);
}

.aw-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.aw-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Product card */
.aw-product-card {
  display: flex;
  flex-direction: column;
  background: #080809;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.aw-product-card:hover {
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.aw-product-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #000000;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.95) contrast(1.02);
}

.aw-product-card:hover .aw-product-card__img {
  transform: scale(1.04);
}

/* Hide badges on watches for ultra-clean, minimal luxury look */
.aw-product-card__badge {
  display: none !important;
}

.aw-product-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
}

.aw-product-card__collection {
  font-size: 0.72rem;
  color: #389462;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.28;
  margin-bottom: 6px;
  min-height: 2.5em;
  display: block;
}

.aw-product-card__name {
  font-family: var(--font-heading) !important;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.28;
  margin: 0;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Subtle low-opacity divider */
.aw-product-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 8px 0;
}

.aw-product-card__spec {
  font-size: 0.72rem;
  color: #8c8c96;
  line-height: 1.4;
  margin: 0 0 10px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aw-product-card__pricing {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.aw-product-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  line-height: 1;
}

.aw-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #71717a;
  margin-top: 2px;
}

.aw-product-card__stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.aw-product-card__score {
  color: #888890;
  font-weight: 500;
}

.aw-product-card__view-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 500;
  color: #e4e4e7;
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.aw-product-card:hover .aw-product-card__view-cta {
  color: #389462;
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .aw-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 540px) {
  .aw-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .aw-product-card__body {
    padding: 10px 12px 14px;
  }

  .aw-product-card__name {
    font-size: 0.85rem;
    min-height: 2.5em;
  }

  .aw-product-card__spec {
    font-size: 0.65rem;
    min-height: 2.8em;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  .aw-product-card__price {
    font-size: 1.05rem;
  }

  .aw-product-card__rating {
    font-size: 0.65rem;
  }

  .aw-product-card__view-cta {
    font-size: 0.70rem;
    margin-top: 6px;
  }
}

/* ============================================================
   REVIEWS & COMMUNITY SECTION (Equal-Height 4-Card Grid)
   ============================================================ */
.aw-reviews {
  background: var(--aw-surface);
}

.aw-reviews__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.aw-reviews-rating-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: #888890;
  font-weight: 500;
}

.aw-reviews-score {
  color: #F5F2EC;
  font-weight: 600;
  margin-left: 2px;
}

.aw-reviews-sub {
  color: #888890;
  font-size: 0.85rem;
}

.aw-reviews__carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .aw-reviews__carousel {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

.aw-review-card {
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.aw-review-card:hover {
  border-color: rgba(46, 125, 82, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.aw-review-card__visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050506;
}

.aw-review-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-review-card:hover .aw-review-card__visual img {
  transform: scale(1.04);
}

.aw-review-card__body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 6px;
}

.aw-review-card__stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.aw-review-card__stars .aw-star-icon {
  width: 10px;
  height: 10px;
  fill: #e5c158;
  stroke: #e5c158;
}

/* Compact micro-quote text so cards stay compact on mobile and desktop */
.aw-review-card__quote {
  font-size: clamp(0.58rem, 0.95vw, 0.68rem);
  color: #9c9ca6;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.aw-review-card__author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 6px;
  margin-top: 2px;
  white-space: nowrap;
}

.aw-review-card__name {
  font-size: 0.68rem;
  font-weight: 600;
  color: #F5F2EC;
  white-space: nowrap;
}

.aw-review-card__verified {
  font-size: 0.58rem;
  color: #389462;
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.aw-who {
  background: var(--aw-bg);
}

.aw-who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--aw-gap);
  margin-top: clamp(36px, 5vw, 56px);
}

.aw-who-card {
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.5vw, 32px);
  border: 1px solid var(--aw-border);
  border-radius: 4px;
  background: var(--aw-surface);
  transition: border-color 0.25s, transform 0.25s;
  text-align: center;
}

.aw-who-card:hover {
  border-color: var(--aw-accent);
  transform: translateY(-4px);
}

.aw-who-card__icon {
  width: 60px;
  height: 60px;
  background: var(--aw-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--aw-accent);
}

.aw-who-card__icon svg {
  width: 26px;
  height: 26px;
}

.aw-who-card__title {
  font-family: var(--font-serif);
  font-size: var(--aw-text-2xl);
  font-weight: 400;
  margin-bottom: 10px;
}

.aw-who-card__desc {
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  line-height: 1.7;
  max-width: none;
}

/* ============================================================
   WHY AURAWON — Alternating Feature Blocks
   ============================================================ */
.aw-why {
  background: var(--aw-surface);
}

.aw-why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--aw-border);
}

.aw-why-block:last-child {
  border-bottom: none;
}

.aw-why-block--reverse {
  direction: rtl;
}

.aw-why-block--reverse>* {
  direction: ltr;
}

.aw-why-block__img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.aw-why-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, #1a2020 0%, #0f1510 100%);
  transition: transform 0.7s var(--aw-ease);
}

.aw-why-block__img-wrap:hover .aw-why-block__img {
  transform: scale(1.03);
}

.aw-why-block__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(63, 107, 79, 0.25);
  line-height: 1;
}

.aw-why-block__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aw-why-block__title {
  font-family: var(--font-serif);
  font-size: var(--aw-text-3xl);
  font-weight: 400;
  line-height: 1.2;
}

.aw-why-block__text {
  font-size: var(--aw-text-base);
  color: var(--aw-muted);
  line-height: 1.8;
  max-width: 44ch;
}

.aw-why-block__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aw-why-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
}

.aw-why-point svg {
  width: 14px;
  height: 14px;
  color: var(--aw-accent);
  flex-shrink: 0;
}

/* ============================================================
   OUR PROMISE
   ============================================================ */
.aw-promise {
  background: var(--aw-bg);
}

.aw-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--aw-gap);
  margin-top: clamp(36px, 5vw, 56px);
}

.aw-promise-card {
  text-align: center;
  padding: clamp(24px, 3vw, 36px) 20px;
  border: 1px solid var(--aw-border);
  border-radius: 4px;
  background: var(--aw-surface);
  transition: border-color 0.25s, transform 0.25s;
}

.aw-promise-card:hover {
  border-color: var(--aw-accent);
  transform: translateY(-4px);
}

.aw-promise-card__icon {
  width: 56px;
  height: 56px;
  background: var(--aw-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--aw-accent);
}

.aw-promise-card__icon svg {
  width: 24px;
  height: 24px;
}

.aw-promise-card__title {
  font-family: var(--font-serif);
  font-size: var(--aw-text-xl);
  font-weight: 400;
  margin-bottom: 10px;
}

.aw-promise-card__text {
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  line-height: 1.7;
  max-width: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.aw-faq {
  background: var(--aw-surface);
}

.aw-faq__list {
  max-width: 760px;
  margin: clamp(36px, 5vw, 56px) auto 0;
}

.aw-faq-item {
  border-bottom: 1px solid var(--aw-border);
}

.aw-faq-item:first-child {
  border-top: 1px solid var(--aw-border);
}

.aw-faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: var(--aw-text-base);
  font-weight: 500;
  color: var(--aw-text);
  transition: color 0.2s;
}

.aw-faq-q:hover {
  color: var(--aw-accent);
}

.aw-faq-q.open {
  color: var(--aw-accent);
}

.aw-faq-q__icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--aw-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, transform 0.3s var(--aw-ease), background 0.2s;
  color: var(--aw-muted);
}

.aw-faq-q.open .aw-faq-q__icon {
  border-color: var(--aw-accent);
  background: var(--aw-accent-light);
  color: var(--aw-accent);
  transform: rotate(45deg);
}

.aw-faq-q__icon svg {
  width: 12px;
  height: 12px;
}

.aw-faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.aw-faq-item.open .aw-faq-a,
.aw-faq-q.open + .aw-faq-a,
.aw-faq-a.open {
  max-height: 500px;
  opacity: 1;
}

.aw-faq-a__inner {
  padding-top: 10px;
}

.aw-faq-a__text {
  padding: 0 0 16px;
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  line-height: 1.7;
  max-width: none;
}

/* ============================================================
   WHY AURAWON ("Luxury Is In The Details" — Compact 3-Card Grid)
   ============================================================ */
.aw-why {
  background: var(--aw-surface);
}

.aw-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aw-why-card {
  background: #080809;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-why-card:hover {
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.aw-why-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  max-height: 200px;
  background: #000000;
  overflow: hidden;
}

.aw-why-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-why-card:hover .aw-why-card__img-wrap img {
  transform: scale(1.04);
}

.aw-why-card__num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.55);
  padding: 2px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
  letter-spacing: 0.05em;
}

.aw-why-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aw-why-card__eyebrow {
  font-size: 0.68rem;
  color: #389462;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.aw-why-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 8px;
}

.aw-why-card__text {
  font-size: 0.78rem;
  color: #a1a1aa;
  line-height: 1.5;
  margin: 0 0 14px;
}

.aw-why-card__points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
}

.aw-why-card__points li {
  font-size: 0.75rem;
  color: #d4d4d8;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}

.aw-why-card__points li .check {
  color: #389462;
  font-weight: 600;
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .aw-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aw-why-card__img-wrap {
    aspect-ratio: 16/9;
    max-height: 180px;
  }

  .aw-why-card__body {
    padding: 16px 18px 20px;
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.aw-final-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(63, 107, 79, 0.1) 0%, transparent 70%),
    var(--aw-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aw-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid var(--aw-border);
  border-radius: 50%;
  opacity: 0.3;
}

.aw-final-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border: 1px solid var(--aw-border);
  border-radius: 50%;
  opacity: 0.15;
}

.aw-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.aw-final-cta__title {
  font-family: var(--font-serif);
  font-size: var(--aw-text-5xl);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.aw-final-cta__sub {
  font-size: var(--aw-text-base);
  color: var(--aw-muted);
  margin-bottom: 36px;
  max-width: none;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.aw-about {
  background: var(--aw-surface);
}

.aw-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.aw-about__img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.aw-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, #141e17 0%, #0a1210 100%);
}

.aw-about__accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--aw-accent);
  opacity: 0.3;
  border-radius: 3px;
}

.aw-about__accent-line {
  position: absolute;
  top: 24px;
  left: -24px;
  width: 48px;
  height: 1px;
  background: var(--aw-accent);
  opacity: 0.6;
}

.aw-about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aw-about__text {
  font-size: var(--aw-text-base);
  color: var(--aw-muted);
  line-height: 1.85;
  max-width: none;
}

.aw-about__signature {
  font-family: var(--font-serif);
  font-size: var(--aw-text-2xl);
  font-style: italic;
  color: var(--aw-accent);
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.aw-footer {
  background: var(--aw-bg);
  border-top: 1px solid var(--aw-border);
}

.aw-footer__main {
  padding-block: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}

.aw-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aw-footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aw-footer__brand-desc {
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  line-height: 1.75;
  max-width: 280px;
}

.aw-footer__newsletter {
  margin-top: 8px;
}

.aw-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aw-newsletter-label {
  font-size: var(--aw-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aw-muted);
  margin-bottom: 4px;
}

.aw-newsletter-input-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--aw-border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.aw-newsletter-input-row:focus-within {
  border-color: var(--aw-accent);
}

.aw-newsletter-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 11px 14px;
  color: var(--aw-text);
  font-size: var(--aw-text-sm);
}

.aw-newsletter-input::placeholder {
  color: var(--aw-muted-2);
}

.aw-newsletter-btn {
  background: var(--aw-accent);
  color: #fff;
  padding: 11px 18px;
  font-size: var(--aw-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s;
  white-space: nowrap;
}

.aw-newsletter-btn:hover {
  background: var(--aw-accent-hover);
}

.aw-footer__col-title {
  font-size: var(--aw-text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aw-text);
  margin-bottom: 20px;
}

.aw-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.aw-footer__link {
  font-size: var(--aw-text-sm);
  color: var(--aw-muted);
  transition: color 0.2s, padding-left 0.2s;
}

.aw-footer__link:hover {
  color: var(--aw-text);
  padding-left: 4px;
}

/* Footer bottom row */
.aw-footer__bottom {
  border-top: 1px solid var(--aw-border);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.aw-footer__copy {
  font-size: var(--aw-text-xs);
  color: var(--aw-muted-2);
}

.aw-footer__payment {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aw-payment-icon {
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--aw-muted);
}

.aw-footer__socials {
  display: flex;
  gap: 12px;
}

.aw-footer-social {
  width: 32px;
  height: 32px;
  border: 1px solid var(--aw-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-muted);
  transition: border-color 0.2s, color 0.2s;
}

.aw-footer-social:hover {
  border-color: var(--aw-accent);
  color: var(--aw-accent);
}

.aw-footer-social svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   RESPONSIVE — Large Desktop (1200px)
   ============================================================ */
@media (max-width: 1200px) {
  .aw-collection-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .aw-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============================================================
   RESPONSIVE — Laptop / Tablet-L (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .aw-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-promise__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .aw-who__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ============================================================
   RESPONSIVE — Tablet (900px)
   ============================================================ */
@media (max-width: 900px) {

  /* Trust bar: 2 columns */
  .aw-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--aw-border);
  }

  .aw-trust-item:nth-child(odd) {
    border-right: 1px solid var(--aw-border);
  }

  .aw-trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Why / alternating blocks */
  .aw-why-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aw-why-block--reverse {
    direction: ltr;
  }

  /* About */
  .aw-about__grid {
    grid-template-columns: 1fr;
  }

  .aw-about__img-wrap {
    max-width: 480px;
    margin-inline: auto;
  }

  /* Footer */
  .aw-footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — Tablet-S / Large Mobile (768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Section vertical rhythm tighter on mobile */
  :root {
    --aw-section-py: clamp(48px, 8vw, 80px);
    --aw-nav-h: 60px;
    --aw-nav-h-sm: 52px;
    --aw-announce-h: 36px;
  }

  /* Navbar top is set via --aw-announce-h variable automatically */

  /* Hero: stack vertically on mobile, tight padding under sticky navbar */
  .aw-hero {
    padding-top: calc(var(--aw-nav-h) + var(--aw-announce-h) + 12px) !important;
    padding-bottom: 24px !important;
    min-height: auto !important;
  }

  .aw-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .aw-hero__visual {
    order: -1;
    max-width: 260px;
    margin-inline: auto;
  }

  .aw-hero__img {
    aspect-ratio: 3/4;
  }

  .aw-hero__eyebrow {
    justify-content: center;
  }

  .aw-hero__sub {
    margin-inline: auto;
    font-size: 1rem;
  }

  .aw-hero__ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .aw-hero__badges {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin-inline: auto;
    gap: 8px;
  }

  .aw-hero__badge {
    padding: 10px 12px;
  }

  .aw-hero__badge-icon {
    width: 26px;
    height: 26px;
  }

  .aw-hero__badge-icon svg {
    width: 12px;
    height: 12px;
  }

  .aw-hero__badge-text {
    font-size: 0.65rem;
  }

  /* Trust bar: 2 columns on 768 */
  .aw-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-trust-item {
    padding: 14px 12px;
  }

  /* Social proof stats: 2 columns */
  .aw-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Collections: 2 columns */
  .aw-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Products: 2 columns */
  .aw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .aw-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Reviews: narrower cards */
  .aw-review-card {
    flex: 0 0 85vw;
  }

  /* Who: single column */
  .aw-who__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .aw-who-card {
    text-align: left;
  }

  .aw-who-card__icon {
    margin: 0 0 16px 0;
  }

  /* Why blocks: stack */
  .aw-why-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aw-why-block--reverse {
    direction: ltr;
  }

  .aw-why-block__img-wrap {
    aspect-ratio: 16/10;
  }

  .aw-why-block__num {
    font-size: 2.5rem;
  }

  /* Promise: 2 columns */
  .aw-promise__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .aw-promise-card {
    padding: 20px 14px;
  }

  /* About: stack */
  .aw-about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aw-about__img-wrap {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  /* Footer: 2 columns */
  .aw-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .aw-footer__brand {
    grid-column: 1 / -1;
  }

  .aw-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  /* Section headings tighter */
  .aw-section-head {
    margin-bottom: 28px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (480px) — PRIMARY MOBILE TARGET
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --aw-section-py: clamp(40px, 7vw, 64px);
    --aw-gap: 12px;
    --aw-announce-h: 32px;
    --aw-nav-h: 56px;
    --aw-nav-h-sm: 48px;
  }

  /* Container: tighter padding */
  .aw-container {
    padding-inline: 16px;
  }

  /* Announce bar: smaller text */
  .aw-announce__item {
    font-size: 0.68rem;
    gap: 5px;
  }

  .aw-announce__item .icon {
    font-size: 0.75em;
  }

  /* Navbar: tighten visuals (top is auto from token) */
  .aw-logo {
    font-size: 1rem;
    letter-spacing: 0.14em;
  }

  .aw-nav-icon {
    width: 36px;
    height: 36px;
  }

  .aw-nav-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Mobile Responsive Layout (Matches Screenshot 2 Reference Layout) */
  .aw-hero {
    padding-top: calc(var(--aw-nav-h) + var(--aw-announce-h) + 12px) !important;
    padding-bottom: 32px !important;
    min-height: auto !important;
  }

  .aw-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aw-hero__visual {
    order: -1;
    /* Video Card at the top of hero on mobile! */
    max-width: 100%;
  }

  .aw-hero__video-card {
    aspect-ratio: 16 / 9;
    max-height: 260px;
    border-radius: 10px;
  }

  .aw-hero__content {
    gap: 16px;
    text-align: left;
  }

  .aw-hero__eyebrow {
    justify-content: flex-start;
  }

  .aw-hero__title {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    line-height: 1.12;
  }

  .aw-hero__sub {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .aw-hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .aw-hero__ctas .aw-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Mobile 2x2 Feature Badges Grid (Clean, Symmetrical & Compact) */
  .aw-feature-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 8px 10px !important;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .aw-feature-badge {
    padding: 10px 8px !important;
    gap: 7px !important;
    justify-content: flex-start !important;
    border-radius: 8px;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .aw-feature-badge__icon-wrap {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0 !important;
  }

  .aw-feature-badge__icon-wrap svg {
    width: 11px !important;
    height: 11px !important;
  }

  .aw-feature-badge__title {
    font-size: clamp(0.56rem, 2.3vw, 0.65rem) !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Trust bar: single column */
  .aw-trust-bar {
    padding: 0;
  }

  .aw-trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .aw-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--aw-border);
    padding: 12px 16px;
  }

  .aw-trust-item:last-child {
    border-bottom: none;
  }

  .aw-trust-item__icon {
    width: 30px;
    height: 30px;
  }

  .aw-trust-item__icon svg {
    width: 16px;
    height: 16px;
  }

  .aw-trust-item__text strong {
    font-size: 0.8rem;
  }

  .aw-trust-item__text span {
    font-size: 0.68rem;
  }

  /* Social proof */
  .aw-rating-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .aw-rating-label {
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
  }

  .aw-stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
  }

  .aw-stat-card {
    padding: 0 !important;
    border-radius: 12px;
    overflow: hidden;
  }

  .aw-stat-card__visual {
    margin: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 16/11;
  }

  .aw-stat-card__body {
    padding: 10px 12px 14px;
  }

  .aw-stat-card__num {
    font-size: 1.25rem;
  }

  .aw-stat-card__title {
    font-size: 0.78rem;
  }

  .aw-stat-card__desc {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .aw-check-strip {
    gap: 14px;
  }

  .aw-check-item {
    font-size: 0.75rem;
  }

  /* Collections: 2 columns on mobile (like lucytimepieces grid density) */
  .aw-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .aw-collection-card {
    border-radius: 6px;
  }

  .aw-collection-card__img-wrap {
    padding: 8px;
  }

  .aw-collection-card__name {
    font-size: 0.9rem;
  }

  .aw-collection-card__desc {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .aw-collection-card__tagline {
    font-size: 0.58rem;
  }

  .aw-collection-card__body {
    padding: 10px;
    gap: 4px;
  }

  /* Products: 2 col on mobile — KEY FIX */
  .aw-product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    /* Cancel the mobile scroll-snap on mobile since we use grid */
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .aw-product-grid .aw-product-card {
    flex: none !important;
    width: auto !important;
    scroll-snap-align: none !important;
  }

  .aw-product-card {
    border-radius: 3px;
  }

  .aw-product-card__body {
    padding: 10px;
    gap: 4px;
  }

  .aw-product-card__name {
    font-size: 0.85rem;
  }

  .aw-product-card__price {
    font-size: 1rem;
  }

  .aw-product-card__compare {
    font-size: 0.72rem;
  }

  .aw-product-card__collection {
    font-size: 0.62rem;
  }

  .aw-product-card__rating {
    font-size: 0.65rem;
  }

  .aw-product-card__quick-add {
    display: none;
  }

  /* too cramped on 2-col mobile */
  .aw-product-card__wishlist {
    display: none;
  }

  .aw-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Reviews carousel */
  .aw-review-card {
    flex: 0 0 88vw;
    padding: 18px;
  }

  .aw-review-card__quote {
    font-size: 1rem;
  }

  .aw-reviews__nav {
    margin-top: 20px;
  }

  /* Who it's for */
  .aw-who__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-who-card {
    padding: 20px 16px;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }

  .aw-who-card__icon {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
  }

  .aw-who-card__icon svg {
    width: 20px;
    height: 20px;
  }

  /* Why blocks */
  .aw-why-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 28px;
  }

  .aw-why-block--reverse {
    direction: ltr;
  }

  .aw-why-block__img-wrap {
    aspect-ratio: 4/3;
    max-height: 220px;
  }

  .aw-why-block__num {
    font-size: 2rem;
  }

  .aw-why-block__title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .aw-why-block__text {
    font-size: 0.85rem;
    max-width: none;
  }

  .aw-why-point {
    font-size: 0.8rem;
  }

  /* Promise */
  .aw-promise__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .aw-promise-card {
    padding: 16px 14px;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: flex-start;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .aw-promise-card__icon {
    margin: 0;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(56, 148, 98, 0.12);
    border: 1px solid rgba(56, 148, 98, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #389462;
  }

  .aw-promise-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .aw-promise-card__body {
    flex: 1;
    min-width: 0;
  }

  .aw-promise-card__title {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #F5F2EC;
  }

  .aw-promise-card__text {
    font-size: 0.78rem;
    color: #9a9aa2;
    line-height: 1.4;
  }

  /* Final CTA */
  .aw-final-cta__title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .aw-final-cta__sub {
    font-size: 0.88rem;
  }

  .aw-final-cta::before,
  .aw-final-cta::after {
    display: none;
  }

  /* About */
  .aw-about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aw-about__img-wrap {
    max-width: 100%;
    aspect-ratio: 3/2;
  }

  .aw-about__accent-box,
  .aw-about__accent-line {
    display: none;
  }

  .aw-about__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  /* FAQ */
  .aw-faq-q {
    font-size: 0.875rem;
    padding: 16px 0;
  }

  .aw-faq-a__text {
    font-size: 0.8rem;
  }

  /* Section headings */
  .aw-heading--lg {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .aw-heading--md {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .aw-heading--sm {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
  }

  .aw-subhead {
    font-size: 0.875rem;
  }

  .aw-section-head {
    margin-bottom: 24px;
  }

  /* Footer (Logo Centered, Columns in clean 2-col left-aligned layout) */
  .aw-footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    text-align: left;
  }

  .aw-footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .aw-footer-logo {
    display: inline-flex;
    justify-content: center;
  }

  .aw-footer__logo-img {
    margin-inline: auto;
  }

  .aw-footer__brand-desc {
    text-align: center;
    margin-inline: auto;
  }

  .aw-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .aw-footer__col-title {
    margin-bottom: 12px;
    text-align: left;
  }

  .aw-footer__links {
    gap: 8px;
    align-items: flex-start;
    text-align: left;
  }

  .aw-footer__link {
    font-size: 0.82rem;
  }

  .aw-newsletter-label {
    font-size: 0.68rem;
    text-align: left;
  }

  /* Menu drawer: full-width on mobile */
  .aw-menu-drawer {
    width: 100vw;
  }

  .aw-menu-drawer__head {
    padding: 20px 20px;
  }

  .aw-menu-drawer__search {
    padding: 16px 20px;
  }

  .aw-menu-drawer__nav {
    padding: 8px 20px;
  }

  .aw-menu-drawer__foot {
    padding: 20px 20px;
  }

  .aw-menu-nav-link {
    font-size: clamp(1.02rem, 4.2vw, 1.18rem);
    padding: 12px 0;
    white-space: nowrap;
  }

  .aw-menu-nav-link--sm {
    font-size: 0.82rem;
    padding: 8px 0;
  }

  /* Cart drawer: full-width on mobile */
  .aw-cart-drawer {
    width: 100vw;
  }

  .aw-cart-drawer__head {
    padding: 20px 20px 16px;
  }

  .aw-cart-drawer__body {
    padding: 16px 20px;
  }

  .aw-cart-drawer__foot {
    padding: 16px 20px 24px;
  }

  .aw-cart-item {
    grid-template-columns: 68px 1fr;
    gap: 10px;
  }

  /* Misc */
  .aw-divider {
    margin: 14px auto;
  }
}

/* ============================================================
   RESPONSIVE — Very Small Mobile (375px)
   ============================================================ */
@media (max-width: 375px) {
  .aw-container {
    padding-inline: 14px;
  }

  .aw-hero__title {
    font-size: 1.75rem;
  }

  .aw-hero__visual {
    max-width: 190px;
  }

  .aw-collection-grid {
    gap: 8px;
  }

  .aw-product-grid {
    gap: 8px !important;
  }

  .aw-stat-cards {
    gap: 8px;
  }

  .aw-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .aw-hero__ctas .aw-btn {
    width: 100%;
    justify-content: center;
  }

  .aw-review-card {
    flex: 0 0 92vw;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--aw-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   MOBILE TOUCH HELPERS
   ============================================================ */
@media (hover: none) {

  /* On touch devices, show quick-add permanently in a simplified form */
  .aw-product-card__img--secondary {
    display: none;
  }

  .aw-product-card__img--primary {
    opacity: 1 !important;
    transform: none !important;
  }

  .aw-product-card:hover {
    transform: none;
  }

  /* Collection card overlay always partially visible on touch */
  .aw-collection-card__overlay {
    opacity: 0.6;
  }
}

/* ============================================================
   EXTRA COMPONENT STYLES FOR SPECIFIED SECTIONS
   ============================================================ */
.aw-collection-card__tagline {
  font-size: var(--aw-text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aw-accent);
  margin-bottom: 4px;
  display: block;
}

.aw-product-card__spec {
  font-size: var(--aw-text-xs);
  color: var(--aw-muted);
  margin-bottom: 8px;
}

.aw-product-card__footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.aw-product-card__rating-text {
  font-size: 0.72rem;
  color: var(--aw-accent);
}

.aw-product-card__view-cta {
  font-size: 0.75rem;
  color: var(--aw-text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, transform 0.2s;
}

.aw-product-card:hover .aw-product-card__view-cta {
  color: var(--aw-accent);
  transform: translateX(3px);
}

.aw-ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.aw-ugc-card {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--aw-border);
  background: var(--aw-surface);
}

.aw-ugc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--aw-ease);
}

.aw-ugc-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .aw-ugc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* FAQ Category Layout */
.aw-faq-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.aw-faq-cat {
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 16px;
  padding: 24px;
}

.aw-faq-cat__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--aw-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--aw-border);
}

@media (max-width: 768px) {
  .aw-faq-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aw-faq-cat {
    padding: 18px;
    border-radius: 12px;
  }
}

/* Who It's For Card Taglines & Links */
.aw-who-card__tagline {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aw-accent);
  margin-bottom: 6px;
  display: block;
}

.aw-who-card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--aw-text);
  transition: color 0.2s, transform 0.2s;
}

.aw-who-card:hover .aw-who-card__link {
  color: var(--aw-accent);
  transform: translateX(3px);
}

/* Page Main Container Top Clearance */
.aw-page-main {
  padding-top: calc(var(--aw-nav-h) + var(--aw-announce-h) + 24px);
  padding-bottom: 60px;
  min-height: 80vh;
}

@media (max-width: 768px) {
  .aw-page-main {
    padding-top: calc(var(--aw-nav-h) + var(--aw-announce-h) + 12px) !important;
    padding-bottom: 40px !important;
  }
}

/* ── Hero Showcase & Visual Switcher ── */
.aw-hero-showcase {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--aw-border);
  background: radial-gradient(circle at center, #0e1c12 0%, #080a08 70%, #040404 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 60px rgba(0, 115, 0, 0.12);
}

.aw-hero-showcase__image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-hero-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--aw-ease), transform 0.6s var(--aw-ease);
}

.aw-hero-showcase__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background: rgba(10, 10, 10, 0.9);
  border-top: 1px solid var(--aw-border);
  backdrop-filter: blur(10px);
}

.aw-hero-tab-btn {
  padding: 8px 6px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aw-muted);
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s var(--aw-ease);
  text-align: center;
  font-weight: 500;
}

.aw-hero-tab-btn:hover {
  color: var(--aw-text);
  border-color: rgba(255, 255, 255, 0.15);
}

.aw-hero-tab-btn.active {
  color: #F5F2EC;
  background: rgba(0, 115, 0, 0.25);
  border-color: var(--aw-accent);
  box-shadow: 0 0 12px rgba(0, 115, 0, 0.3);
}

/* ── Search Overlay Modal ── */
.aw-search-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(30px, 8vw, 80px) 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--aw-ease);
}

.aw-search-modal.active {
  opacity: 1;
  pointer-events: all;
}

.aw-search-modal__box {
  width: 100%;
  max-width: 680px;
  position: relative;
}

.aw-search-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--aw-muted);
  font-size: 1.5rem;
  transition: color 0.2s;
  padding: 8px;
}

.aw-search-modal__close:hover {
  color: var(--aw-text);
}

.aw-search-input-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.aw-search-input {
  width: 100%;
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 12px;
  padding: 18px 20px 18px 52px;
  font-size: 1.1rem;
  color: var(--aw-text);
  outline: none;
  transition: border-color 0.2s;
}

.aw-search-input:focus {
  border-color: var(--aw-accent);
  box-shadow: 0 0 16px rgba(0, 115, 0, 0.25);
}

.aw-search-icon-inside {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aw-muted);
  width: 20px;
  height: 20px;
}

.aw-search-results {
  max-height: 55vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aw-search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

.aw-search-result-item:hover {
  border-color: var(--aw-accent);
  transform: translateX(4px);
}

.aw-search-result-img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  background: #000;
}

/* ── Subpages / General Page Layout ── */
.aw-page-main {
  padding-top: calc(76px + 36px + 44px) !important;
  padding-bottom: clamp(40px, 6vw, 72px);
  min-height: 80vh;
}

@media (max-width: 768px) {
  .aw-page-main {
    padding-top: calc(68px + 36px + 32px) !important;
  }
}

/* ── FAQ Layout & Accordion (Ultra-Clean, Centered Luxury Design) ── */
.aw-faq-page-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.aw-faq-filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.aw-faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aw-muted);
  background: #09090b;
  border: 1px solid var(--aw-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s var(--aw-ease);
}

.aw-faq-pill:hover,
.aw-faq-pill.active {
  color: #ffffff;
  background: rgba(46, 125, 82, 0.22);
  border-color: var(--aw-accent);
  box-shadow: 0 0 12px rgba(46, 125, 82, 0.25);
}

.aw-faq-item {
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 16px 20px;
  transition: border-color 0.25s var(--aw-ease), background 0.25s var(--aw-ease), box-shadow 0.25s;
}

.aw-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0d0d10;
}

.aw-faq-item.open {
  border-color: rgba(56, 148, 98, 0.45);
  background: #0e0e12;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.aw-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  color: #F5F2EC;
  font-family: var(--font-heading) !important;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  font-weight: 600;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s var(--aw-ease);
}

.aw-faq-item.open .aw-faq-q {
  color: #389462;
}

.aw-faq-q__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--aw-muted);
  transition: transform 0.3s var(--aw-ease), background-color 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.aw-faq-item.open .aw-faq-q__icon {
  transform: rotate(45deg);
  background: rgba(56, 148, 98, 0.2);
  border-color: #389462;
  color: #389462;
}

.aw-faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s var(--aw-ease);
}

.aw-faq-item.open .aw-faq-a {
  max-height: 400px;
  opacity: 1;
}

.aw-faq-a__inner {
  padding-top: 14px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aw-faq-a__text {
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CHECKOUT FORM RESPONSIVE OPTIMIZATIONS
   ============================================================ */
.aw-checkout-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.aw-checkout-city-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  width: 100%;
}

@media (max-width: 768px) {
  .aw-checkout-contact-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .aw-checkout-city-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .aw-checkout-field-city {
    grid-column: span 2;
  }
}

/* ============================================================
   PDP VIDEO PLAYER & ENHANCED THUMBNAILS
   ============================================================ */
.pdp-main-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #000;
}

.pdp-thumb--video {
  position: relative;
}

.pdp-thumb--video::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: rgba(56, 148, 98, 0.85);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  padding-left: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.pdp-thumb--video .pdp-thumb__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  padding: 2px 0;
  pointer-events: none;
}

/* ============================================================
   SEARCHABLE COMBOBOX & MAP LOCATION PICKER
   ============================================================ */
.aw-combobox-wrap {
  position: relative;
  width: 100%;
}

.aw-combobox-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.aw-combobox-input {
  width: 100%;
  padding-right: 36px !important;
}

.aw-combobox-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--aw-muted);
  transition: transform 0.2s ease;
}

.aw-combobox-wrap.open .aw-combobox-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.aw-combobox-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  background: #111413;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aw-combobox-wrap.open .aw-combobox-dropdown {
  display: block;
  animation: awComboboxFadeIn 0.15s ease-out;
}

@keyframes awComboboxFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.aw-combobox-option {
  padding: 10px 14px;
  font-size: var(--aw-text-sm);
  color: var(--aw-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.aw-combobox-option:last-child {
  border-bottom: none;
}

.aw-combobox-option:hover,
.aw-combobox-option.highlighted {
  background: rgba(46, 125, 50, 0.25);
  color: #F5F2EC;
}

.aw-combobox-option.selected {
  background: rgba(46, 125, 50, 0.35);
  color: #F5F2EC;
  font-weight: 500;
}

.aw-combobox-empty {
  padding: 14px;
  text-align: center;
  font-size: var(--aw-text-xs);
  color: var(--aw-muted);
}

/* Address Autocomplete Dropdown */
.aw-address-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
  background: #111413;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

.aw-address-dropdown.open {
  display: block;
}

.aw-address-item {
  padding: 12px 14px;
  font-size: var(--aw-text-sm);
  color: var(--aw-text);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease;
}

.aw-address-item:hover {
  background: rgba(46, 125, 50, 0.25);
  color: #F5F2EC;
}

.aw-address-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--aw-accent);
}

/* Location Helper Action Strip */
.aw-location-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -6px;
  margin-bottom: 6px;
}

.aw-location-btn {
  background: none;
  border: none;
  font-size: var(--aw-text-xs);
  color: var(--aw-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.aw-location-btn:hover {
  background: rgba(46, 125, 50, 0.15);
}

/* Map Modal Dialog */
.aw-map-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.aw-map-modal.open {
  display: flex;
}

.aw-map-modal__card {
  background: #111413;
  border: 1px solid var(--aw-border);
  border-radius: 14px;
  width: 100%;
  max-width: 760px;
  height: 85vh;
  max-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
}

.aw-map-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--aw-border);
}

.aw-map-modal__body {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  background: #1a201c;
}

#aw-leaflet-map {
  width: 100%;
  height: 100%;
}

.aw-map-modal__foot {
  padding: 16px 20px;
  border-top: 1px solid var(--aw-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .aw-map-modal {
    padding: 10px;
  }
  .aw-map-modal__card {
    height: 92vh;
  }
  .aw-map-modal__foot {
    flex-direction: column;
    align-items: stretch;
  }
}


/* Floating Map Search Bar */
.aw-map-search-bar {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 440px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.aw-map-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: #111413;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  padding: 4px 6px 4px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aw-map-search-input {
  flex: 1;
  background: none;
  border: none;
  color: #F5F2EC;
  font-size: var(--aw-text-sm);
  outline: none;
  padding: 8px 0;
}

.aw-map-search-input::placeholder {
  color: var(--aw-muted);
}

.aw-map-search-btn {
  background: var(--aw-accent);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;
}

.aw-map-search-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.aw-map-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #111413;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.aw-map-search-results.open {
  display: block;
}

.aw-map-search-item {
  padding: 10px 14px;
  font-size: var(--aw-text-xs);
  color: var(--aw-text);
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aw-map-search-item:last-child {
  border-bottom: none;
}

.aw-map-search-item:hover {
  background: rgba(46, 125, 50, 0.25);
  color: #F5F2EC;
}


/* Location Toolbar & Mobile Form Symmetry */
.aw-location-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.aw-location-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 8px;
  color: var(--aw-accent);
  font-size: var(--aw-text-xs);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.aw-location-chip:hover {
  background: rgba(46, 125, 50, 0.15);
  border-color: var(--aw-accent);
  color: #fff;
}

.aw-location-chip svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .aw-checkout-city-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  
  .aw-checkout-sidebar-card {
    padding: 20px 16px !important;
  }
}


/* ============================================================
   CHECKOUT PAGE GRID & FORM LAYOUT SYSTEM
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.checkout-grid > * {
  min-width: 0;
  width: 100%;
}

.aw-checkout-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.aw-checkout-city-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr;
  gap: 14px;
  width: 100%;
}

.aw-location-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.aw-location-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 8px;
  color: var(--aw-accent);
  font-size: var(--aw-text-xs);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.aw-location-chip:hover {
  background: rgba(46, 125, 50, 0.15);
  border-color: var(--aw-accent);
  color: #fff;
}

.aw-checkout-sidebar-card {
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: 14px;
  padding: 28px;
  width: 100%;
  box-sizing: border-box;
}

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

@media (max-width: 640px) {
  .aw-checkout-contact-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aw-checkout-city-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aw-checkout-sidebar-card {
    padding: 20px 16px;
  }
}
