/* =============================================================
   CROWN WATCH GROUP — MAIN STYLESHEET
   Design System: Luxury Minimalist

   Colors:
     --cwg-black:     #0A0A0A
     --cwg-white:     #FFFFFF
     --cwg-offwhite:  #F7F6F2
     --cwg-lightgray: #E8E6E0
     --cwg-midgray:   #9B9691
     --cwg-darkgray:  #2C2C2C
     --cwg-green:     #1B4332
     --cwg-green-h:   #14352A

   Typography:
     Display: 'Playfair Display', serif
     Body/UI: 'Inter', sans-serif
   ============================================================= */

/* ── 1. CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --cwg-black:      #0A0A0A;
  --cwg-white:      #FFFFFF;
  --cwg-offwhite:   #F7F6F2;
  --cwg-lightgray:  #E8E6E0;
  --cwg-midgray:    #9B9691;
  --cwg-darkgray:   #2C2C2C;
  --cwg-green:      #1B4332;
  --cwg-green-h:    #14352A;
  --cwg-gold:       #C9A84C;
  --cwg-gold-dark:  #b7791f;
  --cwg-whatsapp:   #25D366;
  --cwg-whatsapp-h: #20BA5A;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-ui:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:      1200px;
  --gutter:         clamp(20px, 4vw, 60px);
  --section-gap:    clamp(60px, 8vw, 120px);

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;

  --transition:     0.2s ease;
  --transition-md:  0.35s ease;

  --shadow-card:    0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover:   0 8px 40px rgba(0,0,0,0.12);
}

/* ── 2. GLOBAL RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* overflow-x: clip on html — safe for position:sticky, prevents iOS horizontal scroll */
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

/* Only use smooth scroll for users who haven't requested reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cwg-darkgray);
  background: var(--cwg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--cwg-black);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--cwg-green); }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cwg-black);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin: 0 0 1em;
  color: var(--cwg-darkgray);
}

.cwg-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cwg-gold);
  margin-bottom: 16px;
}

.cwg-section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 8px;
}

.cwg-section-sub {
  font-size: 17px;
  color: var(--cwg-midgray);
  max-width: 520px;
  line-height: 1.6;
}

/* Controlled scarcity — single supporting line (Step 9) */
.cwg-section-network-note {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--cwg-midgray);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}

/* Empty-state fallback when proof section not rendered (Step 12) */
.cwg-network-fallback {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--cwg-midgray);
  text-align: center;
  margin: 12px 0 0;
  font-style: italic;
}

/* Pre-selected watch notice on request form (Step 6) */
.cwg-prefill-notice {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--cwg-midgray);
  background: rgba(27,67,50,0.05);
  border: 1px solid rgba(27,67,50,0.15);
  border-radius: var(--radius-sm, 4px);
  padding: 8px 12px;
  margin: 0 0 16px;
}
.cwg-prefill-notice strong {
  color: var(--cwg-black);
  font-weight: 600;
}

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.cwg-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cwg-section {
  padding: var(--section-gap) 0;
}

.cwg-section--dark {
  background: var(--cwg-black);
  color: var(--cwg-white);
}

.cwg-section--dark h1,
.cwg-section--dark h2,
.cwg-section--dark h3,
.cwg-section--dark p {
  color: var(--cwg-white);
}

.cwg-section--offwhite {
  background: var(--cwg-offwhite);
}

.cwg-section--green {
  background: var(--cwg-green);
  color: var(--cwg-white);
}

.cwg-section--green h2,
.cwg-section--green p { color: var(--cwg-white); }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.cwg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition), opacity var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.cwg-btn--primary {
  background: var(--cwg-green);
  color: var(--cwg-white);
  border-color: var(--cwg-green);
}

.cwg-btn--primary:hover {
  background: var(--cwg-green-h);
  border-color: var(--cwg-green-h);
  color: var(--cwg-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(27,67,50,0.3);
}

.cwg-btn--outline {
  background: transparent;
  color: var(--cwg-black);
  border-color: var(--cwg-black);
}

.cwg-btn--outline:hover {
  background: var(--cwg-black);
  color: var(--cwg-white);
  transform: translateY(-1px);
}

.cwg-btn--outline-white {
  background: transparent;
  color: var(--cwg-white);
  border-color: var(--cwg-white);
}

.cwg-btn--outline-white:hover {
  background: var(--cwg-white);
  color: var(--cwg-black);
}

.cwg-btn--whatsapp {
  background: var(--cwg-whatsapp);
  color: var(--cwg-white);
  border-color: var(--cwg-whatsapp);
}

.cwg-btn--whatsapp:hover {
  background: var(--cwg-whatsapp-h);
  border-color: var(--cwg-whatsapp-h);
  color: var(--cwg-white);
}

.cwg-btn--lg {
  padding: 18px 42px;
  font-size: 15px;
}

.cwg-btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.cwg-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── 6. HEADER / NAVIGATION ────────────────────────────────── */
.cwg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-md), box-shadow var(--transition-md);
}

.cwg-header.scrolled {
  border-color: var(--cwg-lightgray);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.cwg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cwg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cwg-logo__mark {
  width: 36px;
  height: 36px;
  background: var(--cwg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cwg-logo__mark svg {
  width: 18px;
  height: 18px;
  fill: var(--cwg-white);
}

.cwg-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cwg-logo__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--cwg-black);
  letter-spacing: 0.02em;
}

.cwg-logo__tagline {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

.cwg-logo__img {
  height: 44px;
  width: auto;
  max-width: 200px;
  display: block;
  flex-shrink: 0;
}

picture:has(.cwg-logo__img) {
  display: contents;
}

.cwg-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.cwg-nav a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cwg-darkgray);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  letter-spacing: 0.01em;
}

.cwg-nav a:hover,
.cwg-nav a.active {
  color: var(--cwg-black);
  background: var(--cwg-offwhite);
}

.cwg-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu toggle */
.cwg-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: var(--cwg-white) !important;
  border: none;
  border-radius: var(--radius-sm);
}

.cwg-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cwg-black);
  border-radius: 2px;
  transition: transform var(--transition-md), opacity var(--transition-md);
}

.cwg-menu-toggle[aria-expanded="true"] {
  background: var(--cwg-green) !important;
}

/* Mobile menu */
.cwg-mobile-menu {
  display: flex;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cwg-white);
  z-index: 999;
  padding: 32px var(--gutter);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.3s;
}

.cwg-mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}

/* Backdrop */
.cwg-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.cwg-menu-backdrop.open { display: block; }

.cwg-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-family: var(--font-display);
  color: var(--cwg-black);
  border-bottom: 1px solid var(--cwg-lightgray);
  transition: color var(--transition);
}
.cwg-mobile-menu a:hover {
  color: var(--cwg-green);
}

/* ── 7. HERO ────────────────────────────────────────────────── */
.cwg-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--cwg-black);
  overflow: hidden;
  padding-top: 72px;
}

.cwg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
}

.cwg-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cwg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cwg-midgray);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cwg-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cwg-midgray);
}

.cwg-hero h1 {
  color: var(--cwg-white);
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.08;
}

.cwg-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.cwg-hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.cwg-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  animation: cwg-scroll-float 2.5s ease-in-out infinite;
}

.cwg-hero__scroll::after {
  content: '↓';
  font-size: 16px;
}

@keyframes cwg-scroll-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 8. TRUST STRIP ────────────────────────────────────────── */
.cwg-trust-strip {
  background: var(--cwg-offwhite);
  border-top: 1px solid var(--cwg-lightgray);
  border-bottom: 1px solid var(--cwg-lightgray);
  padding: 20px 0;
}

.cwg-trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

.cwg-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cwg-darkgray);
  letter-spacing: 0.01em;
}

.cwg-trust-item__icon {
  width: 32px;
  height: 32px;
  background: var(--cwg-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cwg-trust-item__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--cwg-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── 9. WATCH GRID ─────────────────────────────────────────── */
.cwg-watches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cwg-watch-card {
  background: var(--cwg-white);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 220ms ease-out, transform 220ms ease-out,
              border-color 220ms ease-out;
  position: relative;
  cursor: pointer;
  will-change: transform;
}

.cwg-watch-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
  border-color: transparent;
}

.cwg-watch-card__image {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;  /* 1:1 square */
  height: 0;          /* required — padding-top drives height */
  overflow: hidden;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  flex-shrink: 0;
  aspect-ratio: unset; /* override any inherited aspect-ratio */
}

.cwg-watch-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cwg-watch-card:hover .cwg-watch-card__image img {
  transform: scale(1.04);
}

.cwg-watch-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cwg-green);
  color: var(--cwg-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.cwg-watch-card__badge--sold {
  background: var(--cwg-midgray);
}

.cwg-watch-card__badge--reserved {
  background: var(--cwg-gold-dark);
}

.cwg-watch-card__body {
  padding: 20px 22px 22px;
}

.cwg-watch-card__brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 6px;
}

.cwg-watch-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 6px;
  line-height: 1.2;
}

.cwg-watch-card__meta {
  font-size: 13px;
  color: var(--cwg-midgray);
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cwg-watch-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 16px;
}

.cwg-watch-card__price--por {
  font-size: 15px;
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--cwg-midgray);
  letter-spacing: 0.04em;
}

.cwg-watch-card__actions {
  display: flex;
  gap: 8px;
}

/* ── 9b. BEZEL-STYLE SHOP PAGE ─────────────────────────────── */

/* Page header */
.bzl-shop-header {
  background: var(--cwg-offwhite);
  padding: 120px 0 24px; /* 72px fixed header + 48px breathing room */
  border-bottom: 1px solid var(--cwg-lightgray);
}

.bzl-shop-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--cwg-black);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.bzl-shop-subtitle {
  font-size: 14px;
  color: var(--cwg-midgray);
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .bzl-shop-header { padding-top: 96px; }
}

/* Filter bar */
.bzl-filter-bar {
  background: var(--cwg-offwhite);
  border-bottom: 1px solid var(--cwg-lightgray);
  padding: 14px 0;
  position: sticky;
  top: 72px; /* height of fixed .cwg-header */
  z-index: 100;
}
body.admin-bar .bzl-filter-bar {
  top: 104px; /* 72px header + 32px WP admin bar */
}
@media (max-width: 782px) {
  body.admin-bar .bzl-filter-bar {
    top: 118px; /* 72px header + 46px WP admin bar (mobile) */
  }
}

.bzl-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bzl-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--cwg-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%239B9691' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--cwg-lightgray);
  border-radius: 20px;
  padding: 8px 32px 8px 14px;
  font-size: 13px;
  font-family: var(--font-ui);
  color: var(--cwg-darkgray);
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 140px;
}

.bzl-filter-select:hover,
.bzl-filter-select:focus {
  border-color: var(--cwg-black);
  outline: none;
}

.bzl-filter-clear {
  font-size: 12px;
  color: var(--cwg-midgray);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: 20px;
  transition: color var(--transition), border-color var(--transition),
              background-color var(--transition);
  white-space: nowrap;
}

.bzl-filter-clear:hover {
  color: var(--cwg-black);
  border-color: var(--cwg-black);
}

/* Search input */
.bzl-filter-item--search {
  flex: 1;
  max-width: 320px;
}

.bzl-filter-search {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239B9691' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: var(--cwg-white);
  padding-right: 36px;
  min-width: 200px;
  width: 100%;
}

.bzl-filter-search::-webkit-search-cancel-button,
.bzl-filter-search::-webkit-search-decoration {
  display: none;
}

/* Shop body */
.bzl-shop-body {
  background: var(--cwg-offwhite);
  min-height: 60vh;
  padding: 40px 0 80px;
}

/* Grid */
.bzl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

/* Card */
.bzl-card {
  background: var(--cwg-white);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
  position: relative;
}

.bzl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* Card image */
.bzl-card__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #F5F3F0;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.bzl-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bzl-card:hover .bzl-card__img-wrap img {
  transform: scale(1.03);
}

.bzl-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F3F0;
}

/* Condition badge (top-left) */
.bzl-card__cond-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--cwg-darkgray);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Status badges (top-right) */
.bzl-card__status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--cwg-white);
  background: var(--cwg-midgray);
}

.bzl-card__status-badge--sold     { background: var(--cwg-midgray); }
.bzl-card__status-badge--reserved { background: var(--cwg-gold-dark); }

/* Card body */
.bzl-card__body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bzl-card__ref {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin: 0 0 6px;
}

.bzl-card__title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--cwg-black);
  margin: 0;
  line-height: 1.3;
  padding: 14px 18px 4px;
}

.bzl-card__title a {
  color: inherit;
  text-decoration: none;
}

.bzl-card__title a:hover { color: var(--cwg-green); }

.bzl-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.bzl-card__specs span {
  font-size: 11px;
  color: var(--cwg-midgray);
  background: var(--cwg-offwhite);
  padding: 3px 8px;
  border-radius: 2px;
}

/* Footer row */
.bzl-card__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
}

.bzl-card__price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cwg-black);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.bzl-card__price--current {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cwg-black);
}

.bzl-card__price--compare {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--cwg-midgray);
  text-decoration: line-through;
}

.bzl-card__price--sold,
.bzl-card__price--por {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--cwg-midgray);
  font-weight: 400;
}

/* Mobile: hide REF, specs & buttons — keep name + price only */
@media (max-width: 768px) {
  .bzl-card__meta-desktop {
    display: none;
  }
  .bzl-grid .bzl-card__actions {
    display: none !important;
  }
  .bzl-card__price--current {
    font-size: 15px;
  }
  .bzl-card__price--compare {
    font-size: 12px;
  }
}

.bzl-card__actions {
  display: flex;
  gap: 6px;
}

.bzl-card__actions .bzl-card__btn {
  flex: 1;
  text-align: center;
}

.bzl-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition);
  padding: 7px 14px;
  white-space: nowrap;
}

.bzl-card__btn--primary {
  background: var(--cwg-green);
  color: var(--cwg-white);
  border: 1px solid var(--cwg-green);
}

.bzl-card__btn--primary:hover {
  background: var(--cwg-green-h);
  border-color: var(--cwg-green-h);
  color: var(--cwg-white);
}

.bzl-card__btn--outline {
  background: transparent;
  color: var(--cwg-darkgray);
  border: 1px solid var(--cwg-lightgray);
}

.bzl-card__btn--outline:hover {
  border-color: var(--cwg-black);
  color: var(--cwg-black);
}

/* WhatsApp button */
.bzl-card__btn--wa {
  background: transparent;
  color: var(--cwg-midgray);
  border: 1px solid var(--cwg-lightgray);
  padding: 7px 10px;
}

.bzl-card__btn--wa:hover {
  background: var(--cwg-whatsapp);
  border-color: var(--cwg-whatsapp);
  color: var(--cwg-white);
}

/* Empty state */
.bzl-empty {
  text-align: center;
  padding: 80px 20px;
}

.bzl-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.bzl-empty h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
}

.bzl-empty p {
  color: var(--cwg-midgray);
  max-width: 400px;
  margin: 0 auto;
}

/* Pagination */
.bzl-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.bzl-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.bzl-pagination .page-numbers li a,
.bzl-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: 3px;
  font-size: 13px;
  color: var(--cwg-darkgray);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition);
}

.bzl-pagination .page-numbers li a:hover {
  border-color: var(--cwg-black);
  color: var(--cwg-black);
}

.bzl-pagination .page-numbers li .current {
  background: var(--cwg-green);
  border-color: var(--cwg-green);
  color: var(--cwg-white);
}

/* ── 10. WATCH SINGLE PAGE ─────────────────────────────────── */
.cwg-watch-single {
  padding-top: 0;
}

.cwg-watch-gallery {
  position: sticky;
  top: 90px;
}

.cwg-watch-gallery__main {
  aspect-ratio: 1 / 1;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.cwg-watch-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cwg-watch-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cwg-watch-gallery__thumb {
  aspect-ratio: 1 / 1;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.cwg-watch-gallery__thumb.active,
.cwg-watch-gallery__thumb:hover {
  border-color: var(--cwg-black);
}

.cwg-watch-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Gallery expand icon ── */
.cwg-watch-gallery__main {
  cursor: zoom-in;
}

/* ── Lightbox overlay ──────────────────────────────────────── */
.cwg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cwg-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.cwg-lightbox__inner {
  position: relative;
  max-width: min(78vw, 860px);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cwg-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
  transition: opacity 0.25s ease;
}

.cwg-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 9001;
}

.cwg-lightbox__close:hover {
  background: rgba(255,255,255,0.25);
}

.cwg-lightbox__close:focus-visible {
  outline: 2px solid var(--cwg-gold);
  outline-offset: 3px;
}

.cwg-lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 9001;
  user-select: none;
}

.cwg-lightbox__arrow:hover       { background: rgba(255,255,255,0.25); }
.cwg-lightbox__arrow:focus-visible {
  outline: 2px solid var(--cwg-gold);
  outline-offset: 3px;
}
.cwg-lightbox__arrow--prev  { left: 20px; }
.cwg-lightbox__arrow--next  { right: 20px; }

.cwg-lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: var(--font-ui);
  letter-spacing: 0.05em;
  z-index: 9001;
}

.cwg-watch-info__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 10px;
}

.cwg-watch-info h1 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.cwg-watch-info__badge {
  display: inline-block;
  background: rgba(27,67,50,0.1);
  color: var(--cwg-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── REF label ── */
.cwg-watch-info__ref {
  font-size: 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin: 0 0 6px;
}

/* ── Quick-glance info grid ── */
.cwg-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cwg-lightgray);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 20px 0 28px;
}
.cwg-info-cell__label {
  font-size: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

/* ── Detail sections (Story, Accessories, Condition, Details, Shipping) ── */
.cwg-detail-section {
  border-top: 1px solid var(--cwg-lightgray);
  padding: 20px 0;
}
.cwg-detail-section__title {
  font-size: 13px;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cwg-black);
  margin: 0 0 12px;
}
.cwg-detail-section__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cwg-darkgray);
  margin: 0;
}
.cwg-detail-section__note {
  font-size: 13px;
  color: var(--cwg-midgray);
  margin: 4px 0 0;
  line-height: 1.6;
}
.cwg-detail-section__badge {
  font-size: 13px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--cwg-black);
  margin: 0 0 6px;
}
.cwg-detail-rows {
  display: flex;
  flex-direction: column;
}
.cwg-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
  font-size: 14px;
  font-family: var(--font-ui);
  gap: 12px;
}
.cwg-detail-row:last-child { border-bottom: none; }
.cwg-detail-row span:first-child { color: var(--cwg-midgray); flex-shrink: 0; }
.cwg-detail-row span:last-child  { color: var(--cwg-black); font-weight: 500; text-align: right; }
.cwg-detail-row--header span:first-child { color: var(--cwg-black); font-weight: 600; }
.cwg-detail-row--header span:last-child  { color: var(--cwg-green); font-weight: 600; }
.cwg-detail-row--note { padding: 4px 0 10px; }
.cwg-detail-row--note span { font-size: 12px; color: var(--cwg-midgray) !important; font-weight: 400 !important; }

.cwg-watch-info__sourcing {
  font-size: 13px;
  color: var(--cwg-green);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cwg-watch-info__sourcing::before {
  content: '✓';
  font-weight: 700;
}

.cwg-watch-specs {
  background: var(--cwg-offwhite);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}

.cwg-watch-specs__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 16px;
}

.cwg-watch-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.cwg-watch-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cwg-watch-spec__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

.cwg-watch-spec__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--cwg-black);
}

.cwg-watch-info__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  background: var(--cwg-offwhite);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.cwg-watch-info__ctas:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cwg-watch-info__ctas .cwg-btn {
  justify-content: center;
  width: 100%;
}

.cwg-watch-info__footer {
  font-size: 12px;
  color: var(--cwg-midgray);
  line-height: 1.5;
  border-top: 1px solid var(--cwg-lightgray);
  padding-top: 16px;
}

/* ── 11. HOW IT WORKS ──────────────────────────────────────── */
.cwg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: cwg-steps;
}

.cwg-step {
  position: relative;
  counter-increment: cwg-steps;
}

.cwg-step::before {
  content: counter(cwg-steps, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--cwg-lightgray);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.cwg-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 10px;
}

.cwg-step__text {
  font-size: 15px;
  color: var(--cwg-midgray);
  line-height: 1.65;
}

/* Connector line between steps */
.cwg-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--cwg-lightgray);
  pointer-events: none;
}

.cwg-steps-wrapper { position: relative; }

/* ── 12. SELL / TRADE CARDS ────────────────────────────────── */
.cwg-service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cwg-service-card {
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
  transition: box-shadow var(--transition-md), transform var(--transition-md);
  position: relative;
  overflow: hidden;
}

.cwg-service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cwg-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cwg-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-md);
}

.cwg-service-card:hover::before { transform: scaleX(1); }

.cwg-service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cwg-white);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cwg-service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cwg-black);
  stroke-width: 1.5;
  fill: none;
}

.cwg-service-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cwg-service-card p {
  font-size: 15px;
  color: var(--cwg-midgray);
  margin-bottom: 28px;
}

/* ── 13. FORMS ─────────────────────────────────────────────── */
.cwg-form {
  max-width: 640px;
}

.cwg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cwg-form-field {
  margin-bottom: 20px;
}

.cwg-form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cwg-darkgray);
  margin-bottom: 8px;
}

.cwg-form-field input,
.cwg-form-field select,
.cwg-form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cwg-white);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--cwg-black);
  opacity: 1; /* prevent browser from fading select text on some OS/browsers */
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  /* Suppress browser default outline — replaced by explicit :focus-visible below */
  outline: none;
}

.cwg-form-field input:focus,
.cwg-form-field select:focus,
.cwg-form-field textarea:focus {
  border-color: var(--cwg-black);
}

/* Keyboard focus: explicit outline — specificity must beat .cwg-form-field input (0,1,1)
   Using (0,2,1) here to guarantee the keyboard focus ring is always visible */
.cwg-form-field input:focus-visible,
.cwg-form-field select:focus-visible,
.cwg-form-field textarea:focus-visible {
  outline: 2px solid var(--cwg-green);
  outline-offset: 2px;
  border-color: var(--cwg-green);
}

.cwg-form-field input::placeholder,
.cwg-form-field textarea::placeholder {
  color: var(--cwg-midgray);
}

/* Select placeholder state — dark enough to be clearly readable on white */
.cwg-form-field select.cwg-select--empty {
  color: var(--cwg-darkgray);
}

/* Ensure all option text is always fully visible */
.cwg-form-field select option {
  color: var(--cwg-black);
}

.cwg-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B9691' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.cwg-form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.cwg-form-note {
  font-size: 12px;
  color: var(--cwg-midgray);
  margin-top: 4px;
}

/* Form success state */
.cwg-form-success {
  display: none;
  background: rgba(27,67,50,0.06);
  border: 1px solid rgba(27,67,50,0.2);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  text-align: center;
}

.cwg-form-success.visible { display: block; }

.cwg-form-success__icon {
  width: 52px;
  height: 52px;
  background: var(--cwg-green);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cwg-form-success__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--cwg-white);
  stroke-width: 2.5;
}

.cwg-form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.cwg-form-success p {
  color: var(--cwg-midgray);
  font-size: 15px;
}

.cwg-form-response-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cwg-green);
  margin-top: 12px;
}

/* ── 14. PAGE HERO (inner pages) ───────────────────────────── */
.cwg-page-hero {
  padding: calc(72px + 64px) 0 64px;
  background: var(--cwg-offwhite);
  border-bottom: 1px solid var(--cwg-lightgray);
}

.cwg-page-hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}

.cwg-page-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--cwg-midgray);
  max-width: 560px;
  line-height: 1.65;
}

/* ── 15. FILTERS (Available Watches) ───────────────────────── */
.cwg-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
  margin-bottom: 40px;
}

.cwg-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cwg-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

.cwg-filter-select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-ui);
  color: var(--cwg-darkgray);
  background: var(--cwg-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B9691' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.cwg-filter-select:focus {
  outline: none;
  border-color: var(--cwg-black);
}

/* ── 16. AUTHENTICITY / TRUST SECTION ──────────────────────── */
.cwg-trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cwg-trust-section__image {
  aspect-ratio: 4 / 3;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cwg-trust-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cwg-trust-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.cwg-trust-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cwg-trust-point__icon {
  width: 40px;
  height: 40px;
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cwg-trust-point__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cwg-black);
  stroke-width: 1.5;
  fill: none;
}

.cwg-trust-point__content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cwg-trust-point__content p {
  font-size: 14px;
  color: var(--cwg-midgray);
  margin: 0;
}

/* ── 17. CTA BANNER ────────────────────────────────────────── */
.cwg-cta-banner {
  background: var(--cwg-black);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.cwg-cta-banner h2 {
  color: var(--cwg-white);
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 16px;
}

.cwg-cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ── 18. FOOTER ────────────────────────────────────────────── */
.cwg-footer {
  background: var(--cwg-green);
  color: rgba(255,255,255,0.80);
  padding: 64px 0 32px;
  margin-top: -26px; /* closes unexplained browser-layout gap between CTA banner and footer */
}

.cwg-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.cwg-footer__brand .cwg-logo__name {
  color: var(--cwg-white);
  font-size: 18px;
  margin-bottom: 4px;
  display: block;
}

.cwg-footer__brand .cwg-logo__tagline {
  color: rgba(255,255,255,0.65);
}

.cwg-footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 280px;
}

.cwg-footer__contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cwg-footer__contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.cwg-footer__contact a:hover {
  color: var(--cwg-white);
}

.cwg-footer__col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cwg-gold);
  margin-bottom: 16px;
}

.cwg-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cwg-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}

.cwg-footer__links a:hover { color: var(--cwg-white); }

.cwg-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.cwg-footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}

.cwg-footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  max-width: 560px;
  line-height: 1.5;
  text-align: right;
}

/* ── 19. CONTACT FLOATING BUTTONS ──────────────────────────── */
.cwg-contact-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: cwg-float-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1s backwards;
}

.cwg-contact-float__btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.cwg-contact-float__btn--wa {
  background: var(--cwg-whatsapp);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.cwg-contact-float__btn--wa:hover {
  background: var(--cwg-whatsapp-h);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.cwg-contact-float__btn--email {
  background: var(--cwg-black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.cwg-contact-float__btn--email:hover {
  background: var(--cwg-darkgray);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.cwg-contact-float__btn--wa svg {
  width: 26px;
  height: 26px;
  fill: var(--cwg-white);
}

.cwg-contact-float__btn--email svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--cwg-white);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cwg-contact-float__tooltip {
  position: absolute;
  right: 64px;
  background: var(--cwg-black);
  color: var(--cwg-white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cwg-contact-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--cwg-black);
  border-right: none;
}

.cwg-contact-float__btn:hover .cwg-contact-float__tooltip {
  opacity: 1;
}

@keyframes cwg-float-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile sticky CTA */
.cwg-mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--cwg-white);
  border-top: 1px solid var(--cwg-lightgray);
  padding: 12px 16px;
  gap: 10px;
}

.cwg-mobile-sticky-cta .cwg-btn {
  flex: 1;
  justify-content: center;
  padding: 14px 10px;
  font-size: 14px;
}

/* ── 20. ABOUT PAGE ─────────────────────────────────────────── */
.cwg-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cwg-about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cwg-lightgray);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}

.cwg-about-stat {
  background: var(--cwg-white);
  padding: 28px 24px;
  text-align: center;
}

.cwg-about-stat__number {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400; /* Playfair Regular — refined, not boastful */
  color: var(--cwg-green);
  line-height: 1.1;
  margin-bottom: 4px;
}

.cwg-about-stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

/* ── 20b. ABOUT US PAGE (template-about-us.php) ────────────── */
.cwg-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
}

.cwg-about-block {}

.cwg-about-block__title {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 20px;
}

.cwg-about-block__text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cwg-midgray);
  margin-bottom: 16px;
}

.cwg-about-block__text p:last-child { margin-bottom: 0; }

.cwg-about-block__text a {
  color: var(--cwg-green);
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.cwg-about-block__text a:hover {
  color: var(--cwg-green);
  text-decoration-color: var(--cwg-green);
}

.cwg-about-block__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cwg-lightgray);
}

.cwg-about-block__contact-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--cwg-darkgray);
  display: block;
}

a.cwg-about-block__contact-link {
  transition: color var(--transition);
}

a.cwg-about-block__contact-link:hover {
  color: var(--cwg-green);
}

.cwg-about-cta {
  display: flex;
  gap: 16px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--cwg-lightgray);
}

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

@media (max-width: 600px) {
  .cwg-about-cta {
    flex-direction: column;
  }

  .cwg-about-cta .cwg-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── 21. CONTACT PAGE ──────────────────────────────────────── */
.cwg-contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 80px;
  align-items: start;
}

.cwg-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cwg-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cwg-contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cwg-contact-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cwg-black);
  stroke-width: 1.5;
  fill: none;
}

.cwg-contact-item__content h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.cwg-contact-item__content p,
.cwg-contact-item__content a {
  font-size: 14px;
  color: var(--cwg-midgray);
}

/* ── 22. LEGAL PAGES ───────────────────────────────────────── */
.cwg-legal-content {
  max-width: 760px;
  padding: 60px 0;
}

.cwg-legal-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.cwg-legal-content h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.cwg-legal-content p,
.cwg-legal-content li {
  font-size: 15px;
  color: var(--cwg-darkgray);
  line-height: 1.75;
}

.cwg-legal-content ul,
.cwg-legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.cwg-legal-content li { margin-bottom: 6px; }

/* ── 23. PAGINATION ─────────────────────────────────────────── */
.cwg-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
}

.cwg-pagination a,
.cwg-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--cwg-darkgray);
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition);
}

.cwg-pagination a:hover {
  background: var(--cwg-black);
  border-color: var(--cwg-black);
  color: var(--cwg-white);
}

.cwg-pagination .current {
  background: var(--cwg-black);
  border-color: var(--cwg-black);
  color: var(--cwg-white);
}

/* ── 24. INQUIRY MODAL ──────────────────────────────────────── */
.cwg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-md);
}

.cwg-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cwg-modal {
  background: var(--cwg-white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-md);
  max-height: 90vh;
  overflow-y: auto;
}

.cwg-modal-overlay.open .cwg-modal {
  transform: translateY(0);
}

.cwg-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--cwg-offwhite);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cwg-midgray);
  transition: background-color var(--transition), color var(--transition);
}

.cwg-modal__close:hover {
  background: var(--cwg-lightgray);
  color: var(--cwg-black);
}

.cwg-modal__close:focus-visible {
  outline: 2px solid var(--cwg-green);
  outline-offset: 2px;
}

.cwg-modal__watch-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 8px;
}

.cwg-modal h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

/* ── 25. DIVIDERS & UTILITIES ──────────────────────────────── */
.cwg-divider {
  height: 1px;
  background: var(--cwg-lightgray);
  margin: var(--section-gap) 0;
}

.cwg-text-center { text-align: center; }
.cwg-text-muted  { color: var(--cwg-midgray); }

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

.cwg-section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.cwg-section-header--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.cwg-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cwg-badge--green { background: rgba(27,67,50,0.1); color: var(--cwg-green); }
.cwg-badge--dark  { background: var(--cwg-black); color: var(--cwg-white); }
.cwg-badge--gray  { background: var(--cwg-lightgray); color: var(--cwg-midgray); }

/* ── 26. EMPTY STATE ────────────────────────────────────────── */
.cwg-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--cwg-midgray);
}

.cwg-empty-state__icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.cwg-empty-state h3 {
  font-size: 22px;
  color: var(--cwg-black);
  margin-bottom: 8px;
}

/* ── 27. ASTRA OVERRIDES ────────────────────────────────────── */

/* Remove Astra default header */
#masthead,
.ast-masthead-custom-menu-items { display: none !important; }
/* NOTE: .ast-header-break-point is added to <body> by Astra on mobile — NEVER target it with display:none */

/* Full-width layout */
.ast-container,
.site-content .ast-container { max-width: 100% !important; padding: 0 !important; }
.entry-content, .ast-article-post, .site-main { margin: 0 !important; padding: 0 !important; }
.ast-page-builder-template .entry-content { margin: 0 !important; }
.ast-separate-container .site-content { padding: 0 !important; }
body.cwg-site .ast-separate-container { padding-top: 0 !important; }

/* Remove default entry padding */
.ast-article-post, .post-page-single { padding: 0 !important; }
.cwg-site .entry { margin: 0 !important; }

/* ── Anchor navigation: offset for fixed nav ─────────────────── */
/* Prevents ToC links and in-page anchors from landing behind the nav */
html { scroll-padding-top: 88px; }

/* ── Default page template: clear fixed nav ──────────────────── */
/* Pages assigned no custom template (page-template-default) have no
   hero section to provide nav clearance — add it here instead.    */
.cwg-site.page-template-default .entry-content,
.cwg-site.page-template-default .ast-article-post {
  padding-top: 88px !important;
}

/* ── 28. RESPONSIVE — TABLET ────────────────────────────────── */
@media (max-width: 1024px) {
  .cwg-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cwg-watch-single__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cwg-watch-gallery { position: static; }

  .cwg-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
  }

  .cwg-steps::before { display: none; }

  .cwg-trust-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cwg-about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cwg-contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── 29. RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
    --gutter: 20px;
  }

  .cwg-nav { display: none; }
  .cwg-header__cta .cwg-btn { display: none; }
  .cwg-logo__img { height: 36px; max-width: 160px; }
  .cwg-menu-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    background: var(--cwg-white) !important;
  }

  /* ── Fix 1b: Mobile menu CTA block ── */
  .cwg-mobile-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--cwg-lightgray);
  }
  .cwg-mobile-menu__cta .cwg-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Fix 2: Hero section ── */
  .cwg-hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .cwg-hero__content {
    max-width: 100%;
    text-align: center;
  }
  .cwg-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .cwg-hero__sub {
    max-width: 100%;
    font-size: clamp(15px, 4vw, 17px);
    margin-left: auto;
    margin-right: auto;
  }
  .cwg-hero__eyebrow { justify-content: center; }
  .cwg-hero__credibility { text-align: center; }
  .cwg-hero__scroll { display: none; }
  /* ── Fix 4: Watch card grid ── */
  .cwg-watches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cwg-watches-grid .cwg-watch-card__name {
    font-size: 13px !important;
  }
  .cwg-watches-grid .cwg-watch-card__price {
    font-size: 16px !important;
  }
  .cwg-watch-card__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }
  .cwg-watch-card__actions {
    flex-direction: column;
    gap: 8px;
  }
  .cwg-watch-card__actions .cwg-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Fix 5: Why Us section ── */
  .cwg-why-list { grid-template-columns: 1fr; gap: 0; }
  .cwg-why-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cwg-lightgray);
  }
  .cwg-why-item:last-child { border-bottom: none; }
  .cwg-why-item__icon { flex-shrink: 0; width: 40px; height: 40px; }

  /* ── Fix 6: Trust / Authentication section ── */
  .cwg-trust-section { display: flex; flex-direction: column; gap: 24px; }
  .cwg-trust-section__image {
    width: 100%;
    max-height: 280px;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: auto;
  }
  .cwg-trust-section__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }
  .cwg-trust-points { gap: 16px; }

  /* ── Fix 7: Contact float ── */
  .cwg-contact-float {
    bottom: 84px;
    right: 16px;
    gap: 8px;
  }
  .cwg-contact-float__btn {
    width: 50px;
    height: 50px;
  }
  .cwg-contact-float__tooltip { display: none; }

  /* ── Fix 8: Typography & spacing ── */
  body { overflow-x: hidden; }
  .cwg-container { padding-left: 16px; padding-right: 16px; }
  /* Guide pages keep a readable minimum — override the 16px above */
  .cwg-guide .cwg-container { padding-left: 20px; padding-right: 20px; }
  .cwg-section { padding-top: 48px; padding-bottom: 48px; }
  h2, .cwg-section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  p, .cwg-section-sub { font-size: 15px; line-height: 1.6; }

  /* ── Fix 10: Forms ── */
  .cwg-form-field input,
  .cwg-form-field select,
  .cwg-form-field textarea {
    font-size: 16px !important;
    width: 100%;
    box-sizing: border-box;
  }
  .cwg-form input[type="submit"],
  .cwg-form button[type="submit"] {
    min-height: 48px;
    width: 100%;
  }

  .cwg-service-cards { grid-template-columns: 1fr; }

  .cwg-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  /* Brand and Company span both columns */
  .cwg-footer__brand,
  .cwg-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .cwg-footer__bottom { flex-direction: column; text-align: center; }
  .cwg-footer__disclaimer { text-align: center; }

  .cwg-form-row { grid-template-columns: 1fr; }

  .cwg-about-stat-grid { grid-template-columns: 1fr; }

  .cwg-mobile-sticky-cta { display: flex; }

  /* Push content above mobile sticky CTA */
  .cwg-watch-single__layout { padding-bottom: 90px; padding-top: 72px !important; }
  body.admin-bar .cwg-watch-single__layout { padding-top: 118px !important; }
  .cwg-home #cwg-main-content,
  .cwg-watch-archive #cwg-main-content { padding-bottom: 80px; }
  .page-template-template-request .cwg-footer { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }

  /* Filters — horizontal scrollable row on mobile */
  .cwg-filters {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
    align-items: flex-end;
  }
  .cwg-filters::-webkit-scrollbar { display: none; }
  .cwg-filter-group { flex: 0 0 auto; width: auto; }
  .cwg-filter-select { width: 130px; font-size: 13px; }

  /* Homepage watch grid — horizontal scroll carousel */
  .cwg-home .cwg-watches-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 4px 0 12px;
  }
  .cwg-home .cwg-watches-grid::-webkit-scrollbar { display: none; }
  .cwg-home .cwg-watches-grid .cwg-watch-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    /* Reset single-column override for horizontal carousel cards */
    width: 280px;
  }
  /* Reset card action override inside carousel */
  .cwg-home .cwg-watches-grid .cwg-watch-card__actions {
    flex-direction: row;
  }
  .cwg-home .cwg-watches-grid .cwg-watch-card__actions .cwg-btn {
    width: auto;
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .cwg-btn-group { flex-direction: column; }
  .cwg-btn-group .cwg-btn { width: 100%; justify-content: center; }

  /* ── Fix 3: Trust strip ── */
  .cwg-trust-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: center;
  }
  .cwg-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 12px;
  }
  .cwg-trust-item__icon { margin-bottom: 4px; }

  .cwg-hero { min-height: auto; }
}

/* ── 30. PRINT ──────────────────────────────────────────────── */
@media print {
  .cwg-header,
  .cwg-contact-float,
  .cwg-mobile-sticky-cta,
  .cwg-footer { display: none !important; }
}

/* ── 31. FOCUS STATES (Accessibility) ──────────────────────── */
:focus-visible {
  outline: 2px solid var(--cwg-green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── 32. REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 33. SCROLL REVEAL ──────────────────────────────────────── */
.cwg-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.cwg-reveal.cwg-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .cwg-reveal { opacity: 1; transform: none; }
}

/* ── 34. SECTION HEADER SPLIT LAYOUT ───────────────────────── */
.cwg-section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── 35. WATCH CARD PLACEHOLDER ─────────────────────────────── */
.cwg-watch-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #111 0%, #1f1f1f 50%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cwg-watch-card__placeholder svg {
  width: 52px;
  height: 52px;
  opacity: 0.15;
  fill: none;
  stroke: var(--cwg-gold);
  stroke-width: 1;
}

/* ── 36. TRUST SECTION INTRO TEXT ───────────────────────────── */
.cwg-trust-section__intro {
  color: var(--cwg-midgray);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 16px;
}

/* ── 37. CTA BANNER EYEBROW ─────────────────────────────────── */
.cwg-cta-banner .cwg-eyebrow {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em;
}

/* ── 38. STEPS SECTION CTA ──────────────────────────────────── */
.cwg-steps-cta {
  margin-top: 48px;
}

/* ── 39. EMPTY STATE CTA ────────────────────────────────────── */
.cwg-empty-state .cwg-btn {
  margin-top: 20px;
}

/* ── 40. SKIP TO CONTENT ─────────────────────────────────────── */
.cwg-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 20px;
  background: var(--cwg-green);
  color: var(--cwg-white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
}
.cwg-skip-link:focus {
  top: 0;
  outline: 2px solid var(--cwg-gold);
  outline-offset: 2px;
}

/* ── 41. CRO ADDITIONS ──────────────────────────────────────── */

/* Hero credibility line (between h1 and hero sub) */
.cwg-hero__credibility {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.05em;
  margin: -10px 0 28px;
}

/* Watch card availability line */
.cwg-watch-card__availability {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cwg-green);
  letter-spacing: 0.03em;
  margin: 0 0 12px;
}

.cwg-watch-card__availability::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.cwg-watch-card__availability--reserved {
  color: var(--cwg-gold-dark);
}

/* WhatsApp microcopy beneath card action buttons */
.cwg-watch-card__wa-note {
  font-size: 11px;
  color: var(--cwg-midgray);
  letter-spacing: 0.02em;
  margin: 8px 0 0;
  text-align: center;
}

/* Why Clients Work With Us — section */
.cwg-section--why {
  background: var(--cwg-white);
}

.cwg-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cwg-why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.cwg-why-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cwg-offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.cwg-why-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--cwg-green);
  stroke-width: 1.75;
}

.cwg-why-item__content h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 8px;
}

.cwg-why-item__content p {
  font-size: 15px;
  color: var(--cwg-midgray);
  margin: 0;
  line-height: 1.65;
}

/* Soft social proof bar */
.cwg-social-proof {
  background: var(--cwg-offwhite);
  border-top: 1px solid var(--cwg-lightgray);
  border-bottom: 1px solid var(--cwg-lightgray);
  padding: 20px 0;
  text-align: center;
}

.cwg-social-proof__line {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin: 0;
}

/* CTA banner support text (beneath main paragraph) */
.cwg-cta-banner__support {
  font-size: 13px !important;
  color: rgba(255,255,255,0.38) !important;
  letter-spacing: 0.04em;
  margin-top: -16px !important;
  margin-bottom: 32px !important;
}

/* WhatsApp button wrapper + microcopy */
.cwg-cta-wa-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.cwg-wa-microcopy {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.cwg-cta-email-alt {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.cwg-cta-email-alt a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.cwg-cta-email-alt a:hover {
  color: var(--cwg-white);
}

/* ── Responsive: Why list ───────────────────────────────────── */
@media (max-width: 1024px) {
  .cwg-why-list {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ── STEP 2: Hero urgency line ──────────────────────────────── */
.cwg-hero__urgency {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: -28px 0 36px;   /* tuck under sub, space before CTA */
}

/* ── STEP 6: Hero trust note below CTA ─────────────────────── */
.cwg-hero__trust-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin: 16px 0 0;
}
.cwg-hero__trust-note::before {
  content: '✓  ';
  color: var(--cwg-gold);
  font-weight: 700;
}

/* ── STEP 5 + 18: Hero primary CTA — visually dominant ─────── */
.cwg-btn--hero-primary {
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(27,67,50,0.45);
}
.cwg-btn--hero-primary:hover {
  box-shadow: 0 8px 36px rgba(27,67,50,0.55);
}

/* ── STEP 9: Mobile menu WA microcopy ───────────────────────── */
.cwg-mobile-menu__wa-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.cwg-mobile-menu__wa-note {
  font-size: 11px;
  color: var(--cwg-midgray);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── STEP 13: Sticky CTA button sizing ──────────────────────── */
.cwg-sticky-btn {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── STEP 17: Button active / tap feedback ──────────────────── */
.cwg-btn:active {
  transform: translateY(0) scale(0.97) !important;
  opacity: 0.92;
  transition: transform 0.08s ease, opacity 0.08s ease;
}
.cwg-btn--primary:active {
  box-shadow: 0 1px 8px rgba(27,67,50,0.35) !important;
}
.cwg-btn--whatsapp:active {
  box-shadow: 0 1px 8px rgba(37,211,102,0.35) !important;
}

/* ── STEP 12 + 13: Mobile optimisation ─────────────────────── */
@media (max-width: 768px) {
  .cwg-hero__credibility {
    font-size: 13px;
  }

  /* Urgency + trust note centred on mobile */
  .cwg-hero__urgency {
    text-align: center;
    margin-top: -16px;
    margin-bottom: 28px;
  }
  .cwg-hero__trust-note {
    text-align: center;
  }

  /* Why list — full width, stacked */
  .cwg-why-list {
    max-width: 100%;
  }

  /* Sticky bar — taller buttons, shadow, safe-area aware */
  .cwg-mobile-sticky-cta {
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .cwg-mobile-sticky-cta .cwg-btn {
    min-height: 52px;
    font-size: 15px;
    font-weight: 600;
  }

  /* Ensure hero content clears sticky bar on mobile */
  .cwg-home .cwg-hero {
    padding-bottom: 80px;
  }

  /* Social proof — compact on mobile */
  .cwg-social-proof {
    padding: 14px 0;
  }
  .cwg-social-proof__line {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  /* Hero CTA buttons full-width and tall on small screens */
  .cwg-hero .cwg-btn--lg {
    padding: 17px 28px;
    font-size: 15px;
  }
  /* Tighten section gap further on small screens */
  .cwg-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

/* ══════════════════════════════════════════════════════════════
   PAGE TEMPLATES — RESPONSIVE LAYOUT + CRO
   (Request / Sell / Trade)
   Steps 1–27
   ══════════════════════════════════════════════════════════════ */

/* ── Steps 1–4: Two-column page layout (replaces inline grids) ── */
.cwg-page-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.cwg-page-layout--mid    { grid-template-columns: 1fr 400px; }
.cwg-page-layout--narrow { grid-template-columns: 1fr 380px; }

.cwg-page-layout__main   { min-width: 0; } /* prevent grid blowout */
.cwg-page-layout__sidebar {
  position: sticky;
  top: 100px;
  min-width: 0;
}

/* ── Step 4: Tablet breakpoint ──────────────────────────────── */
@media (max-width: 1100px) {
  .cwg-page-layout,
  .cwg-page-layout--mid,
  .cwg-page-layout--narrow {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
}

/* ── Steps 1–8: Mobile — single column, form first ─────────── */
@media (max-width: 768px) {
  .cwg-page-layout,
  .cwg-page-layout--mid,
  .cwg-page-layout--narrow {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cwg-page-layout__main    { order: 1; }
  .cwg-page-layout__sidebar { order: 2; position: static; top: auto; }

  /* Step 5: Typography scaling on inner pages */
  .cwg-page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .cwg-page-hero p  { font-size: 15px; }

  /* Steps 6–7: Form fields + buttons full-width on mobile */
  .cwg-page-layout .cwg-form-field input,
  .cwg-page-layout .cwg-form-field select,
  .cwg-page-layout .cwg-form-field textarea {
    font-size: 16px !important; /* prevent iOS zoom */
    width: 100%;
  }
  .cwg-page-layout .cwg-btn--lg {
    padding: 17px 24px;
    font-size: 15px;
  }

  /* Step 18: Reduce vertical spacing */
  .cwg-page-layout .cwg-form-field { margin-bottom: 16px; }
  .cwg-page-layout h2[style]       { font-size: 24px !important; }
}

/* ── Step 13: Form context (speed + intent line) ────────────── */
.cwg-form-pre {
  margin-bottom: 24px;
}
.cwg-form-pre__speed {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cwg-green);
  margin-bottom: 6px;
}
.cwg-form-pre__desc {
  font-size: 14px;
  color: var(--cwg-midgray);
  margin: 0;
  line-height: 1.5;
}

/* ── Step 14: Urgency pill ──────────────────────────────────── */
.cwg-form-urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(27,67,50,0.06);
  border: 1px solid rgba(27,67,50,0.15);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cwg-green);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.cwg-form-urgency::before {
  content: '●';
  font-size: 7px;
  color: var(--cwg-green);
  flex-shrink: 0;
}

/* ── Step 23: No-payment reassurance ────────────────────────── */
.cwg-no-payment {
  font-size: 12px;
  color: var(--cwg-midgray);
  text-align: center;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── Steps 15 + 22: Trust strip below form ──────────────────── */
.cwg-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--cwg-lightgray);
}
.cwg-form-trust__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--cwg-midgray);
  letter-spacing: 0.02em;
}
.cwg-form-trust__item::before {
  content: '✓';
  color: var(--cwg-green);
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Step 20: Sell page 3-step process ──────────────────────── */
.cwg-sell-process {
  display: flex;
  gap: 0;
  flex-direction: column;
  margin-bottom: 28px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cwg-sell-process__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--cwg-lightgray);
  background: var(--cwg-white);
}
.cwg-sell-process__step:last-child { border-bottom: none; }
.cwg-sell-process__num {
  width: 26px;
  height: 26px;
  background: var(--cwg-green);
  color: var(--cwg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cwg-sell-process__text strong {
  font-size: 13px;
  color: var(--cwg-black);
  display: block;
  margin-bottom: 1px;
  font-weight: 600;
}
.cwg-sell-process__text span {
  font-size: 12px;
  color: var(--cwg-midgray);
}

/* ── Steps 16 + 25: Sticky CTA + tap states ────────────────── */
/* (sticky bar already styled; ensure WA green on all 3 pages) */
@media (max-width: 768px) {
  /* Page templates content above sticky bar */
  .page-template-template-request #cwg-main-content,
  .page-template-template-sell    #cwg-main-content,
  .page-template-template-trade   #cwg-main-content { padding-bottom: 80px; }
}

/* ── 42. HERO VIDEO + BACKGROUND IMAGE ────────────────────────────────── */

/* Z-index layering: bg-img(1) → video(2) → overlay(3) → content(4)       */
.cwg-hero__bg      { z-index: 1; }
.cwg-hero__video   { z-index: 2; }
.cwg-hero__overlay { z-index: 3; }
.cwg-hero__content { z-index: 4; }

/* Hero background image — LCP element, always visible, covers full hero   */
.cwg-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
}

.cwg-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
  pointer-events: none;
  will-change: opacity;
  contain: strict;
}
.cwg-hero__video.cwg-video--playing {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .cwg-hero__video { display: none !important; }
}


/* =============================================
   CWG REDESIGN v2 — WTC-MATCHING FINAL
   ============================================= */

/* 1. Page background — warm cream */
body.cwg-watch-single,
body.single-watch {
  background-color: var(--cwg-offwhite) !important;
}
.ast-separate-container .ast-article-single,
.ast-separate-container #primary,
.ast-separate-container #content,
.site-content {
  background: var(--cwg-offwhite) !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 2. Hide Astra elements */
.cwg-watch-single .entry-header,
.cwg-watch-single .entry-title,
.ast-normal-title-enabled .entry-header { display: none !important; }
.ast-breadcrumbs-wrapper { display: none !important; }
body.cwg-watch-single #secondary { display: none !important; }

/* 3. Breadcrumb */
.cwg-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 89px 24px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
}
body.admin-bar .cwg-breadcrumb { padding-top: 135px; }
.cwg-breadcrumb a { color: var(--cwg-midgray); text-decoration: none; transition: color 0.15s; }
.cwg-breadcrumb a:hover { color: var(--cwg-green); }
.cwg-breadcrumb__sep { color: #ccc; font-size: 11px; }
.cwg-breadcrumb__current { color: var(--cwg-darkgray); }
@media (max-width: 768px) { .cwg-breadcrumb { display: none; } }

/* 4. Social proof badge */
.cwg-social-proof {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px 0;
  display: flex;
  justify-content: flex-end;
}
.cwg-social-proof__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--cwg-green);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-ui);
}
.cwg-social-proof__count { font-weight: 600; }
@media (max-width: 768px) { .cwg-social-proof { display: none; } }

/* 5. Page top offset — breadcrumb handles desktop, watch-single handles mobile */
.cwg-watch-single { padding-top: 0; }
@media (max-width: 768px) {
  .cwg-watch-single { padding-top: 0 !important; }
  body.admin-bar .cwg-watch-single { padding-top: 135px; }
}

/* 6. Two-column layout */
.cwg-watch-single__layout {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  overflow: visible;
}
@media (max-width: 1023px) {
  .cwg-watch-single__layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px 100px;
  }
}

/* 7. Gallery left col — sticky is declared at line 1128; no override needed */
.cwg-watch-gallery__main { display: none !important; }

/* Swiper container */
.cwg-gallery-swiper { width: 100%; overflow: hidden; border-radius: 12px; }
.cwg-gallery-swiper .swiper-wrapper { align-items: stretch; }
.cwg-gallery-swiper .swiper-slide { width: 100% !important; flex-shrink: 0; }

/* 1:1 slide */
.cwg-gallery-slide {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cwg-offwhite);
  cursor: zoom-in;
}
.cwg-gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cwg-gallery-slide:hover img { transform: scale(1.02); }

/* Empty guard */
.cwg-gallery-empty {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: var(--cwg-offwhite);
  border-radius: 12px;
}
.cwg-gallery-empty p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cwg-midgray);
  font-size: 14px;
  margin: 0;
}

/* Thumbnail strip */
.cwg-watch-gallery__thumbs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cwg-watch-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;
  outline: none;
  background: var(--cwg-offwhite);
}
.cwg-watch-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cwg-watch-gallery__thumb:hover,
.cwg-watch-gallery__thumb:focus-visible { opacity: 0.85; border-color: var(--cwg-green); }
.cwg-watch-gallery__thumb.active { border-color: var(--cwg-green); }

/* Info panel typography */
.cwg-watch-info__ref {
  font-size: 12px;
  color: var(--cwg-midgray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
  font-family: var(--font-ui);
}
.cwg-watch-info__title {
  font-size: 22px;
  font-weight: 500;
  color: var(--cwg-black);
  line-height: 1.3;
  margin: 0 0 10px;
  font-family: var(--font-ui);
  letter-spacing: 0;
}
/* Info chips */
.cwg-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  background: transparent;
  border-radius: 0;
}
.cwg-info-cell__label {
  font-size: 10px;
  color: var(--cwg-midgray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

/* CTA block */
.cwg-watch-info__ctas { margin-bottom: 24px; }
.cwg-btn--lg {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 24px !important;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s;
  font-family: inherit;
  letter-spacing: 0;
  box-sizing: border-box;
}
.cwg-btn--primary.cwg-btn--lg {
  background: var(--cwg-green);
  color: #fff;
  border: none;
}
.cwg-btn--primary.cwg-btn--lg:hover {
  opacity: 0.88;
  color: #fff;
  transform: none;
  box-shadow: none;
}
.cwg-watch-info__ask {
  text-align: center;
  font-size: 13px;
  color: var(--cwg-midgray);
  margin-top: 10px;
  margin-bottom: 0;
}
.cwg-watch-info__ask-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--cwg-green);
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
  font-family: inherit;
}
.cwg-watch-info__ask-link:hover { opacity: 0.8; }

/* Detail sections */
.cwg-detail-section {
  border-top: 0.5px solid var(--cwg-lightgray);
  padding: 16px 0;
}
.cwg-detail-section__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--cwg-black);
  margin: 0 0 10px;
  text-transform: capitalize;
  font-family: var(--font-ui);
  letter-spacing: 0;
}
.cwg-detail-section__text {
  font-size: 13px;
  color: var(--cwg-darkgray);
  line-height: 1.65;
}
.cwg-detail-section__note {
  font-size: 12px;
  color: var(--cwg-midgray);
  margin-top: 10px;
  font-style: italic;
}
.cwg-detail-section__badge { display: none; }

/* Detail rows */
.cwg-detail-rows { display: flex; flex-direction: column; }
.cwg-detail-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--cwg-lightgray);
  font-size: 13px;
  align-items: flex-start;
  justify-content: flex-start;
}
.cwg-detail-row:last-child { border-bottom: none; }
.cwg-detail-row__label {
  min-width: 150px;
  flex-shrink: 0;
  color: var(--cwg-midgray);
  font-size: 12px;
}
.cwg-detail-row__value { color: var(--cwg-darkgray); flex: 1; line-height: 1.5; }
.cwg-detail-row--header .cwg-detail-row__label { font-weight: 500; color: var(--cwg-darkgray); }
.cwg-detail-row--header .cwg-detail-row__value { color: var(--cwg-darkgray); }

/* Outline button override for concierge */
.cwg-btn--outline {
  display: inline-block;
  border: 1.5px solid var(--cwg-green) !important;
  color: var(--cwg-green) !important;
  background: transparent !important;
  border-radius: 24px !important;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
  transform: none !important;
}
.cwg-btn--outline:hover {
  background: var(--cwg-green) !important;
  color: #fff !important;
  transform: none !important;
  box-shadow: none;
}

/* Concierge block */
.cwg-concierge {
  margin-top: 24px;
  padding: 20px;
  background: var(--cwg-offwhite);
  border: 0.5px solid var(--cwg-lightgray);
  border-radius: 10px;
  text-align: center;
}
.cwg-concierge__question { font-size: 14px; font-weight: 500; color: var(--cwg-green); margin-bottom: 4px; }
.cwg-concierge__sub { font-size: 13px; color: var(--cwg-midgray); margin-bottom: 14px; }
.cwg-concierge__btn { width: auto !important; display: inline-block !important; }

/* 9. Trust signals */
.cwg-trust { background: var(--cwg-green); padding: 64px 24px; }
.cwg-trust__inner { max-width: 1200px; margin: 0 auto; }
.cwg-trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cwg-trust__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  cursor: default;
}
.cwg-trust__item:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-4px);
}
.cwg-trust__num {
  display: block;
  font-size: 36px;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-ui);
}
.cwg-trust__title { font-size: 15px; font-weight: 500; color: #fff; margin: 0 0 10px; font-family: var(--font-ui); }
.cwg-trust__text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
  .cwg-trust { padding: 44px 20px; }
  .cwg-trust__grid { grid-template-columns: 1fr; gap: 16px; }
  .cwg-trust__item { padding: 24px 22px 28px; }
}

/* 10. Lightbox — upgraded, display:none/flex paradigm */
.cwg-lightbox {
  z-index: 999999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: none;
}
.cwg-lightbox.is-open { display: flex !important; }
.cwg-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
  z-index: 0;
}
.cwg-lightbox__inner {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cwg-lightbox__inner:active { cursor: grabbing; }
.cwg-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  opacity: 1 !important;
  transition: none !important;
}
.cwg-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
  transform: none !important;
}
.cwg-lightbox__close:hover { background: rgba(255,255,255,0.28); }
.cwg-lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) !important;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 44px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  padding-bottom: 3px;
  line-height: 1;
  user-select: none;
}
.cwg-lightbox__arrow:hover { background: rgba(255,255,255,0.28); }
.cwg-lightbox__arrow--prev { left: 20px; }
.cwg-lightbox__arrow--next { right: 20px; }
.cwg-lightbox[data-count="1"] .cwg-lightbox__arrow { display: none; }
.cwg-lightbox__counter {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.06em;
  z-index: 10;
  pointer-events: none;
}
.cwg-lightbox__hint {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.32);
  font-size: 11px;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cwg-lightbox__arrow { width: 40px; height: 40px; font-size: 32px; }
  .cwg-lightbox__arrow--prev { left: 8px; }
  .cwg-lightbox__arrow--next { right: 8px; }
  .cwg-lightbox__hint { display: none; }
  .cwg-lightbox__img { max-width: 98vw; max-height: 85vh; }
}

/* END CWG REDESIGN v2 */


/* =====================================================
   CWG REDESIGN v3 — DETAIL SECTIONS + MORE WATCHES
   ===================================================== */


/* ── ACCESSORIES — SIDE-BY-SIDE CHIP CARDS ─────────── */

.cwg-acc-chips {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cwg-acc-chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 0.5px solid var(--cwg-lightgray);
  border-radius: 6px;
  padding: 8px 14px;
  background: var(--cwg-offwhite);
  min-width: 70px;
}

.cwg-acc-chip__label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cwg-midgray);
}

.cwg-acc-chip__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--cwg-black);
}


/* ── CONDITION — FULL-BORDER CHIP CARDS ─ */

.cwg-cond-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cwg-cond-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cwg-cond-item__label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cwg-midgray);
  margin-bottom: 6px;
}

.cwg-cond-item__card {
  border: 0.5px solid var(--cwg-lightgray);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--cwg-offwhite);
}

.cwg-cond-item__grade {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--cwg-black);
  margin-bottom: 3px;
  font-style: normal;
}

.cwg-cond-item__desc {
  font-size: 13px;
  color: var(--cwg-darkgray);
  line-height: 1.55;
  margin: 0;
}


/* ── DETAILS — 3-COL GRID DESKTOP / 2-COL MOBILE ───── */

.cwg-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--cwg-lightgray);
  border-radius: 8px;
  overflow: hidden;
  gap: 0;
}

.cwg-details-cell {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 0.5px solid var(--cwg-lightgray);
  border-bottom: 0.5px solid var(--cwg-lightgray);
  background: var(--cwg-offwhite);
  min-width: 0;
  overflow: hidden;
}

.cwg-details-cell:nth-child(3n):not(.cwg-details-cell--wide) {
  border-right: none;
}

.cwg-details-cell:nth-last-child(1 of :not(.cwg-details-cell--wide)),
.cwg-details-cell:nth-last-child(2 of :not(.cwg-details-cell--wide)),
.cwg-details-cell:nth-last-child(3 of :not(.cwg-details-cell--wide)) {
  border-bottom: none;
}

.cwg-details-cell--wide {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
}

.cwg-details-cell__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--cwg-black);
  line-height: 1.3;
}

.cwg-details-cell__value {
  font-size: 13px;
  color: var(--cwg-midgray);
  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 768px) {
  .cwg-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cwg-details-cell:nth-child(3n):not(.cwg-details-cell--wide) {
    border-right: 0.5px solid var(--cwg-lightgray);
  }
  .cwg-details-cell:nth-child(2n):not(.cwg-details-cell--wide) {
    border-right: none;
  }
  .cwg-details-cell:nth-last-child(1 of :not(.cwg-details-cell--wide)),
  .cwg-details-cell:nth-last-child(2 of :not(.cwg-details-cell--wide)) {
    border-bottom: none;
  }
  .cwg-details-cell:nth-last-child(3 of :not(.cwg-details-cell--wide)) {
    border-bottom: 0.5px solid var(--cwg-lightgray);
  }
}


/* ── MORE WATCHES — SECTION HEADER ──────────────────── */

.cwg-section--offwhite .cwg-eyebrow,
.cwg-section-header .cwg-eyebrow {
  display: none !important;
}

.cwg-section--offwhite .cwg-section-title,
.cwg-section-header .cwg-section-title {
  font-family: var(--font-ui) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--cwg-black) !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  margin-top: 0 !important;
}

.cwg-section-header {
  margin-bottom: 28px !important;
}


/* ── CARD — 1:1 SQUARE IMAGE ────────────────────────── */

.cwg-watch-card {
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 0.5px solid var(--cwg-lightgray) !important;
  background: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  transform: none !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.cwg-watch-card:hover {
  transform: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
  border-color: var(--cwg-lightgray) !important;
}

.cwg-watch-card__image {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  padding-top: 100% !important;
  height: 0 !important;
  overflow: hidden !important;
  background: var(--cwg-offwhite) !important;
  border-radius: 8px 8px 0 0 !important;
  flex-shrink: 0 !important;
  aspect-ratio: unset !important;
}

.cwg-watch-card__image img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: none;
  transition: transform 0.3s ease;
}

.cwg-watch-card__image:hover img {
  transform: scale(1.03) !important;
}


/* ── CARD — BODY ─────────────────────────────────────── */

.cwg-watch-card__body {
  padding: 14px 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1 !important;
}

.cwg-watch-card__ref {
  font-size: 10px;
  font-weight: 500;
  color: var(--cwg-midgray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
  line-height: 1.3;
}

.cwg-watch-card__name {
  font-family: var(--font-ui) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--cwg-black) !important;
  line-height: 1.4 !important;
  margin: 0 0 6px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.cwg-watch-card__name a {
  color: inherit !important;
  text-decoration: none !important;
}

.cwg-watch-card__name a:hover { color: var(--cwg-green) !important; }

.cwg-watch-card__price {
  font-family: var(--font-ui) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--cwg-green) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.cwg-watch-card__brand   { display: none !important; }
.cwg-watch-card__meta    { display: none !important; }
.cwg-watch-card__actions { display: none !important; }


/* =====================================================
   CWG REDESIGN — COMPLETE FIX (FINAL)
   ===================================================== */


/* 2. RIGHT INFO PANEL — STICKY */
.cwg-watch-info {
  position: sticky !important;
  top: 89px !important;
  align-self: start !important;
  max-height: none;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: var(--cwg-lightgray) transparent;
  padding-bottom: 32px;
}

body.admin-bar .cwg-watch-info {
  top: 135px !important;
  max-height: none;
}

@media (max-width: 1023px) {
  .cwg-watch-info {
    position: static !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding-bottom: 100px !important;
  }
  body.admin-bar .cwg-watch-info {
    top: auto !important;
  }
}


/* END CWG REDESIGN COMPLETE FIX — duplicate rules removed; canonical versions live in v3 above */

/* ── CLEAN OVERRIDES (TRUE 10/10) ──────────────────── */

.cwg-watch-info__price {
  font-size: 32px !important;
  font-weight: 600 !important;
  color: var(--cwg-green) !important;
  margin-bottom: 16px !important;
}

.cwg-info-cell__value {
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  color: var(--cwg-black) !important;
}

.cwg-info-cell {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 12px 10px !important;
  background: var(--cwg-offwhite) !important;
}

.cwg-watch-info__ask {
  display: block !important;
  margin-top: 12px !important;
  text-align: center !important;
  font-size: 13px !important;
  color: var(--cwg-midgray) !important;
}

.cwg-watch-info__ask-link {
  color: var(--cwg-green) !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.cwg-watch-info__ask-link:hover {
  opacity: 0.75 !important;
}

/* CTA button — price sub-line (hidden) */
.cwg-btn__price {
  display: none !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  opacity: 0.82 !important;
  margin-top: 2px !important;
  letter-spacing: 0 !important;
}

/* =====================================================
   CWG GALLERY REDESIGN v2 — WTC MATCH
   ===================================================== */


/* ── LAYOUT — 58/42 COLUMN RATIO ─────────────────────── */

.cwg-watch-single__layout {
  grid-template-columns: 58fr 42fr !important;
  gap: 40px !important;
  align-items: start !important;
  overflow: visible !important;
}

@media (max-width: 1023px) {
  .cwg-watch-single__layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}


/* ── INFO PANEL — STICKY DESKTOP ONLY ────────────────── */
/*
  Gallery (left col) scrolls normally — it is NOT sticky.
  Info panel (right col) is sticky — stays fixed while gallery scrolls.
  After gallery ends, sticky releases and info scrolls normally.
  overflow:visible on layout (confirmed) allows sticky to work correctly.
*/

@media (min-width: 1024px) {
  .cwg-watch-info {
    position: sticky !important;
    top: 89px !important;
    align-self: start !important;
    max-height: none !important;
    overflow-y: visible !important;
    scrollbar-width: none !important;
  }
  .cwg-watch-info::-webkit-scrollbar {
    display: none !important;
  }
  body.admin-bar .cwg-watch-info {
    top: 135px !important;
    max-height: none !important;
  }
}

@media (max-width: 1023px) {
  .cwg-watch-info {
    position: static !important;
    max-height: none !important;
    overflow-y: visible !important;
  }
}


/* ── GALLERY CONTAINER — GRID BLOWOUT FIX ────────────── */
/*
  CSS Grid: grid items with min-width:auto (default) refuse to shrink
  below their content's min-size. Swiper sets swiper-wrapper to
  numSlides × slideWidth px, blowing out the 1fr/58fr column.
  min-width:0 forces the item to honor the track size.
  overflow:hidden contains the Swiper wrapper inside the track.
  Drift paneContainer:body so it is unaffected by overflow:hidden here.
*/

.cwg-watch-gallery {
  min-width: 0;
}

/* ── GALLERY SCROLL CONTAINMENT — desktop only ───────────
   Makes the image column an independent scroll container.
   Images scroll within the gallery; info column stays sticky.
   Scoped tightly to body.single-watch to prevent leakage.
──────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  body.single-watch .cwg-watch-gallery {
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  body.single-watch .cwg-watch-gallery::-webkit-scrollbar {
    display: none;
  }
  body.admin-bar.single-watch .cwg-watch-gallery {
    top: 135px;
  }
}

.cwg-gallery-mobile {
  overflow: hidden;
}


/* ── DESKTOP GALLERY — VERTICAL STACK ────────────────── */

.cwg-gallery-desktop {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.cwg-watch-single .cwg-gallery-desktop .cwg-gallery-stack__item,
.cwg-gallery-desktop .cwg-gallery-stack__item {
  width: 90% !important;
  margin: 0 auto !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cwg-offwhite);
  cursor: zoom-in;
  border-radius: var(--radius-lg) !important;
  position: relative;
  line-height: 0;
}

.cwg-gallery-desktop .cwg-gallery-stack__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide desktop stack on mobile */
@media (max-width: 768px) {
  .cwg-gallery-desktop {
    display: none !important;
  }
}


/* ── DRIFT ZOOM — CIRCULAR LENS ──────────────────────── */
/*
  paneContainer is document.body — pane floats above page.
  border-radius: 50% makes it circular.
  overflow: hidden clips the zoomed image to the circle shape.
*/

.drift-zoom-pane {
  width: 260px !important;
  height: 260px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.6) !important;
  pointer-events: none !important;
  z-index: 9999 !important;
}

.cwg-drift-inline-pane {
  border-radius: 50% !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: 10 !important;
}

/* Drift controls .drift-zoom-pane img size/position via inline styles — no overrides here */

.drift-bounding-box {
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  pointer-events: none !important;
}


/* ── MOBILE GALLERY — SWIPER ─────────────────────────── */

.cwg-gallery-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cwg-gallery-mobile {
    display: block;
  }
}

.cwg-mobile-swiper {
  width: 100%;
  padding: 0 16px !important;
  overflow: hidden;
  box-sizing: border-box;
}

.cwg-mobile-swiper .swiper-wrapper {
  align-items: stretch;
}

.cwg-mobile-slide {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cwg-offwhite);
}

.cwg-mobile-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide old gallery elements that should no longer render */
.cwg-watch-gallery__thumbs,
.cwg-watch-gallery__main,
.cwg-gallery-swiper {
  display: none !important;
}

/* =============================================================
   TIER 2 — TRUST INFRASTRUCTURE
   Tasks 1–5: Outcomes · Founder · Differentiators ·
               Process Trust · Micro Trust
   ============================================================= */

/* Force eyebrow visibility inside offwhite/section-header contexts */
.cwg-eyebrow--visible {
  display: block !important;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwg-green);
  margin-bottom: 14px;
}

/* ── TASK 1: OUTCOME CARDS (Testimonials) ────────────────── */
.cwg-outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  color: var(--cwg-black);
  margin: 0 0 12px;
  line-height: 1.2;
}

.cwg-outcomes-sub {
  font-size: 14px;
  color: var(--cwg-midgray);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.cwg-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cwg-outcome-card {
  background: var(--cwg-white);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.cwg-outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cwg-outcome-card__type {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwg-green);
}

.cwg-outcome-card__quote {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.65;
  color: var(--cwg-darkgray);
  font-style: italic;
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
}

.cwg-outcome-card__model {
  font-size: 11px;
  font-weight: 500;
  color: var(--cwg-midgray);
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

.cwg-outcome-card__attribution {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--cwg-lightgray);
}

.cwg-outcome-card__name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--cwg-darkgray);
}

.cwg-outcome-card__location {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--cwg-midgray);
}

/* ── TASK 2: FOUNDER IDENTITY ────────────────────────────── */
.cwg-founder {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 36px;
  align-items: start;
  max-width: 800px;
}

.cwg-founder__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cwg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cwg-white);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cwg-founder__name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--cwg-black);
  margin: 0 0 3px;
}

.cwg-founder__role {
  font-size: 12px;
  color: var(--cwg-midgray);
  font-family: var(--font-ui);
  margin: 0 0 18px;
}

.cwg-founder__body > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--cwg-darkgray);
  margin: 0 0 14px;
}

.cwg-founder__body > p:last-of-type {
  margin-bottom: 0;
}

.cwg-founder__signal {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cwg-green);
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── TASK 3: TRUST DIFFERENTIATORS ──────────────────────── */
.cwg-diff-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  color: var(--cwg-black);
  margin: 0 0 40px;
  line-height: 1.2;
  max-width: 480px;
}

.cwg-differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--cwg-lightgray);
  padding-top: 40px;
}

.cwg-diff-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cwg-diff-item__num {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--cwg-green);
  letter-spacing: 0.1em;
}

.cwg-diff-item__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cwg-black);
  margin: 0;
  line-height: 1.3;
}

.cwg-diff-item__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cwg-midgray);
  margin: 0;
}

/* ── TASK 4: PROCESS TRUST BLOCK (product & request pages) ── */
.cwg-process-trust {
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.cwg-process-trust__heading {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwg-green);
  margin: 0 0 18px;
}

.cwg-process-trust__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cwg-process-trust__step {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.cwg-process-trust__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cwg-green);
  color: var(--cwg-white);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cwg-process-trust__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--cwg-black);
  font-family: var(--font-ui);
  margin: 0 0 2px;
}

.cwg-process-trust__desc {
  font-size: 12px;
  color: var(--cwg-midgray);
  line-height: 1.55;
  margin: 0;
}

/* Wider variant used on request page (full-width section) */
.cwg-process-trust--wide {
  max-width: 680px;
  margin: 0 auto 0;
}

/* ── TASK 5: MICRO TRUST (below CTA) ────────────────────── */
.cwg-micro-trust {
  font-size: 12px;
  color: var(--cwg-midgray);
  font-family: var(--font-ui);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
}

.cwg-micro-trust svg {
  flex-shrink: 0;
  opacity: 0.65;
}

/* Request page micro trust — center-aligned */
.cwg-micro-trust--center {
  justify-content: center;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cwg-outcomes {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cwg-differentiators {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .cwg-founder {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }
  .cwg-founder__avatar {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  .cwg-outcomes-sub { margin-bottom: 28px; }
}

/* =============================================================
   FOUNDER — AUTHORITY 2-COLUMN VARIANT (Step 4)
   Left: image/placeholder column  Right: title + text + authority
   ============================================================= */
.cwg-founder--authority {
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 52px;
  max-width: 100%;
  align-items: center;
}

.cwg-founder--authority .cwg-founder__avatar {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  font-size: 52px;
  letter-spacing: -0.03em;
}

/* Mobile: stack vertically, image first — no overflow */
@media (max-width: 720px) {
  .cwg-founder--authority {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cwg-founder--authority .cwg-founder__avatar {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    font-size: 40px;
  }
}

/* STEP 1: Founder actual image inside authority avatar */
.cwg-founder--authority .cwg-founder__avatar .cwg-founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  display: block;
}

/* =============================================================
   STEP 2: Watch card — demand urgency + verified lines
   ============================================================= */
.cwg-watch-card__demand {
  font-size: 11px;
  font-weight: 600;
  color: var(--cwg-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 4px 0 0;
  font-family: var(--font-ui);
}

.cwg-watch-card__verified {
  font-size: 11px;
  color: rgba(27, 67, 50, 0.65);
  margin: 6px 0 0;
  font-family: var(--font-ui);
}

/* =============================================================
   STEP 4: Mobile-only hero CTA — hidden on desktop
   ============================================================= */
.cwg-hero__mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .cwg-hero__mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
  }
  .cwg-hero__mobile-cta .cwg-btn--lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }
  .cwg-hero__mobile-cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
    font-family: var(--font-ui);
  }
}

/* =============================================================
   FIX 3: Desktop-only hero CTA — hidden on mobile
   ============================================================= */
.cwg-hero__desktop-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 36px;
}
.cwg-hero__cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-family: var(--font-ui);
}
@media (max-width: 768px) {
  .cwg-hero__desktop-cta {
    display: none;
  }
}

/* =============================================================
   FIX 5: Founder specialty line
   ============================================================= */
.cwg-founder__specialty {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--cwg-midgray);
  margin: 4px 0 2px;
  letter-spacing: 0.02em;
}

/* =============================================================
   FIX 6: Mobile founder image — aspect-ratio + position
   ============================================================= */
@media (max-width: 720px) {
  .cwg-founder--authority .cwg-founder__avatar {
    height: auto;
    aspect-ratio: 4 / 5;
    margin-bottom: 20px;
  }
  .cwg-founder--authority .cwg-founder__avatar .cwg-founder__img {
    object-position: center 20%;
  }
}

/* =============================================================
   FIX 7: Watch card "Secure this piece" — enhanced visibility
   ============================================================= */
.cwg-watch-card__wa-note {
  font-weight: 600;
  color: var(--cwg-darkgray);
}

/* =============================================================
   FIX 8: Testimonial "Documentation Verified" badge
   ============================================================= */
.cwg-outcome-card__verified {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--cwg-green);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   MOBILE HERO — CRO + CLS + UX OPTIMIZATION
   Steps 1, 4–11 from Mobile Hero spec
   ALL rules are mobile-only (max-width: 768px) EXCEPT overlay fix.
   Desktop layout: UNCHANGED.
   ============================================================ */

/* Step 5: Overlay must never intercept pointer events — global, no visual impact */
.cwg-hero__overlay {
  pointer-events: none;
}

/* ── MOBILE-SCOPED RULES ───────────────────────────────────── */
@media (max-width: 768px) {

  /* Step 4: CLS protection — bounded hero height before image fully loads */
  .cwg-hero {
    min-height: 85vh !important;
    max-height: 100vh;
  }

  /* Step 6: Content structure — flex column, vertically centered */
  .cwg-hero__content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* Step 7: Typography — tight H1 per CRO spec */
  .cwg-hero h1 {
    font-size: clamp(24px, 5vw, 28px) !important;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  /* Eyebrow tighter */
  .cwg-hero__eyebrow {
    margin-bottom: 10px;
  }

  /* Hide long sub-paragraph — frees ~65–80px of vertical space for CTA */
  .cwg-hero__sub {
    display: none !important;
  }

  /* Tighten credibility */
  .cwg-hero__credibility {
    margin-bottom: 6px !important;
  }

  /* Tighten urgency */
  .cwg-hero__urgency {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
  }

  /* Step 8: Mobile CTA — reduce top gap, ensure full-width button */
  .cwg-hero__mobile-cta {
    margin-top: 0;
    gap: 8px;
  }
  .cwg-hero__mobile-cta .cwg-btn--lg {
    min-height: 52px;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}

/* Step 9: Very small height screens (iPhone SE, Galaxy A series ≤680px tall) */
@media (max-width: 768px) and (max-height: 680px) {
  .cwg-hero__eyebrow {
    display: none;
  }
  .cwg-hero__credibility {
    display: none;
  }
  .cwg-hero h1 {
    font-size: clamp(22px, 5vw, 26px) !important;
    margin-bottom: 6px;
  }
  .cwg-hero__urgency {
    margin-bottom: 12px !important;
  }
  .cwg-hero__mobile-cta {
    gap: 6px;
  }
}

/* ============================================================
   MOBILE HERO — CONVERSION REBUILD (Steps 1–11)
   All rules scoped to @media (max-width: 768px).
   Desktop layout: ZERO changes.
   ============================================================ */

/* Step 9 addition: overflow containment */
@media (max-width: 768px) {
  .cwg-hero {
    overflow-x: hidden;
  }
}

/* Step 1 + urgency: hide urgency on mobile (replaced by scarcity below CTA) */
@media (max-width: 768px) {
  .cwg-hero__urgency {
    display: none !important;
  }
}

/* Step 2: Micro authority — mobile-only, hidden on desktop */
.cwg-hero__micro-authority {
  display: none;
}

@media (max-width: 768px) {
  .cwg-hero__micro-authority {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-ui);
    line-height: 1.4;
  }
}

/* Step 4: Value proposition — mobile-only, hidden on desktop */
.cwg-hero__value-prop {
  display: none;
}

@media (max-width: 768px) {
  .cwg-hero__value-prop {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    text-align: center;
    margin: 12px 0 16px;
    max-width: 300px;
  }
}

/* Step 5: Proof strip — mobile-only, hidden on desktop */
.cwg-hero__proof {
  display: none;
}

@media (max-width: 768px) {
  .cwg-hero__proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    gap: 5px;
  }
  .cwg-hero__proof li {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.02em;
    font-family: var(--font-ui);
    text-align: center;
  }
}

/* Step 8: Scarcity — mobile-only, hidden on desktop */
.cwg-hero__scarcity {
  display: none;
}

@media (max-width: 768px) {
  .cwg-hero__scarcity {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 8px 0 0;
    font-family: var(--font-ui);
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
}

/* Step 11: Contact float — delay appearance 2.5s on mobile so CTA stays dominant */
@media (max-width: 768px) {
  .cwg-contact-float {
    opacity: 0;
    animation: cwg-wa-reveal 0.4s ease 2.5s forwards;
  }
}

@keyframes cwg-wa-reveal {
  to { opacity: 1; }
}

/* ============================================================
   DESKTOP HERO — CENTERED CONVERSION SYSTEM
   Mirrors mobile hierarchy: Authority → H1 → Value → Proof → CTA → Sub → Scarcity
   Scoped to min-width: 769px (show/hide) and min-width: 1024px (layout).
   Mobile layout (@media max-width:768px): ZERO changes.
   ============================================================ */

/* ── STEP 5.5: Hero section — viewport control on desktop ──── */
@media (min-width: 769px) {
  .cwg-hero {
    min-height: 85vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
  }
}

/* ── SHOW / HIDE CONTROL (all breakpoints ≥769px) ─────────── */
@media (min-width: 769px) {

  /* Step 1: Hide low-conversion elements — replaced by structured copy */
  .cwg-hero .cwg-hero__sub        { display: none; }
  .cwg-hero .cwg-hero__credibility { display: none; }
  .cwg-hero .cwg-hero__urgency    { display: none; }
  .cwg-hero .cwg-hero__eyebrow    { display: none; }

  /* Mobile-only elements — hidden on desktop */
  .cwg-hero .cwg-hero__mobile-cta { display: none; }

  /* Step 2: Micro authority — always visible on desktop */
  .cwg-hero__micro-authority {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-family: var(--font-ui);
  }

  /* Step 4: Value prop — always visible on desktop */
  .cwg-hero__value-prop {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0 0 20px;
  }

  /* Step 5: Proof strip — always visible on desktop */
  .cwg-hero__proof {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .cwg-hero__proof li {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    font-family: var(--font-ui);
    white-space: nowrap;
  }

  /* Step 6: Desktop CTA — centered, clear vertical isolation */
  .cwg-hero__desktop-cta {
    margin-top: 20px;
    margin-bottom: 12px;
    align-items: center;
  }
  .cwg-hero__cta-note {
    text-align: center;
  }

  /* Step 7: Scarcity — always visible on desktop */
  .cwg-hero__scarcity {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
    font-family: var(--font-ui);
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
}

/* ── STEP 2: LAYOUT CONTROL (1024px+ desktop) ─────────────── */
@media (min-width: 1024px) {

  /* Step 2: Content — centered column, expanded max-width for breathing room */
  .cwg-hero .cwg-hero__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Step 3: All direct children max-width — preserves readable line length */
  .cwg-hero .cwg-hero__content > * {
    max-width: 750px;
    width: 100%;
  }

  /* Step 3 exception: proof strip uses its own horizontal layout */
  .cwg-hero .cwg-hero__content > .cwg-hero__proof {
    max-width: 100%;
  }

  /* H1: restore desktop scale, centered */
  .cwg-hero h1 {
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 20px;
    text-align: center;
    max-width: 100%;
  }
  .cwg-hero h1 em {
    display: block;
  }
}

/* ── STEP 8: TABLET SAFETY (769px–1023px) ─────────────────── */
@media (min-width: 769px) and (max-width: 1023px) {

  .cwg-hero .cwg-hero__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .cwg-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    text-align: center;
  }

  .cwg-hero__value-prop {
    font-size: 14px;
  }

  /* Proof — stack vertically on narrow tablet if needed */
  .cwg-hero__proof {
    gap: 12px;
  }
}

/* ── STEP 4: ULTRA-WIDE SCREEN CONTROL (1600px+) ──────────── */
@media (min-width: 1600px) {
  .cwg-hero .cwg-hero__content {
    max-width: 880px;
  }
}

/* ════════════════════════════════════════════════════════════
   BUG FIX: CTA VISIBILITY IN LISTING GRIDS
   Two unscoped redesign blocks earlier in this file apply
   display:none !important to .cwg-watch-card__actions globally.
   Those rules were intended for single-watch related cards.
   This override restores CTA visibility in all listing contexts.
   ════════════════════════════════════════════════════════════ */

/* Filter fallback notice */
.bzl-filter-notice {
  background: var(--cwg-offwhite);
  border-top: 1px solid var(--cwg-lightgray);
  border-bottom: 1px solid var(--cwg-lightgray);
  padding: 10px 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--cwg-midgray);
}
.bzl-filter-notice a {
  color: var(--cwg-green);
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
}

/* Homepage listings grid */
.cwg-watches-grid .cwg-watch-card__actions {
  display: flex !important;
  gap: 8px;
}

/* Archive listings grid (belt-and-suspenders — not affected by
   the hidden rules above, but kept here for parity) */
.bzl-grid .bzl-card__actions {
  display: flex !important;
}

/* ════════════════════════════════════════════════════════════
   MOBILE FIX: WATCH CARD CTA STACKING (≤768px)
   Scope: homepage carousel cards + archive grid cards only.
   Desktop is completely unaffected.

   Root cause A (homepage): the carousel override at line ~2592
   resets flex-direction to row and width to auto inside the
   same @media (max-width:768px) block, undoing the column
   stacking set earlier. white-space:nowrap on .cwg-btn causes
   "Request This Watch" to overflow the 280px carousel card.

   Root cause B (archive): .bzl-card__actions has no mobile
   rules at all. flex:1 buttons with white-space:nowrap overflow
   at card widths below ~360px.
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── HOMEPAGE CAROUSEL CARDS ─────────────────────────────
     Uses same selectors as the carousel reset (lines 2592-2598)
     but placed LATER in the file so cascade wins without
     needing extra specificity on most rules.
     !important is used only where the carousel reset used it. */
  .cwg-home .cwg-watches-grid .cwg-watch-card__actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px;
  }

  .cwg-home .cwg-watches-grid .cwg-watch-card__actions .cwg-btn {
    width: 100% !important;
    min-height: 44px !important;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex: none;
  }

  /* ── ARCHIVE GRID CARDS ──────────────────────────────────
     No prior mobile rules exist for these selectors — no
     !important required; plain declarations are sufficient. */
  .bzl-grid .bzl-card__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .bzl-grid .bzl-card__actions .bzl-card__btn {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex: none;
  }

  /* ── CARD CONTAINER PROTECTION (Step 7) ─────────────────
     Ensure neither card clips overflowing stacked buttons. */
  .cwg-home .cwg-watches-grid .cwg-watch-card {
    overflow: visible;
  }

  /* ── WHATSAPP FLOAT CLEARANCE (Step 8) ──────────────────
     Mobile sticky CTA bar is 64px tall; cards near the bottom
     of the viewport already have padding-bottom on the section.
     No additional spacing needed — confirmed by existing rule:
     .cwg-home #cwg-main-content { padding-bottom: 80px; }    */

}


/* ── EDITORIAL TEXT BLOCK (SEO content sections) ──────────── */
.cwg-editorial {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.cwg-editorial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cwg-editorial p {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.8;
  color: var(--cwg-darkgray);
  margin-bottom: 1.1em;
}

.cwg-editorial p:last-child {
  margin-bottom: 0;
}

/* ── LONG DESCRIPTION SECTION (single watch SEO) ───────────── */
.cwg-long-description {
  border-top: 1px solid var(--cwg-lightgray);
}

.cwg-long-description__inner {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.8;
  color: var(--cwg-darkgray);
}

/* Headings inside long description */
.cwg-long-description__inner h1,
.cwg-long-description__inner h2,
.cwg-long-description__inner h3,
.cwg-long-description__inner h4 {
  font-family: var(--font-display);
  color: var(--cwg-black);
  margin: 2em 0 0.5em;
  line-height: 1.3;
}

.cwg-long-description__inner h2 { font-size: clamp(20px, 2.5vw, 28px); }
.cwg-long-description__inner h3 { font-size: clamp(17px, 2vw, 22px); }
.cwg-long-description__inner h4 { font-size: 17px; }

.cwg-long-description__inner p {
  margin: 0 0 1.2em;
}

.cwg-long-description__inner p:last-child {
  margin-bottom: 0;
}

.cwg-long-description__inner ul,
.cwg-long-description__inner ol {
  padding-left: 1.5em;
  margin: 0 0 1.2em;
}

.cwg-long-description__inner li {
  margin-bottom: 0.4em;
}

.cwg-long-description__inner a {
  color: var(--cwg-green);
  text-decoration: underline;
}

.cwg-long-description__inner strong {
  font-weight: 600;
  color: var(--cwg-black);
}

/* ── SINGLE WATCH PAGE — HOVER EFFECTS ────────────────────── */

/* Detail sections: Accessories, Condition, Details, Shipping, Returns */
.cwg-detail-section {
  border-radius: var(--radius-md);
  padding: 20px 18px !important;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out, background 220ms ease-out;
  will-change: transform;
}

.cwg-detail-section:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* Process trust block: "How this works" */
.cwg-process-trust {
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.cwg-process-trust:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* Quick-glance info cells */
.cwg-info-cell {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out !important;
  will-change: transform;
}

.cwg-info-cell:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
}

/* Condition cards */
.cwg-cond-item__card {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
  will-change: transform;
}

.cwg-cond-item__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Concierge block */
.cwg-concierge {
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.cwg-concierge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* ── REQUEST PAGE ──────────────────────────────────────────── */

/* Hero */
.cwg-req-hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--cwg-darkgray);
  max-width: 560px;
  margin: 12px 0 0;
  line-height: 1.6;
}

/* Trust chips */
.cwg-req-chips-section { padding: 28px 0 !important; }

.cwg-req-trust-chips {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cwg-req-trust-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.cwg-req-trust-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.cwg-req-trust-chip svg {
  stroke: var(--cwg-green);
  flex-shrink: 0;
}

.cwg-req-trust-chip strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--cwg-black);
  margin-bottom: 2px;
}

.cwg-req-trust-chip span {
  font-size: 12px;
  color: var(--cwg-midgray);
  line-height: 1.4;
}

/* Social proof bar */
.cwg-req-proof-bar {
  background: var(--cwg-green);
  padding: 32px 0;
}

.cwg-req-proof-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cwg-req-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  flex: 1;
  min-width: 160px;
  transition: transform 220ms ease-out, background 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.cwg-req-proof-stat:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.cwg-req-proof-stat strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.cwg-req-proof-stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

.cwg-req-proof-divider {
  display: none;
}

/* Form title */
.cwg-req-form-title {
  font-size: 28px;
  margin-bottom: 8px;
}

/* Sidebar card */
.cwg-req-sidebar-card {
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.cwg-req-sidebar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.cwg-req-sidebar-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.cwg-req-sidebar-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cwg-req-sidebar-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cwg-req-sidebar-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(27,67,50,0.08);
  color: var(--cwg-green);
  flex-shrink: 0;
}

.cwg-req-sidebar-point strong {
  font-size: 15px;
  color: var(--cwg-black);
  display: block;
  margin-bottom: 3px;
}

.cwg-req-sidebar-point span {
  font-size: 13px;
  color: var(--cwg-midgray);
}

.cwg-req-sidebar-tagline {
  margin-top: 20px;
  padding: 14px;
  background: rgba(27,67,50,0.05);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--cwg-midgray);
}

.cwg-req-sidebar-wa {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cwg-lightgray);
}

.cwg-req-sidebar-wa p {
  font-size: 13px;
  color: var(--cwg-midgray);
  margin-bottom: 12px;
}

/* Process section */
.cwg-req-process {
  max-width: 860px;
  margin: 0 auto;
}

.cwg-req-process__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--cwg-black);
  margin-bottom: 36px;
  text-align: center;
}

/* WhatsApp exit ramp */
.cwg-req-wa-section {
  background: var(--cwg-black);
  padding: 56px 0;
}

.cwg-req-wa-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cwg-req-wa-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.cwg-req-wa-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cwg-req-trust-chips { gap: 10px; }
  .cwg-req-trust-chip { min-width: calc(50% - 5px); padding: 12px 14px; }
  .cwg-req-proof-bar__inner { gap: 10px; }
  .cwg-req-proof-stat { padding: 14px 20px; min-width: calc(50% - 5px); }
  .cwg-req-proof-divider { display: none; }
  .cwg-req-sidebar-card { padding: 24px; }
  .cwg-req-wa-inner { flex-direction: column; text-align: center; }
  .cwg-req-wa-inner .cwg-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .cwg-req-trust-chip { min-width: 100%; }
}

/* ── HOW IT WORKS — MID-PAGE CTA ──────────────────────────── */
.cwg-hiw-mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--cwg-offwhite);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.cwg-hiw-mid-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.cwg-hiw-mid-cta__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--cwg-black);
  margin-bottom: 8px;
}

.cwg-hiw-mid-cta__sub {
  font-size: 16px;
  color: var(--cwg-midgray);
  max-width: 420px;
  line-height: 1.6;
}

.cwg-hiw-mid-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cwg-hiw-mid-cta {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cwg-hiw-mid-cta__actions {
    width: 100%;
    flex-direction: column;
  }
  .cwg-hiw-mid-cta__actions .cwg-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── TRADE FORM GROUPS ─────────────────────────────────────── */
.cwg-trade-group {
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.cwg-trade-group__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin: 0 0 16px;
}

/* ── MODEL PAGES GRID ──────────────────────────────────────── */
.cwg-model-grid {
  margin-top: 40px;
  border-top: 1px solid var(--cwg-lightgray);
  padding-top: 32px;
}

.cwg-model-grid__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cwg-midgray);
  margin: 0 0 18px;
}

.cwg-model-grid__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cwg-model-grid__pill {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--cwg-darkgray);
  text-decoration: none;
  background: var(--cwg-offwhite);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
}

.cwg-model-grid__pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
  border-color: rgba(0, 0, 0, 0.18);
}


/* ═══════════════════════════════════════════════════════════
   CWG REDESIGN v4 — PREMIUM TEXTURE & POLISH
   ═══════════════════════════════════════════════════════════ */

/* 1. Brand-tinted shadows — replace pure black with warm green-dark tint */
:root {
  --shadow-card:    0 2px 16px rgba(10,15,10,0.05);
  --shadow-hover:   0 8px 32px rgba(10,15,10,0.10);
}

/* Override v3 hardcoded card hover shadow */
.cwg-watch-card:hover {
  box-shadow: 0 4px 28px rgba(10,15,10,0.10) !important;
}

.cwg-service-card:hover,
.bzl-card:hover {
  box-shadow: 0 8px 36px rgba(10,15,10,0.10) !important;
}


/* 3. Hero overlay — cinematic left-to-right gradient, content-side dark */
@media (min-width: 769px) {
  .cwg-hero__overlay {
    background:
      linear-gradient(to right, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.30) 65%, rgba(10,10,10,0.08) 100%),
      linear-gradient(to top,   rgba(10,10,10,0.40) 0%, transparent 40%) !important;
  }
}

/* 4. Balanced text wrap — prevents orphaned words on all key headings */
h1, h2, h3, h4,
.cwg-section-title,
.cwg-page-hero h1 {
  text-wrap: balance;
}

/* 5. Tabular figures on all price displays */
.cwg-watch-card__price,
.bzl-card__price,
.cwg-watch-info__price {
  font-variant-numeric: tabular-nums;
}

/* 6. Eyebrow — thin left-bar anchor for non-hidden eyebrows */
.cwg-hero__eyebrow,
.cwg-cta-banner .cwg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* 7. Steps CTA heading — replace inline style with class */
.cwg-steps-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cwg-black);
  margin: 0 0 20px;
}

/* ── 15. GUIDE / LOCATION PAGES (Saudi Arabia city pages) ─────────── */

/* Body wrapper — clear fixed nav + breathing room */
.cwg-guide-body {
  padding: 48px 0 80px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Content container — narrower than full for readability */
.cwg-guide-container {
  max-width: 820px;
}

/* Hero overrides for Arabic guide pages — remove English width cap, align RTL */
.cwg-guide .cwg-page-hero p,
.cwg-guide .cwg-page-hero .cwg-page-subtitle {
  max-width: 100%;
}

.cwg-guide .cwg-page-hero h1[dir="rtl"],
.cwg-guide .cwg-page-hero p[dir="rtl"] {
  text-align: right;
}

/* Section spacing */
.cwg-guide-section {
  margin-bottom: 52px;
}

.cwg-guide-section > h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--cwg-black);
}

.cwg-guide-section > h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cwg-black);
}

/* Answer block — RTL friendly (border on right) */
.cwg-answer-block {
  background: var(--cwg-offwhite);
  border-right: 3px solid var(--cwg-green);
  border-left: none;
  padding: 18px 20px 18px 16px;
  margin-bottom: 32px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* Stats block — 3-col grid */
.cwg-stat-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  padding: 28px 24px;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-md);
  border: 1px solid var(--cwg-lightgray);
}

.cwg-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cwg-stat-figure {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--cwg-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cwg-stat-label {
  font-size: 13px;
  color: var(--cwg-midgray);
  line-height: 1.5;
}

/* Comparison table — horizontally scrollable on mobile */
.cwg-comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
}

.cwg-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 540px;
}

.cwg-comparison-table thead th {
  background: var(--cwg-offwhite);
  padding: 12px 16px;
  text-align: start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--cwg-midgray);
  border-bottom: 1px solid var(--cwg-lightgray);
  white-space: nowrap;
}

.cwg-comparison-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--cwg-lightgray);
  vertical-align: top;
  line-height: 1.55;
}

.cwg-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.cwg-comparison-table tbody tr:hover td {
  background: var(--cwg-offwhite);
}

/* Process steps (inside guide) */
.cwg-guide-section .cwg-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
}

.cwg-guide-section .cwg-step:first-of-type {
  border-top: 1px solid var(--cwg-lightgray);
}

.cwg-guide-section .cwg-step::before {
  display: none; /* hide counter from .cwg-steps global */
}

.cwg-step-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cwg-green);
  min-width: 44px;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
}

.cwg-step-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cwg-black);
}

/* FAQ items */
.cwg-guide-faq .cwg-faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
}

.cwg-guide-faq .cwg-faq-item:last-child {
  border-bottom: none;
}

.cwg-guide-faq .cwg-faq-item h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--cwg-black);
}

/* CTA section — full-bleed dark strip (sits outside cwg-container) */
.cwg-guide-cta {
  background: var(--cwg-black);
  padding: 64px var(--gutter);
  text-align: right;
}

.cwg-guide-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.cwg-guide-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--cwg-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.cwg-guide-cta p {
  color: rgba(255,255,255,0.68);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
}

.cwg-guide-cta .cwg-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Mobile adjustments for guide pages */
@media (max-width: 768px) {
  .cwg-guide-body {
    padding: 32px 0 60px;
  }

  /* Restore adequate side padding — overrides the global 16px mobile rule */
  .cwg-guide .cwg-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cwg-stat-block {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }

  .cwg-guide-cta {
    padding: 40px 20px;
    text-align: center;
  }

  .cwg-guide-cta p {
    margin-left: 0;
    margin-right: 0;
  }

  .cwg-guide-cta .cwg-cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cwg-step-number {
    font-size: 22px;
    min-width: 36px;
  }
}

@media (max-width: 480px) {
  .cwg-stat-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/* ═══════════════════════════════════════════════════════════
   CWG ANIMATE v1 — ENTRANCE CHOREOGRAPHY & MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Easing tokens ──────────────────────────────────────────── */
:root {
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 1. Hero entrance keyframe ──────────────────────────────── */
@keyframes cwg-hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered entrance — each hero element enters in sequence.
   animation-fill-mode: both keeps elements invisible until their
   delay fires, preventing a flash of visible content on load. */
@media (prefers-reduced-motion: no-preference) {
  .cwg-hero__micro-authority,
  .cwg-hero__eyebrow,
  .cwg-hero__content > h1,
  .cwg-hero__value-prop,
  .cwg-hero__credibility,
  .cwg-hero__sub,
  .cwg-hero__urgency,
  .cwg-hero__proof,
  .cwg-hero__txn-signal,
  .cwg-hero__desktop-cta,
  .cwg-hero__mobile-cta,
  .cwg-hero__scarcity {
    animation: cwg-hero-in 0.72s var(--ease-out-quint) both;
  }

  /* Desktop: eyebrow opens first, h1 follows, then content cascades */
  .cwg-hero__eyebrow         { animation-delay: 0ms; }
  .cwg-hero__micro-authority { animation-delay: 0ms; }
  .cwg-hero__content > h1    { animation-delay: 110ms; }
  .cwg-hero__value-prop      { animation-delay: 230ms; }
  .cwg-hero__credibility     { animation-delay: 270ms; }
  .cwg-hero__sub             { animation-delay: 290ms; }
  .cwg-hero__urgency         { animation-delay: 310ms; }
  .cwg-hero__proof           { animation-delay: 370ms; }
  .cwg-hero__txn-signal      { animation-delay: 410ms; }
  .cwg-hero__desktop-cta     { animation-delay: 460ms; }
  .cwg-hero__mobile-cta      { animation-delay: 460ms; }
  .cwg-hero__scarcity        { animation-delay: 560ms; }
}

/* ── 2. Button active/press — tactile click feedback ────────── */
/* Quick scale-down on press; override the hover lift so the
   animation always starts from a predictable base position.   */
.cwg-btn:active {
  transform: scale(0.97) !important;
  transition-duration: 80ms !important;
}

/* ── 3. Form input focus — subtle green ring ────────────────── */
/* Complements the existing border-color transition without
   touching the :focus-visible accessibility outline.           */
.cwg-form-field input:focus,
.cwg-form-field select:focus,
.cwg-form-field textarea:focus {
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.09);
}

/* ── 4. Modal entrance — scale for cinematic depth ─────────── */
/* Replaces the flat translateY(20px) with a combined
   scale + lift so the panel feels like it rises into view.     */
.cwg-modal {
  transform: translateY(14px) scale(0.98) !important;
  transition: transform 0.42s var(--ease-out-expo) !important;
}
.cwg-modal-overlay.open .cwg-modal {
  transform: translateY(0) scale(1) !important;
}

/* ── Reduced motion — disable all new animations ───────────── */
@media (prefers-reduced-motion: reduce) {
  .cwg-hero__micro-authority,
  .cwg-hero__eyebrow,
  .cwg-hero__content > h1,
  .cwg-hero__value-prop,
  .cwg-hero__credibility,
  .cwg-hero__sub,
  .cwg-hero__urgency,
  .cwg-hero__proof,
  .cwg-hero__txn-signal,
  .cwg-hero__desktop-cta,
  .cwg-hero__mobile-cta,
  .cwg-hero__scarcity {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cwg-modal,
  .cwg-modal-overlay.open .cwg-modal {
    transform: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* ══════════════════════════════════════════════════════════════════
   CINEMATIC HERO — FULL-BLEED PREMIUM LAYOUT
   Modifier: .cwg-hero--cinematic
   ══════════════════════════════════════════════════════════════════ */

/* 1. Full viewport height — stretch container to full height so flex-end anchors correctly.
      padding-top:0 overrides the base hero's 72px which would otherwise eat into the
      content area and cause bottom-anchoring to mis-fire. */
.cwg-hero--cinematic {
  align-items: stretch;
  padding-top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #0A0A0A; /* fallback while video buffers on desktop */
}


/* 2. Bottom-up gradient — 5-stop cinematic curve, smooth falloff */
.cwg-hero--cinematic .cwg-hero__overlay {
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(5, 5, 5, 0.86) 18%,
    rgba(5, 5, 5, 0.52) 42%,
    rgba(5, 5, 5, 0.14) 70%,
    rgba(5, 5, 5, 0.00) 100%
  );
}

/* 3. Container spans full hero height (align-items:stretch on parent).
      padding-top clears the fixed header; content starts just below the nav. */
.cwg-hero--cinematic .cwg-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding-top: 90px;
  padding-left: clamp(32px, 5vw, 80px);
  padding-right: 0;
}

/* 3b. Content block — flex column filling remaining container height.
        margin-top:auto on the CTA (rule 8) pins it to the bottom while
        the editorial copy stays top-anchored.
        Overrides mobile rules: text-align:center, display:flex, align-items:center */
.cwg-hero--cinematic .cwg-hero__content {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  text-align: left !important;
  max-width: 620px;
  width: 100%;
  padding-bottom: 62px;
}

/* 4. Eyebrow — gold accent line + text, left-anchored */
.cwg-hero--cinematic .cwg-hero__eyebrow {
  display: inline-flex;
  justify-content: flex-start !important;
  color: var(--cwg-gold);
  margin-bottom: 20px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
}
.cwg-hero--cinematic .cwg-hero__eyebrow::before {
  background: var(--cwg-gold);
  opacity: 0.75;
  flex-shrink: 0;
}

/* 5. Headline — cinematic scale, optical line-height for dark backgrounds */
.cwg-hero--cinematic h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1.08;   /* +0.03 vs tight setting — light text on dark reads lighter */
  margin-bottom: 24px;
  text-align: left;
}
.cwg-hero--cinematic h1 em {
  color: rgba(255, 255, 255, 0.52);
}

/* 6. Sub paragraph — force visible on desktop, controlled measure */
.cwg-hero--cinematic .cwg-hero__sub {
  display: block !important;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.70;
  max-width: 500px;
  margin: 0 0 24px;
  text-align: left;
}

/* 7. Proof strip — horizontal, gold checkmark via ::before, left-aligned */
.cwg-hero--cinematic .cwg-hero__proof {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  gap: 4px 24px;
}
.cwg-hero--cinematic .cwg-hero__proof li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  white-space: nowrap;
}
.cwg-hero--cinematic .cwg-hero__proof li::before {
  content: '✓';
  color: var(--cwg-gold);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* 8. Desktop CTA — pinned to bottom of the content flex column via margin-top:auto.
      This creates the editorial split: info at top, action at bottom. */
.cwg-hero--cinematic .cwg-hero__desktop-cta {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
}
.cwg-hero--cinematic .cwg-hero__desktop-cta .cwg-btn {
  width: auto !important;
  min-width: 220px;
  align-self: flex-start;
  justify-content: center;
}
.cwg-hero--cinematic .cwg-hero__desktop-cta .cwg-btn:focus-visible {
  outline: 2px solid var(--cwg-gold);
  outline-offset: 3px;
}
.cwg-hero--cinematic .cwg-hero__cta-note {
  text-align: left;
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.48);
}

/* 9. Mobile — content pinned to bottom of hero */
@media (max-width: 768px) {
  .cwg-hero--cinematic .cwg-container {
    padding-top: 0;
    padding-left: var(--gutter, 24px);
    padding-right: var(--gutter, 24px);
  }
  .cwg-hero--cinematic .cwg-hero__content {
    flex: 0 0 auto;       /* natural height — no fill */
    margin-top: auto;     /* push entire content block to the bottom */
    padding-bottom: 48px;
    max-width: 100%;
  }
  .cwg-hero--cinematic .cwg-hero__desktop-cta {
    margin-top: 0; /* reset desktop rule — whole block is already at bottom */
  }
  .cwg-hero--cinematic h1 {
    font-size: clamp(32px, 9vw, 48px) !important;
    margin-bottom: 14px;
  }
  .cwg-hero--cinematic .cwg-hero__sub {
    display: none !important;
  }
  .cwg-hero--cinematic .cwg-hero__proof {
    gap: 4px 16px;
    margin-bottom: 20px;
  }
  .cwg-hero--cinematic .cwg-hero__desktop-cta {
    display: none !important;
  }
}

/* ── RELATED WATCHES SLIDER ──────────────────────────────── */

.cwg-rw-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cwg-rw-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--cwg-border);
  border-radius: 50%;
  background: transparent;
  color: var(--cwg-darkgray);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
  padding: 0;
}

.cwg-rw-nav__btn:hover {
  border-color: var(--cwg-green);
  color: var(--cwg-green);
}

.cwg-rw-nav__btn:focus-visible {
  outline: 2px solid var(--cwg-gold);
  outline-offset: 3px;
}

.cwg-rw-nav__btn:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.cwg-rw-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cwg-rw-track::-webkit-scrollbar {
  display: none;
}

.cwg-rw-track .cwg-watch-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 220px;
  scroll-snap-align: start;
  width: auto;
}

@media (max-width: 1024px) {
  .cwg-rw-track .cwg-watch-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .cwg-rw-track {
    gap: 16px;
  }
  .cwg-rw-track .cwg-watch-card {
    flex: 0 0 280px;
  }
}
