/* ============================================
   BEZEL BOYS — Design System & Global Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colours */
  --color-primary: #006039;
  --color-primary-dark: #004d2e;
  --color-primary-light: #007a49;
  --color-white: #ffffff;
  --color-off-white: #f8f8f7;
  --color-silver: #c4c4c4;
  --color-light-grey: #e8e8e6;
  --color-mid-grey: #999999;
  --color-dark-grey: #2a2a2a;
  --color-black: #111111;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-green-tint: rgba(0, 96, 57, 0.06);
  --color-green-glow: rgba(0, 96, 57, 0.25);

  /* Typography */
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;
  --text-hero: clamp(3rem, 8vw, 7rem);

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* Layout */
  --max-width: 1400px;
  --max-width-narrow: 900px;
  --nav-height: 72px;
  --border-radius: 4px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}



body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

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

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

.section--green {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, #007a49 100%);
  color: var(--color-white);
}

.section--offwhite {
  background-color: #f2f7f4;
}

.text-center { text-align: center; }
.text-upper { text-transform: uppercase; }
.text-accent { font-family: var(--font-accent); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-mid-grey);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle--center {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 36px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 96, 57, 0.3);
}

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

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

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

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

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

.btn--white:hover {
  background-color: var(--color-off-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 18px 48px;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--text-xs);
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 9997;
  transition: all var(--transition-base);
  background-color: transparent;
}

.nav--scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav--scrolled .nav__logo,
.nav--scrolled .nav__link {
  color: var(--color-black);
}

.nav--scrolled .nav__icon svg {
  stroke: var(--color-black);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.nav__logo span {
  font-weight: var(--weight-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: currentColor;
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.nav__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
  stroke-width: 1.5;
  fill: none;
  transition: stroke var(--transition-base);
}


/* Mobile Menu Toggle */
.nav__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
  position: relative;
}

.nav__menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
}

.nav--scrolled .nav__menu-toggle span {
  background-color: var(--color-black);
}

.nav__menu-toggle--active span,
.nav--scrolled .nav__menu-toggle--active span {
  background-color: var(--color-white) !important;
}

.nav__menu-toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.nav__menu-toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__menu-toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, var(--color-primary-dark) 100%);
  opacity: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 96, 57, 0.15) 0%, transparent 60%);
}

/* Minimal Hero Variant */
.hero--minimal {
  background-color: var(--color-white);
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
}

/* Split Hero Variant */
.hero--split {
  background-color: var(--color-black);
  background: linear-gradient(160deg, #060808 0%, #09160e 30%, #0d2318 60%, #071510 100%);
  display: block;
  min-height: 100vh;
  position: relative;
}

.hero--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0, 96, 57, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 60, 35, 0.12) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
  padding: 0 var(--space-lg);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero-split__text {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.hero-split__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  opacity: 0;
  transform: translateX(30px);
  animation: heroImageIn 1s ease forwards 0.6s;
}

.hero-split__image-inner {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #0e1f16 0%, #091510 50%, #050d08 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 160, 80, 0.1);
  box-shadow: inset 0 0 100px rgba(0, 60, 30, 0.4), 0 0 60px rgba(0, 0, 0, 0.5);
}

.hero-split__image-inner::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 96, 57, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split__image-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 100, 0.3), transparent);
}

.hero-split__trust {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.6s ease forwards 1.1s;
}

.hero-split__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-silver);
}

@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-4xl) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__content--centered {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg) var(--space-xl);
}

.hero__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-primary-light);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero__label--dark {
  color: var(--color-primary);
}

.hero__title {
  font-size: var(--text-hero);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: 0.95;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero__title--dark {
  color: var(--color-black);
}

.hero__title em {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: var(--weight-regular);
  color: var(--color-primary-light);
}

.hero__title--dark em {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-silver);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero__subtitle--dark {
  color: var(--color-mid-grey);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero__actions--centered {
  justify-content: center;
}

/* Hero Watch Image (centered variant) */
.hero__image-showcase {
  display: flex;
  justify-content: center;
  padding: var(--space-lg) 0 var(--space-3xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 1s;
}

.hero__watch-image {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.hero__watch-image::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--color-light-grey);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-silver);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.hero__scroll--dark {
  color: var(--color-mid-grey);
}

.hero__scroll--dark .hero__scroll-line {
  background: linear-gradient(to bottom, var(--color-mid-grey), transparent);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-silver), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* --- Product Card --- */
.product-card {
  position: relative;
  cursor: pointer;
  group: true;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: var(--color-off-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.product-card:hover .product-card__overlay {
  background: rgba(0, 0, 0, 0.1);
}

.product-card__quick-view {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 4px 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.product-card__brand {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-mid-grey);
  margin-bottom: 4px;
}

.product-card__name {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  margin-bottom: 6px;
}

.product-card__ref {
  font-size: var(--text-xs);
  color: var(--color-mid-grey);
  margin-bottom: var(--space-xs);
}

.product-card__price {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

.product-card__price--old {
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
  text-decoration: line-through;
  font-weight: var(--weight-regular);
  margin-left: var(--space-xs);
}

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* --- Trust Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.trust-item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.trust-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-primary);
}

.trust-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.trust-item__title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.trust-item__text {
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--border-radius);
  transition: box-shadow var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__text {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-dark-grey);
}

.testimonial-card__author {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--color-mid-grey);
}

/* --- Banner / CTA --- */
.banner {
  position: relative;
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.banner__content {
  position: relative;
  z-index: 2;
}

.banner__title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.banner__text {
  font-size: var(--text-md);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  opacity: 0.85;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-lg);
  border-top: 3px solid var(--color-primary);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-text {
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
  line-height: 1.7;
  max-width: 320px;
  margin-top: var(--space-md);
}

.footer__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

.footer__link {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  color: var(--color-mid-grey);
}

.footer__bottom-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__trademark {
  font-size: 11px;
  color: var(--color-mid-grey);
  margin-top: 6px;
  max-width: 600px;
  line-height: 1.5;
}

/* --- Animations --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(160deg, #060808 0%, #09160e 40%, #0d2318 70%, #071510 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 96, 57, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 60, 35, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-primary);
}

.page-header__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.page-header__breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
}

.page-header__breadcrumb a {
  color: var(--color-mid-grey);
  transition: color var(--transition-fast);
}

.page-header__breadcrumb a:hover {
  color: var(--color-white);
}

.page-header__breadcrumb span {
  color: var(--color-white);
}

/* --- Shop Page --- */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.shop-controls__count {
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
}

.shop-controls__filters {
  display: flex;
  gap: var(--space-sm);
}

.filter-btn {
  padding: 8px 20px;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--color-light-grey);
  border-radius: 100px;
  background: transparent;
  color: var(--color-dark-grey);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn--logo {
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filter-btn--logo svg {
  height: 18px;
  width: auto;
  display: block;
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}

.filter-btn--logo:hover svg,
.filter-btn--logo.filter-btn--active svg {
  opacity: 1;
}

.filter-btn:hover,
.filter-btn--active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(0, 96, 57, 0.04);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
}

.shop-sort select {
  border: 1px solid var(--color-light-grey);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  color: var(--color-dark-grey);
  cursor: pointer;
}

/* --- Product Page --- */
.product-page {
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  background-color: var(--color-off-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--space-md);
  cursor: zoom-in;
  position: relative;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-gallery__thumb {
  aspect-ratio: 1 / 1;
  background-color: var(--color-off-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.product-gallery__thumb--active {
  border-color: var(--color-primary);
}

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

.product-info__brand {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-mid-grey);
  margin-bottom: var(--space-xs);
}

.product-info__name {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.product-info__ref {
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
  margin-bottom: var(--space-lg);
}

.product-info__price {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-light-grey);
}

.product-info__description {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-dark-grey);
  margin-bottom: var(--space-xl);
}

.product-info__specs {
  margin-bottom: var(--space-xl);
}

.product-spec {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-light-grey);
  font-size: var(--text-sm);
}

.product-spec__label {
  color: var(--color-mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--text-xs);
}

.product-spec__value {
  font-weight: var(--weight-medium);
}

.product-info__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-info__actions .btn {
  flex: 1;
}

.product-info__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-dark-grey);
}

.product-trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* --- About Page --- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-hero__image {
  aspect-ratio: 4 / 5;
  background-color: var(--color-off-white);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.about-value {
  padding: var(--space-xl);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--border-radius);
}

.about-value__number {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.about-value__title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.about-value__text {
  font-size: var(--text-sm);
  color: var(--color-mid-grey);
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-dark-grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--color-light-grey);
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  color: var(--color-black);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  padding: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-light-grey);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.contact-info__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-mid-grey);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
}


/* --- Image Zoom Modal --- */
.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.zoom-modal--active {
  opacity: 1;
  visibility: visible;
}

.zoom-modal img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* ============================================
   Responsive Design
   ============================================ */

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

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

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

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .product-page__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .product-gallery {
    position: static;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

/* Mobile nav overlay — global so it works at any scroll position */
.nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 9997;
}

.nav__overlay--active {
  display: block;
}

@media (max-width: 768px) {

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    z-index: 9998;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .nav__links--active {
    display: flex;
  }

  .nav__links--active .nav__link {
    color: var(--color-white);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav__menu-toggle {
    display: flex;
  }

  .hero__content {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
  }

  .hero__subtitle {
    margin: 0 auto var(--space-xl);
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__watch-image {
    width: 240px;
    height: 240px;
  }

  .hero__image-showcase {
    padding: var(--space-sm) 0 var(--space-xl);
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--space-md);
    padding: 0 var(--space-md);
  }

  .hero-split__text {
    text-align: center;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: 0;
  }

  .hero-split__text .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-split__text .hero__actions {
    justify-content: center;
  }

  .hero-split__image {
    padding-top: 0;
    padding-bottom: var(--space-xl);
  }

  .hero-split__image-inner {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .hero-split__trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

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

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }

  .footer__title {
    margin-bottom: var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer__bottom-top {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .footer__bottom p:nth-child(2) {
    order: 3;
    font-size: 10px;
    line-height: 1.5;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .contact-info {
    padding: var(--space-md) 0;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

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

  .shop-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-controls__filters {
    flex-wrap: wrap;
  }

  .product-info__actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .btn--lg {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__brand-text {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .footer__bottom-top {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .footer__trademark {
    font-size: 10px;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* ============================================
   ENHANCEMENTS — Rolex Green Throughout
   ============================================ */

/* --- Brand Marquee Ticker --- */
.marquee-section {
  background-color: var(--color-primary);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-xl);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Stats Section --- */
.stats-section {
  background-color: var(--color-black);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.stat-item__number {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-primary-light);
  font-family: var(--font-accent);
  font-style: italic;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-mid-grey);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  background-color: #20c05a;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- Enhanced Trust Item Icons --- */
.trust-item__icon-wrap {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(0, 96, 57, 0.1) 0%, rgba(0, 96, 57, 0.04) 100%);
  border: 1px solid rgba(0, 96, 57, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: all var(--transition-base);
}

.trust-item:hover .trust-item__icon-wrap {
  background: linear-gradient(135deg, rgba(0, 96, 57, 0.18) 0%, rgba(0, 96, 57, 0.08) 100%);
  border-color: rgba(0, 96, 57, 0.35);
  transform: translateY(-3px);
}

.trust-item__icon-wrap .trust-item__icon {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* --- Enhanced Testimonials --- */
.testimonial-card {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-accent);
  font-size: 8rem;
  color: var(--color-primary);
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  border-color: rgba(0, 96, 57, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 96, 57, 0.1);
  transform: translateY(-4px);
}

/* --- Button Shimmer Effect --- */
.btn--primary {
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn--primary:hover::before {
  left: 150%;
}

/* --- Product Card Enhancements --- */
.product-card__image {
  transition: box-shadow var(--transition-base);
}

.product-card:hover .product-card__image {
  box-shadow: 0 0 0 2px var(--color-primary);
}

.product-card__name {
  transition: color var(--transition-fast);
}

.product-card:hover .product-card__name {
  color: var(--color-primary);
}

/* --- Instagram Tile Hover --- */
.ig-tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 96, 57, 0);
  transition: background var(--transition-base);
}

.ig-tile:hover {
  transform: scale(1.01);
}

.ig-tile:hover::after {
  background: rgba(0, 96, 57, 0.3);
}

/* --- Sell Your Watch Section --- */
.sell-section {
  background: linear-gradient(135deg, #080808 0%, #0f0f0f 40%, #0b1c12 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-section) 0;
  color: var(--color-white);
}

.sell-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 96, 57, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.sell-grid__text .section-label {
  color: var(--color-primary-light);
}

.sell-grid__text .section-title {
  color: var(--color-white);
}

.sell-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.sell-feature__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary-light);
}

.sell-feature__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.sell-feature__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.sell-feature__text strong {
  color: var(--color-white);
  display: block;
  margin-bottom: 2px;
  font-size: var(--text-base);
}

.sell-card {
  background: linear-gradient(135deg, rgba(0, 96, 57, 0.14) 0%, rgba(0, 96, 57, 0.05) 100%);
  border: 1px solid rgba(0, 96, 57, 0.22);
  border-radius: 8px;
  padding: var(--space-3xl);
  text-align: center;
}

.sell-card__icon {
  width: 68px;
  height: 68px;
  background: rgba(0, 96, 57, 0.15);
  border: 1px solid rgba(0, 96, 57, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.sell-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary-light);
  stroke-width: 1.5;
  fill: none;
}

.sell-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.sell-card__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* --- Section Label Display --- */
.section-label {
  display: inline-block;
}

/* --- Responsive Additions --- */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }

  .sell-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .whatsapp-float {
    bottom: var(--space-lg);
    right: var(--space-md);
    width: 50px;
    height: 50px;
  }
}

/* --- Watch Visualization (Hero Placeholder) --- */
.watch-vis {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-vis__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(0, 120, 60, 0.3) 0%, rgba(0, 80, 40, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.watch-vis__ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
}

.watch-vis__ring--outer {
  width: 108%;
  height: 108%;
  border-width: 1px;
  border-color: rgba(0, 180, 90, 0.06) rgba(0, 180, 90, 0.35) rgba(0, 180, 90, 0.06) rgba(0, 180, 90, 0.12);
  animation: rotateSlow 30s linear infinite;
}

.watch-vis__ring--mid {
  width: 96%;
  height: 96%;
  border-width: 1px;
  border-color: rgba(0, 150, 70, 0.22) rgba(0, 150, 70, 0.06) rgba(0, 150, 70, 0.22) rgba(0, 150, 70, 0.08);
  animation: rotateSlow 20s linear infinite reverse;
}

.watch-vis__face {
  width: 92%;
  height: 92%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(0, 180, 80, 0.25));
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .watch-vis {
    width: 220px;
    height: 220px;
  }
}
