/**
* Chrono Curiosity - Premium Design System
* Luxury Editorial Aesthetic with Technical Accents
*/

/*--------------------------------------------------------------
# Design System Variables
--------------------------------------------------------------*/
:root {
  /* Brand Colors */
  --green-light: #006039;
  --green-dark: #002918;
  --green-glow: rgba(0, 96, 57, 0.15);
  --green-accent: #7dd3a0;

  /* Warm Neutrals (not clinical white) */
  --cream: #faf9f7;
  --cream-dark: #f5f3f0;
  --warm-white: #ffffff;

  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #8a8a8a;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.7);

  /* Functional */
  --border-light: #e8e8e8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Legacy compatibility */
  --brand-green-light: #006039;
  --brand-green-dark: #002918;
  --brand-black: #000000;
  --brand-white: #ffffff;
  --brand-offwhite: #faf9f7;
}

/*--------------------------------------------------------------
# Base Typography
--------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--green-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

.mono, .price, .sku, .code {
  font-family: 'JetBrains Mono', monospace;
}

/*--------------------------------------------------------------
# Section Styling
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
}

.section-eyebrow-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.section-bg {
  background-color: var(--warm-white);
}

.section-dark {
  background: var(--green-dark);
  color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-on-dark);
}

/*--------------------------------------------------------------
# Promo Banner
--------------------------------------------------------------*/
.promo-banner {
  background: var(--green-dark);
  padding: 12px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-banner-text {
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.promo-banner-text i {
  color: var(--green-light);
  font-size: 0.5rem;
}

.promo-banner-code {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}

.promo-banner-code span {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--green-accent);
  letter-spacing: 0.1em;
}

.promo-banner-code button {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.promo-banner-code button:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header,
.site-header {
  background: var(--warm-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0;
  transition: all 0.3s;
}

.header-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo,
.site-header .logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

#header .logo img,
.site-header .logo img {
  height: 44px;
  width: auto;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 480px;
  margin: 0 48px;
}

.header-search .search-wrapper {
  position: relative;
}

.header-search .form-control,
.header-search .search-input {
  width: 100%;
  padding: 12px 20px 12px 48px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.2s;
}

.header-search .form-control:focus,
.header-search .search-input:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.header-search .search-wrapper i,
.header-search .btn {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 0;
}

.header-search .input-group {
  position: relative;
}

.header-search .input-group .form-control {
  padding-left: 48px;
  border-radius: 10px;
}

.header-search .input-group .btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-select,
.language-selector .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

/* Button-specific resets for language selector */
button.lang-select {
  font-family: inherit;
  line-height: inherit;
}

.lang-select:hover,
.language-selector .nav-link:hover {
  border-color: var(--green-light);
  background: var(--cream);
}

.lang-select:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 2px rgba(var(--green-light-rgb, 76, 175, 80), 0.2);
}

/* Style Bootstrap's dropdown caret */
.lang-select.dropdown-toggle::after {
  margin-left: 6px;
  font-size: 0.6rem;
  vertical-align: middle;
}

.lang-select img,
.language-selector img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Ensure dropdown menu has proper z-index and scrolling for many languages */
.language-selector .dropdown-menu {
  max-height: 400px;
  overflow-y: auto;
  z-index: 1050;
}

/*--------------------------------------------------------------
# Main Navigation
--------------------------------------------------------------*/
.main-nav,
.navbar {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}

.main-nav .nav-inner,
.navbar .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav ul,
.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.main-nav .nav-item,
.navbar li {
  position: relative;
}

.main-nav .nav-link,
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}

.main-nav .nav-link:hover,
.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: white;
  background: rgba(255,255,255,0.05);
}

.main-nav .nav-link.active,
.navbar .nav-link.active {
  color: white;
  border-bottom-color: var(--green-light);
}

.main-nav .nav-link i,
.navbar a i {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
  margin-left: 4px;
}

.main-nav .nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.main-nav .nav-dropdown,
.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-xl), 0 8px 20px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 200;
  padding: 12px 0;
  border: none;
  margin: 0;
}

.main-nav .nav-item:hover .nav-dropdown,
.navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

.main-nav .nav-dropdown-link,
.navbar .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.15s;
  background: transparent;
  border: none;
  width: 100%;
}

.main-nav .nav-dropdown-link:hover,
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--cream);
  color: var(--green-light);
  padding-left: 28px;
}

.main-nav .nav-dropdown-link i,
.navbar .dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.main-nav .nav-dropdown-link:hover i {
  color: var(--green-light);
}

.nav-dropdown-divider,
.navbar .dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 8px 0;
  border: none;
}

.nav-dropdown-header {
  padding: 8px 24px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 680px;
  background: white;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 200;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.main-nav .nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.15s;
}

.mega-menu-link:hover {
  background: var(--cream);
  color: var(--green-light);
}

.mega-menu-link i {
  width: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.mega-menu-link:hover i {
  color: var(--green-light);
}

.mega-menu-all {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 16px;
  border-top: 1px solid #eee;
  text-align: center;
}

.mega-menu-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--green-light);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.mega-menu-all a:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 96, 57, 0.3);
}

/* Nav Cart Button */
.nav-cart-btn,
.cart-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-cart-btn:hover,
.cart-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.nav-cart-count,
#cart-badge {
  background: var(--green-light);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 24px;
  padding: 10px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero,
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #001a10 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
  height: auto;
  border-bottom: none;
}

#hero::before,
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 96, 57, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner,
#hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-eyebrow-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

#hero h1,
.hero-title {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: none;
}

#hero h1 em,
.hero-title em {
  font-style: italic;
  color: var(--green-accent);
}

#hero h2,
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-on-dark-muted);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
  text-shadow: none;
}

.hero-features {
  margin-bottom: 44px;
}

.hero-feature,
#hero .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  text-shadow: none;
}

.hero-feature i,
#hero .feature-item i {
  color: var(--green-accent);
  font-size: 1rem;
  margin-top: 4px;
  text-shadow: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-feature strong {
  color: white;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-main {
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
  box-shadow:
    0 32px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 0 0 4px rgba(0, 0, 0, 0.2),
    0 0 0 5px rgba(212, 175, 55, 0.15);
  /* Subtle inner glow for luxury feel */
  outline: 1px solid rgba(255, 255, 255, 0.08);
  outline-offset: -1px;
}

.hero-stats {
  position: absolute;
  bottom: -24px;
  left: -30px;
  display: flex;
  gap: 16px;
}

.hero-stat {
  background: rgba(0, 20, 12, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  padding: 18px 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-stat-value {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#hero .btn-get-started,
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--green-light);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 96, 57, 0.4);
}

#hero .btn-get-started:hover,
.btn-hero-primary:hover {
  background: #007a49;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 96, 57, 0.5);
}

#hero .btn-get-quote,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

#hero .btn-get-quote:hover,
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

/* Hero Image */
.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-image-badge-number {
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}

.hero-image-badge-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--cream);
  padding: 120px 48px;
  position: relative;
}

/* Elegant top border/divider for About section */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 50%,
    transparent 100%);
}

.about::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: #b8963e;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: 'Cormorant', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content strong {
  color: var(--text-primary);
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.12),
    0 0 0 1px rgba(212, 175, 55, 0.15);
  margin-top: 24px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-features {
  display: grid;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--warm-white);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid rgba(212, 175, 55, 0.4);
  transition: all 0.3s;
}

.about-feature:hover {
  border-left-color: #d4af37;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Legacy about styles */
.about .icon-box,
.about-feature-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.3s;
}

.about .icon-box:hover,
.about-feature-box:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about .icon-box i,
.about-feature-box i {
  font-size: 1.5rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.about .icon-box h4,
.about-feature-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  min-height: auto;
}

.about-feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services .service-box,
.service-card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  text-align: left;
  padding: 0;
  margin-bottom: 0;
}

.services .service-box:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.services .service-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.service-card-content {
  padding: 28px;
}

.services .service-box i {
  display: none;
}

.services .service-box h4,
.service-card h4 {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.services .service-box p,
.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-light);
  text-decoration: none;
}

.service-card-link:hover {
  gap: 12px;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products {
  padding: 100px 0;
  background: var(--warm-white);
}

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--green-light);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-content {
  padding: 20px;
}

.product-card-sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.product-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.4;
}

.product-card-models {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.product-card-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
}

.product-card-btn {
  padding: 10px 18px;
  background: var(--green-light);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.product-card-btn:hover {
  background: var(--green-dark);
}

/*--------------------------------------------------------------
# Product Price Display (Amazon-style)
--------------------------------------------------------------*/
.product-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  line-height: 1;
  color: var(--green-dark);
}

.price-symbol {
  font-size: 0.9rem;
  padding-top: 2px;
}

.price-pounds {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-pence {
  font-size: 0.9rem;
  padding-top: 2px;
}

/*--------------------------------------------------------------
# Categories Section
--------------------------------------------------------------*/
.categories {
  padding: 100px 0;
  background: var(--cream);
}

.categories-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0,41,24,0.85) 0%, transparent 70%);
}

.category-card h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.category-card-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 100px 0;
  background: var(--warm-white);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card,
.testimonial-box {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.testimonial-card:hover,
.testimonial-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-card blockquote,
.testimonial-box .feedback p {
  font-family: 'Cormorant', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--green-light);
}

.testimonial-author-name,
.testimonial-box .item-name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 100px 0;
  background: var(--green-dark);
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.contact-inner h2 {
  color: white;
  font-family: 'Cormorant', serif;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-content h2 {
  color: white;
  margin-bottom: 20px;
}

.contact-content p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item i {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  margin: 0;
}

.contact-info-item a {
  color: var(--green-accent);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px var(--green-glow);
}

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

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-light);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: var(--green-dark);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer,
.site-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.7;
  margin: 20px 0;
}

.footer-logo {
  display: inline-block;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

#footer h3,
.footer-brand h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--green-light);
  color: white;
}

.footer-social a.ebay-link {
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.footer-social a.ebay-link:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

#footer h4,
.footer-column h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 0.9rem;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--green-light);
}

.footer-bottom,
#footer .copyright {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  margin-top: 0;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #666;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--green-light);
}

#footer .disclaimer {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 0;
  opacity: 0.6;
  font-size: 0.8rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Trusted By / Client Logos
--------------------------------------------------------------*/
.trusted-by {
  padding: 60px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trusted-by-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.trusted-by-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-by-logos img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.trusted-by-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #001a10 100%);
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 48px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-on-dark-muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 24px;
  bottom: 24px;
  z-index: 996;
  background: var(--green-light);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.back-to-top i {
  font-size: 20px;
  color: white;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--green-dark);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Rolex Collection & Reference Pages
--------------------------------------------------------------*/
.collection-hero {
  background: var(--green-dark);
  padding: 80px 0;
  text-align: center;
}

.collection-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.collection-hero p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.reference-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.reference-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.reference-image-container,
.reference-image-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
}

.reference-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.reference-image-placeholder {
  background-color: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.reference-card-content {
  padding: 20px;
}

.reference-card h4 {
  font-family: 'Cormorant', serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.reference-card .reference-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spec-group {
  margin-bottom: 24px;
}

.spec-group h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.spec-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-group ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.parts-sidebar {
  position: sticky;
  top: 120px;
}

.related-model {
  transition: all 0.3s;
  border-radius: 8px;
}

.related-model:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.badge.bg-primary {
  background-color: var(--green-light) !important;
}

/*--------------------------------------------------------------
# Shop Page
--------------------------------------------------------------*/
.shop-hero {
  background: var(--green-dark);
  padding: 60px 0;
  text-align: center;
}

.shop-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.shop-hero p {
  color: var(--text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto;
}

.shop-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}

.shop-filters {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.shop-filters h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.filter-group {
  margin-bottom: 28px;
}

.filter-group h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.filter-group label:hover {
  color: var(--green-light);
}

.filter-group input[type="checkbox"] {
  accent-color: var(--green-light);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/*--------------------------------------------------------------
# Product Detail Page
--------------------------------------------------------------*/
.product-detail {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.product-gallery-main {
  width: 100%;
  height: 500px;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

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

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
  border-color: var(--green-light);
}

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

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.product-info .sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.product-info .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.product-info .description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-specs {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.product-specs h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-specs dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-specs dt {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-specs dd {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--green-light);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.add-to-cart-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 96, 57, 0.3);
}

/*--------------------------------------------------------------
# Checkout Page
--------------------------------------------------------------*/
.checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}

.checkout-items {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.checkout-summary {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

/*--------------------------------------------------------------
# Bootstrap Overrides
--------------------------------------------------------------*/
.btn-primary {
  background-color: var(--green-light);
  border-color: var(--green-light);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 500;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline-primary {
  color: var(--green-light);
  border-color: var(--green-light);
  border-radius: 10px;
}

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

.bg-primary {
  background-color: var(--green-light) !important;
}

.text-primary {
  color: var(--green-light) !important;
}

.form-control {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.form-control:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px var(--green-glow);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .hero-inner,
  #hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 32px;
  }

  .hero-image-container {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reference-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .main-nav ul,
  .navbar ul {
    display: none;
  }

  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
  }

  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 16px;
    overflow-y: auto;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 14px 20px;
    font-size: 1rem;
    color: var(--text-primary);
    background: transparent;
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active {
    color: var(--green-light);
    background: var(--cream);
    border-radius: 8px;
  }

  .navbar-mobile .dropdown-menu {
    position: static;
    background: var(--cream);
    border-radius: 8px;
    margin: 8px 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header-search {
    display: none;
  }

  .shop-content {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    position: static;
  }

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

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .checkout-page {
    grid-template-columns: 1fr;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .header-main {
    padding: 14px 20px;
  }

  .main-nav .nav-inner,
  .navbar .container-fluid {
    padding: 0 20px;
  }

  #hero h1,
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-inner,
  #hero .container {
    padding: 60px 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }

  .footer-inner {
    padding: 0 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

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

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

  .promo-banner-inner {
    flex-direction: column;
    gap: 12px;
  }
}

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

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

  .hero-buttons {
    flex-direction: column;
  }

  #hero .btn-get-started,
  #hero .btn-get-quote,
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Shop Page Styles
--------------------------------------------------------------*/
.shop-hero {
  background: var(--green-dark);
  padding: 80px 0 50px;
  color: var(--text-on-dark);
}

.shop-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.shop-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 24px;
}

.shop-breadcrumb .breadcrumb-item a {
  color: var(--text-on-dark-muted);
  font-size: 0.875rem;
}

.shop-breadcrumb .breadcrumb-item.active {
  color: var(--text-on-dark);
}

.shop-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-on-dark-muted);
}

.shop-hero-content h1 {
  font-size: 2.5rem;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}

.shop-hero-subtitle {
  color: var(--text-on-dark-muted);
  font-size: 1rem;
  margin: 0;
}

.reference-filter-badge {
  margin-top: 16px;
}

.filter-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.filter-badge-pill i {
  margin-right: 4px;
}

.filter-badge-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0;
  margin-left: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.filter-badge-close:hover {
  opacity: 1;
}

.shop-main {
  background: var(--cream);
  padding: 40px 0 80px;
}

.shop-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Shop Sidebar */
.shop-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.filter-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.filter-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.search-wrapper {
  position: relative;
}

.search-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.filter-search-input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-search-input:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.filter-option:hover {
  color: var(--green-light);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-light);
  cursor: pointer;
}

.filter-close-btn {
  display: none;
  width: 100%;
  padding: 14px;
  background: var(--green-light);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
}

.filter-close-btn i {
  margin-right: 8px;
}

/* Shop Products Area */
.shop-products {
  min-height: 500px;
}

.filter-toggle-btn {
  display: none;
  width: 100%;
  padding: 14px 20px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.2s;
}

.filter-toggle-btn:hover {
  background: var(--cream-dark);
}

.filter-toggle-btn i {
  margin-right: 8px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-results-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.shop-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.items-per-page {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.shop-select {
  padding: 8px 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  background: white;
  transition: border-color 0.2s;
}

.shop-select:focus {
  outline: none;
  border-color: var(--green-light);
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Product Card (List-style from shop) */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: row;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.product-card.out-of-stock {
  opacity: 0.7;
}

.product-card.out-of-stock .product-image {
  filter: grayscale(30%);
}

.product-image {
  width: 280px;
  min-width: 280px;
  height: 280px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease;
}

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

.product-image i {
  font-size: 3rem;
  color: var(--border-light);
}

.stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.out-of-stock-badge {
  background: #dc3545;
  color: white;
}

.pre-order-badge {
  background: #ffc107;
  color: #000;
}

.low-stock-badge {
  background: #ff9800;
  color: white;
}

.product-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.product-title-link {
  text-decoration: none;
  color: inherit;
}

.product-title-link:hover .product-title {
  color: var(--green-dark);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.category-link {
  background: #ebf8ff;
  color: #2c5282;
}

.category-dial {
  background: #fef5e7;
  color: #975a16;
}

.category-movement_part {
  background: #f0fdf4;
  color: #166534;
}

.product-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s;
}

.product-title:hover {
  color: var(--green-light);
}

.product-sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.product-review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.product-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.product-review-count {
  color: var(--green-light);
  cursor: pointer;
}

.product-review-count:hover {
  text-decoration: underline;
}

.product-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 8px 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-symbol {
  font-size: 0.9rem;
}

.price-pounds {
  font-weight: 600;
}

.price-pence {
  font-size: 0.9rem;
}

.verified-authentic {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #38a169;
  font-weight: 500;
}

.product-type-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: fit-content;
}

.type-genuine {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.type-custom_made {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #f59e0b;
}

.type-high_quality_aftermarket {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #3b82f6;
}

.btn-add-cart {
  width: 100%;
  background: var(--green-light);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 96, 57, 0.3);
}

.btn-contact-reserve {
  width: 100%;
  background: var(--green-light);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  margin-top: auto;
}

.btn-contact-reserve:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-2px);
}

/* Shop Pagination */
.shop-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 20px;
}

.pagination-info {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pagination {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-item {
  display: inline-block;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  background: white;
}

.page-link:hover {
  background: var(--green-light);
  color: white;
  border-color: var(--green-light);
}

.page-item.active .page-link {
  background: var(--green-light);
  color: white;
  border-color: var(--green-light);
}

.page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Cart Widget */
.cart-widget {
  position: fixed;
  top: 140px;
  right: 24px;
  background: white;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}

.cart-widget:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.cart-widget i {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--green-light);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
}

/* Shop Mobile Responsive */
@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    max-height: 100vh;
  }

  .shop-sidebar.active {
    display: block;
  }

  .filter-close-btn {
    display: block;
  }

  .filter-toggle-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    min-width: 100%;
    height: 250px;
  }
}

@media (max-width: 600px) {
  .shop-hero-inner {
    padding: 0 20px;
  }

  .shop-layout {
    padding: 0 20px;
  }

  .shop-hero-content h1 {
    font-size: 1.75rem;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar-controls {
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# Basic Page Styles
--------------------------------------------------------------*/
.page-hero {
  background: var(--green-dark);
  padding: 80px 0 50px;
  color: var(--text-on-dark);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--text-on-dark);
  margin: 0;
}

.basic-page {
  background: var(--cream);
  padding: 60px 0 80px;
}

.basic-page-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.basic-page .content {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.basic-page .content h2 {
  font-size: 1.75rem;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.basic-page .content h3 {
  font-size: 1.35rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.basic-page .content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.basic-page .content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero-inner,
  .basic-page-inner {
    padding: 0 20px;
  }

  .basic-page .content {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Collection & Reference Page Styles
--------------------------------------------------------------*/
.collection-hero {
  background: var(--green-dark);
  padding: 80px 0 60px;
  color: var(--text-on-dark);
}

.collection-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.collection-hero h1 {
  font-size: 2.75rem;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}

.collection-hero h2 {
  font-size: 1.25rem;
  color: var(--text-on-dark-muted);
  font-weight: 400;
  margin-bottom: 16px;
}

.collection-hero p {
  color: var(--text-on-dark-muted);
  margin-bottom: 24px;
}

.collection-hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.collection-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.reference-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.reference-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-light);
}

.reference-card.popular {
  border: 2px solid var(--green-light);
}

.reference-image-container {
  aspect-ratio: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reference-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s;
}

.reference-card:hover .reference-image {
  transform: scale(1.05);
}

.reference-card h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
}

.reference-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.reference-card .badge.bg-primary {
  background-color: var(--green-light) !important;
}

@media (max-width: 991px) {
  .collection-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collection-hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .collection-hero {
    padding: 60px 0 40px;
  }

  .collection-hero h1 {
    font-size: 2rem;
  }

  .collection-hero-inner {
    padding: 0 20px;
  }

  .reference-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/*--------------------------------------------------------------
# Collection Sort Controls
--------------------------------------------------------------*/
.collection-sort-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px 0;
}

.sort-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sort-buttons {
  display: flex;
  gap: 8px;
}

.sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sort-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sort-btn-text {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.sort-btn-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.sort-btn-arrow svg {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sort-btn-arrow .arrow-up {
  opacity: 0;
  transform: translateY(4px);
}

.sort-btn-arrow .arrow-down {
  opacity: 1;
  transform: translateY(0);
}

/* Ascending state - show up arrow */
.sort-btn[data-direction="asc"] .sort-btn-arrow .arrow-up {
  opacity: 1;
  transform: translateY(0);
}

.sort-btn[data-direction="asc"] .sort-btn-arrow .arrow-down {
  opacity: 0;
  transform: translateY(4px);
}

/* Hover state */
.sort-btn:hover {
  border-color: var(--green-light);
  box-shadow: 0 2px 12px rgba(0, 96, 57, 0.1);
}

.sort-btn:hover .sort-btn-text {
  color: var(--green-light);
}

.sort-btn:hover .sort-btn-arrow {
  color: var(--green-light);
}

/* Active state */
.sort-btn.active {
  border-color: var(--green-light);
  background: var(--green-dark);
}

.sort-btn.active::before {
  opacity: 1;
}

.sort-btn.active .sort-btn-text {
  color: var(--text-on-dark);
}

.sort-btn.active .sort-btn-arrow {
  color: var(--green-accent);
}

/* Focus state for accessibility */
.sort-btn:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

/* Card animation when sorting */
.reference-card-wrapper {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-card-wrapper.sorting {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .collection-sort-controls {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }

  .sort-buttons {
    width: 100%;
    justify-content: center;
  }

  .sort-btn {
    flex: 1;
    justify-content: center;
    padding: 14px 16px;
  }
}

/*--------------------------------------------------------------
# Parts Filter Controls (Reference Pages)
--------------------------------------------------------------*/
.parts-filter-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.filter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.filter-btn-text {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.filter-btn-count {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  background: var(--cream-dark);
  color: var(--text-muted);
  border-radius: 20px;
  transition: all 0.25s ease;
}

/* Hover state */
.filter-btn:hover {
  border-color: var(--green-light);
  box-shadow: 0 2px 12px rgba(0, 96, 57, 0.1);
}

.filter-btn:hover .filter-btn-text {
  color: var(--green-light);
}

/* Active state */
.filter-btn.active {
  border-color: var(--green-light);
  background: var(--green-dark);
}

.filter-btn.active::before {
  opacity: 1;
}

.filter-btn.active .filter-btn-text {
  color: var(--text-on-dark);
}

.filter-btn.active .filter-btn-count {
  background: rgba(255, 255, 255, 0.15);
  color: var(--green-accent);
}

/* Focus state for accessibility */
.filter-btn:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

/* Parts card animation when filtering */
.parts-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.parts-card.filtering {
  opacity: 0;
  transform: translateY(15px);
}

/* Product card styling */
.product-card-reference {
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.product-card-reference:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

.product-card-reference .btn-primary {
  background-color: var(--green-light);
  border-color: var(--green-light);
}

.product-card-reference .btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.product-card-reference .badge.bg-primary {
  background-color: var(--green-light) !important;
}

.product-icon {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 12px;
  padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .parts-filter-controls {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }

  .filter-buttons {
    gap: 6px;
  }

  .filter-btn {
    padding: 10px 14px;
  }

  .filter-btn-text {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Parts Availability Sidebar (Reference Pages)
--------------------------------------------------------------*/
.parts-sidebar {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.parts-sidebar-header {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.parts-sidebar-header h3 {
  color: var(--text-on-dark);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.parts-count-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--green-accent);
  border-radius: 20px;
  white-space: nowrap;
}

.parts-availability-grid {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.availability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.availability-item.available {
  background: rgba(0, 96, 57, 0.06);
}

.availability-item.unavailable {
  background: var(--cream-dark);
  opacity: 0.6;
}

.availability-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.availability-item.available .availability-icon {
  background: var(--green-light);
  color: white;
}

.availability-item.unavailable .availability-icon {
  background: var(--text-muted);
  color: white;
  opacity: 0.5;
}

.availability-label {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.availability-item.unavailable .availability-label {
  color: var(--text-muted);
}

.availability-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  background: var(--green-light);
  color: white;
  border-radius: 12px;
}

.parts-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}

.sidebar-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.benefit-item i {
  width: 18px;
  color: var(--green-light);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
  .parts-sidebar {
    position: static;
    margin-top: 24px;
  }
}

/*--------------------------------------------------------------
# Other References Section (Reference Pages)
--------------------------------------------------------------*/
.other-references-section {
  background: var(--cream);
}

.other-references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.other-ref-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.other-ref-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 96, 57, 0.03) 0%, rgba(0, 41, 24, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.other-ref-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 4px 20px rgba(0, 96, 57, 0.12);
  transform: translateY(-2px);
}

.other-ref-card:hover::before {
  opacity: 1;
}

.other-ref-image {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-ref-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-ref-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 24px;
}

.other-ref-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.other-ref-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.other-ref-title {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.other-ref-nickname {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-light);
  font-style: italic;
}

.other-ref-years {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.other-ref-arrow {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.other-ref-card:hover .other-ref-arrow {
  color: var(--green-light);
  transform: translateX(4px);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-light);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--green-light);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.view-all-link:hover {
  background: var(--green-light);
  color: var(--text-on-dark);
}

.view-all-link svg {
  transition: transform 0.25s ease;
}

.view-all-link:hover svg {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .other-references-grid {
    grid-template-columns: 1fr;
  }

  .other-ref-card {
    padding: 12px;
  }

  .other-ref-image {
    width: 60px;
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Checkout Page Styles
--------------------------------------------------------------*/
.checkout-hero {
  background: var(--green-dark);
  padding: 80px 0 50px;
  color: var(--text-on-dark);
}

.checkout-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.checkout-hero h1 {
  font-size: 2rem;
  color: var(--text-on-dark);
  margin: 0;
}

.checkout-main {
  background: var(--cream);
  padding: 40px 0 80px;
}

.checkout-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.checkout-cart {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.checkout-summary {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
  height: fit-content;
}

.checkout-btn {
  width: 100%;
  background: var(--green-light);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 96, 57, 0.3);
}

.checkout-btn:disabled {
  background: var(--border-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .checkout-hero {
    padding: 60px 0 40px;
  }

  .checkout-hero-inner,
  .checkout-layout {
    padding: 0 20px;
  }

  .checkout-cart,
  .checkout-summary {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Homepage Section Styles (Luxury Editorial Design)
--------------------------------------------------------------*/

/* Services Section - Additional Classes */
.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.service-image {
  height: 240px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 32px;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Bracelet Links Section */
.bracelet-section {
  margin-top: 40px;
}

.bracelet-header {
  text-align: center;
  margin-bottom: 40px;
}

.bracelet-header h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.bracelet-header p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.bracelet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bracelet-item {
  text-decoration: none;
  text-align: center;
}

.bracelet-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.bracelet-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.bracelet-item:hover .bracelet-image {
  box-shadow: 0 12px 40px rgba(0, 96, 57, 0.15);
}

.bracelet-item:hover .bracelet-image img {
  transform: scale(1.05);
}

.bracelet-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.bracelet-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Trusted By Section */
.trusted {
  background: var(--cream);
  padding: 80px 48px;
  border-top: 1px solid #eee;
}

.trusted-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
}

.trusted-logo {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trusted-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.trusted-note strong {
  color: var(--green-light);
}

/* Categories Section - Additional Classes */
.categories-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.category-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 1.6rem;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--green-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--green-light);
  border-radius: 8px;
  transition: all 0.2s;
}

.category-btn:hover {
  background: var(--green-light);
  color: white;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  border-radius: 20px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-box h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* Why Choose Us Section */
.why-section {
  margin-top: 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  border: 1px solid #eee;
}

.why-card i {
  font-size: 2.2rem;
  color: var(--green-light);
  margin-bottom: 20px;
}

.why-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials Section - Additional Classes */
.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #eee;
}

/* Contact Section - Additional Classes */
.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 40px;
}

.contact-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.contact-box i {
  font-size: 2.5rem;
  color: #7dd3a0;
  margin-bottom: 20px;
}

.contact-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}

.contact-email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  color: #7dd3a0;
  margin-bottom: 16px;
}

.contact-box p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Homepage Sections
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .bracelet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 991px) {
  .services-grid,
  .category-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trusted {
    padding: 60px 24px;
  }

  .trusted-logos {
    gap: 32px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h3 {
    font-size: 1.5rem;
  }
}

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

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

  .contact-box {
    padding: 32px 24px;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 24px;
  }
}
