/* ============================================
   OTTO HOME GOODS - NEW DESIGN SYSTEM
   ============================================ */

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

:root {
  /* Colors */
  --cream: #F7F3EE;
  --warm-white: #FDFBF8;
  --espresso: #1A1410;
  --walnut: #3D2B1F;
  --mocha: #6B4A35;
  --sand: #C9A882;
  --sand-light: #E8D5BC;
  --gold: #B8955A;
  --gold-light: #D4B278;
  --sage: #7A9E7E;
  --slate: #4A5568;
  --text-muted: #7A6A58;
  --border: rgba(26, 20, 16, 0.08);
  --border-strong: rgba(26, 20, 16, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--espresso);
}

.nav-cta {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--espresso);
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--walnut);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
}

h4 {
  font-size: 20px;
}

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

a:hover {
  color: var(--gold);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 80px 48px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
}

.section-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 20vh;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 80px 48px 64px;
  position: relative;
  overflow: hidden;
}

.index .hero {
  margin-top: 68px;
  min-height: 50vh;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.25);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184, 149, 90, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--warm-white);
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  font-size: 14px;
  color: rgba(253, 251, 248, 0.5);
  letter-spacing: 1px;
  max-width: 520px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--espresso);
  background: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--espresso);
}

.btn-gold:hover {
  background: var(--gold-light);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 28px 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: -0.5px;
  display: block;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.45);
  margin-top: 2px;
  display: block;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 48px;
  overflow-x: auto;
}

.filter-btn {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.filter-btn:hover {
  color: var(--espresso);
}

.filter-btn.active {
  color: var(--espresso);
  border-bottom-color: var(--espresso);
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.product-card {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: fadeUp 0.5s ease both;
}

.product-card:hover {
  transform: translateY(-4px);
  z-index: 2;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #EDE8E2 0%, #D5CEC6 100%);
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.35);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .card-img-overlay {
  opacity: 1;
}

.card-quick-view {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--warm-white);
  color: var(--espresso);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.product-card:hover .card-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.finish-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.badge-new,
.badge-ceramic {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}

.badge-new {
  background: var(--espresso);
  color: var(--warm-white);
}

.badge-ceramic {
  background: var(--sage);
  color: white;
}

/* Stock badges on cards */
.badge-stock {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 500;
  z-index: 5;
}

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

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

.badge-stock-kon {
  background: var(--gold);
  color: var(--espresso);
}

.card-body {
  padding: 20px 22px 22px;
}

.card-series {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 8px;
}

.card-spec-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.card-spec {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(26, 20, 16, 0.05);
  padding: 4px 8px;
}

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

.card-finish-label {
  font-size: 11px;
  color: var(--text-muted);
}

.card-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
}

.card-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.product-card:hover .card-arrow {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--warm-white);
}

/* Animation delays */
.product-card:nth-child(1) {
  animation-delay: 0.05s;
}

.product-card:nth-child(2) {
  animation-delay: 0.10s;
}

.product-card:nth-child(3) {
  animation-delay: 0.15s;
}

.product-card:nth-child(4) {
  animation-delay: 0.20s;
}

.product-card:nth-child(5) {
  animation-delay: 0.25s;
}

.product-card:nth-child(6) {
  animation-delay: 0.30s;
}

.product-card:nth-child(7) {
  animation-delay: 0.35s;
}

.product-card:nth-child(8) {
  animation-delay: 0.40s;
}

.product-card:nth-child(9) {
  animation-delay: 0.45s;
}

.product-card:nth-child(10) {
  animation-delay: 0.50s;
}

.product-card:nth-child(11) {
  animation-delay: 0.55s;
}

.product-card:nth-child(12) {
  animation-delay: 0.60s;
}

/* Featured Products Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.featured-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.featured-img {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #EDE8E2 0%, #D5CEC6 100%);
  overflow: hidden;
}

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

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--espresso);
  color: var(--warm-white);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.featured-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-series {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.featured-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--espresso);
  margin-bottom: 8px;
  flex: 1;
}

.featured-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 8px;
}

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

.featured-finish-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.featured-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  transition: all 0.2s;
}

.featured-card:hover .featured-arrow {
  background: var(--espresso);
  color: white;
  border-color: var(--espresso);
}

/* ============================================
   FEATURED BANNER
   ============================================ */
.featured-banner {
  background: var(--walnut);
  padding: 72px 48px;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.featured-text {
  flex: 1;
  min-width: 280px;
}

.featured-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.featured-desc {
  font-size: 14px;
  color: rgba(253, 251, 248, 0.55);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 440px;
}

.featured-visual {
  flex: 0 0 320px;
  height: 240px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   FINISH GUIDE
   ============================================ */
.finish-guide {
  padding: 64px 48px;
  background: var(--warm-white);
}

.finish-swatches {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s;
}

.swatch:hover {
  border-color: var(--espresso);
}

.swatch-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.swatch-name {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--espresso);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.breadcrumb {
  margin-top: 68px;
  padding: 16px 48px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--espresso);
}

.breadcrumb .sep {
  opacity: 0.35;
}

.breadcrumb .current {
  color: var(--espresso);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: calc(100vh - 108px);
  background: var(--warm-white);
}

.img-panel {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  background: #EDE8E1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.img-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 32px;
  min-height: 0;
  animation: fadeIn 0.8s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.img-main img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 24px 48px rgba(26, 20, 16, 0.12));
  object-fit: contain;
}

.img-badge-row {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
}

.img-badge {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
}

.badge-new-arr {
  background: var(--espresso);
  color: var(--warm-white);
}

.badge-double {
  background: var(--gold);
  color: var(--espresso);
}

.img-thumbs {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
}

.thumb {
  flex: 1 1 80px;
  max-width: 130px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #DDD8D0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  overflow: hidden;
}

.thumb.active {
  border-color: var(--espresso);
  background: #C8C2BA;
  color: var(--espresso);
}

.thumb:hover {
  border-color: var(--gold);
}

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

.info-panel {
  padding: 52px 48px 80px;
  border-left: 1px solid var(--border);
  overflow-y: auto;
}

.product-series {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
  animation: slideUp 0.6s ease 0.1s both;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  animation: slideUp 0.6s ease 0.15s both;
}

.product-title em {
  font-style: italic;
  color: var(--mocha);
}

.product-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: slideUp 0.6s ease 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

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

/* Selector Labels */
.selector-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.selector-label span {
  color: var(--espresso);
  font-weight: 500;
}

/* Size Options */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.size-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--cream);
  min-width: 60px;
}

.size-opt:hover {
  border-color: var(--espresso);
}

.size-opt.active {
  border-color: var(--espresso);
  background: var(--warm-white);
}

.size-opt-name {
  font-size: 12px;
  font-weight: 500;
}

/* Finish Options */
.finish-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.finish-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--cream);
}

.finish-opt:hover {
  border-color: var(--espresso);
}

.finish-opt.active {
  border-color: var(--espresso);
  background: var(--warm-white);
}

.finish-dot-sm {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.finish-opt-name {
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Mount Options */
.mount-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.mount-opt {
  padding: 14px 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--cream);
  text-align: center;
}

.mount-opt:hover {
  border-color: var(--espresso);
}

.mount-opt.active {
  border-color: var(--espresso);
  background: var(--espresso);
}

.mount-opt.active .mount-name {
  color: var(--warm-white);
}

.mount-opt.active .mount-sub {
  color: rgba(253, 251, 248, 0.5);
}

.mount-name {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

.mount-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Price Block */
.price-block {
  background: var(--espresso);
  padding: 20px 22px;
  margin-bottom: 20px;
}

.price-public {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: -0.5px;
}

.price-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.4);
}

.price-msrp {
  font-size: 11px;
  color: rgba(253, 251, 248, 0.3);
  text-decoration: line-through;
  margin-bottom: 14px;
}

/* Price Type Toggle (Base / With Top) */
.price-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 3px;
  margin-bottom: 12px;
}

.price-toggle button {
  background: transparent;
  border: 0;
  color: rgba(253, 251, 248, 0.5);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  cursor: pointer;
  border-radius: 4px;
  font-family: inherit;
  transition: all 0.18s ease;
}

.price-toggle button:hover {
  color: var(--warm-white);
}

.price-toggle button.active {
  background: var(--gold);
  color: var(--espresso);
  font-weight: 600;
}

.price-toggle button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.dealer-price-teaser {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dealer-lock {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lock-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dealer-lock-text {
  font-size: 11px;
  color: rgba(253, 251, 248, 0.5);
  line-height: 1.5;
}

.dealer-lock-text strong {
  color: var(--gold);
  font-weight: 400;
}

.dealer-login-btn {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 8px 16px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  transition: background 0.2s;
}

.dealer-login-btn:hover {
  background: var(--gold-light);
}

/* CTA Buttons */
.cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 24px;
}

.btn-primary-full {
  padding: 16px;
  background: var(--espresso);
  color: var(--warm-white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.btn-primary-full:hover {
  background: var(--walnut);
}

.btn-icon {
  width: 52px;
  height: 52px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-icon:hover {
  border-color: var(--espresso);
  background: var(--cream);
}

.btn-quote {
  width: 100%;
  padding: 14px;
  background: none;
  border: 1px solid var(--border);
  color: var(--espresso);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 24px;
}

.btn-quote:hover {
  border-color: var(--espresso);
  background: var(--cream);
}

/* Quick Specs */
.quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.qs-item {
  background: var(--warm-white);
  padding: 14px 12px;
  text-align: center;
}

.qs-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
  display: block;
  line-height: 1;
}

.qs-key {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* SKU Label */
.sku-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Stock Badges */
.stock-badge {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}

.stock-in {
  background: var(--sage);
  color: white;
}

.stock-out {
  background: #E53E3E;
  color: white;
}

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

.stock-kon {
  background: var(--gold);
  color: var(--espresso);
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--sage);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  z-index: 1000;
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-notification.show {
  animation: slideOut 0.3s ease forwards;
  animation-delay: 1.7s;
}

@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

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

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

  to {
    transform: translateX(100px);
    opacity: 0;
  }
}

/* Trust Badges */
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  font-size: 14px;
  color: var(--gold);
}

.trust-text {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ============================================
   TABS
   ============================================ */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.tab {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.tab:hover {
  color: var(--espresso);
}

.tab.active {
  color: var(--espresso);
  border-bottom-color: var(--espresso);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Dimension Diagram */
.dim-diagram {
  background: var(--cream);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
  padding: 72px 48px;
  background: var(--warm-white);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.specs-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table td {
  padding: 13px 0;
  font-size: 13px;
  vertical-align: top;
  line-height: 1.5;
}

.spec-table td:first-child {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 42%;
  padding-right: 16px;
}

.spec-table td:last-child {
  color: var(--espresso);
  font-weight: 400;
}

/* ============================================
   DEALER PRICING SECTION
   ============================================ */
.dealer-section {
  padding: 72px 48px;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

.dealer-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(184, 149, 90, 0.07);
}

.dealer-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.05);
}

.dealer-section-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.dealer-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.dealer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.dealer-desc {
  font-size: 13px;
  color: rgba(253, 251, 248, 0.45);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}

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

.tier-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 0.2s;
}

.tier-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.tier-card.featured {
  background: rgba(184, 149, 90, 0.12);
  border-color: rgba(184, 149, 90, 0.3);
}

.tier-badge {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--espresso);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 500;
}

.tier-name {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.4);
  margin-bottom: 8px;
}

.tier-discount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-price {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
}

.tier-features {
  list-style: none;
}

.tier-features li {
  font-size: 12px;
  color: rgba(253, 251, 248, 0.4);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.dealer-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-dealer-login {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-dealer-login:hover {
  background: var(--gold-light);
}

.btn-dealer-register {
  padding: 14px 36px;
  background: transparent;
  color: rgba(253, 251, 248, 0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s, color 0.2s;
}

.btn-dealer-register:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--warm-white);
}

.dealer-note {
  font-size: 11px;
  color: rgba(253, 251, 248, 0.25);
  margin-left: auto;
  font-style: italic;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.related-section {
  padding: 72px 48px;
  background: var(--cream);
}

.related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
}

.related-link {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.related-link:hover {
  color: var(--espresso);
}

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

.related-card {
  background: var(--warm-white);
  cursor: pointer;
  transition: transform 0.25s ease;
  overflow: hidden;
}

.related-card:hover {
  transform: translateY(-4px);
  z-index: 2;
}

.related-img {
  aspect-ratio: 4/3;
  background: #E8E3DC;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.related-body {
  padding: 16px 18px 18px;
}

.related-series {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.related-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}

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

.related-finish {
  font-size: 11px;
  color: var(--text-muted);
}

.related-arrow {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.related-card:hover .related-arrow {
  color: var(--espresso);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--espresso);
  color: var(--warm-white);
  padding: 72px 48px 32px;
}

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

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(253, 251, 248, 0.45);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(253, 251, 248, 0.5);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(253, 251, 248, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--warm-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(253, 251, 248, 0.3);
  letter-spacing: 0.5px;
}

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

.footer-bottom-links a {
  font-size: 11px;
  color: rgba(253, 251, 248, 0.3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--warm-white);
}

/* ============================================
   CONTENT PAGE
   ============================================ */
.page-content {
  margin-top: 68px;
  padding: 72px 48px;
  min-height: 60vh;
}

.page-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.content-body {
  max-width: 800px;
}

.content-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.content-body h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: var(--espresso);
}

.content-body h3 {
  font-size: 20px;
  margin: 32px 0 16px;
  color: var(--espresso);
}

.content-body ul {
  margin: 20px 0;
  padding-left: 24px;
}

.content-body li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ============================================
   WHERE TO BUY
   ============================================ */
.dealer-search {
  padding: 48px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-input {
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--espresso);
}

.dealer-list {
  display: grid;
  gap: 16px;
}

.dealer-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color 0.2s;
}

.dealer-card:hover {
  border-color: var(--espresso);
}

.dealer-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.dealer-address {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dealer-phone {
  font-size: 14px;
  color: var(--espresso);
  font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .img-panel {
    position: relative;
    height: auto;
  }

  .img-main {
    min-height: 400px;
  }

  .info-panel {
    border-left: none;
    border-top: 1px solid var(--border);
  }

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

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

  .pricing-tiers {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {

  .container,
  .section {
    padding: 0 24px;
  }

  .section {
    padding: 48px 24px;
  }

  .site-nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    width: 100%;
    gap: 0;
    flex-direction: column;
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding-top: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 11px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 60px 24px 48px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .breadcrumb {
    padding: 12px 24px;
  }

  .info-panel {
    padding: 32px 24px;
  }

  .featured-banner {
    padding: 48px 24px;
    flex-direction: column;
  }

  .featured-visual {
    flex: 0 0 180px;
    width: 100%;
  }

  .stats-strip {
    gap: 32px;
    padding: 24px;
  }

  .filter-bar {
    padding: 0 24px;
  }

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

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

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

  .page-title {
    font-size: 36px;
  }

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-fluid {
  width: 100%;
  padding: 0 48px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.col {
  flex: 1;
  padding: 0 12px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.gap-5 {
  gap: 48px;
}

/* Spacing */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 8px;
}

.p-2 {
  padding: 16px;
}

.p-3 {
  padding: 24px;
}

.p-4 {
  padding: 32px;
}

.p-5 {
  padding: 48px;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-3 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-3 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 8px;
}

.pt-2 {
  padding-top: 16px;
}

.pt-3 {
  padding-top: 24px;
}

.pt-4 {
  padding-top: 32px;
}

.pt-5 {
  padding-top: 48px;
}

.pt-10 {
  padding-top: 60px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 8px;
}

.pb-2 {
  padding-bottom: 16px;
}

.pb-3 {
  padding-bottom: 24px;
}

.pb-4 {
  padding-bottom: 32px;
}

.pb-5 {
  padding-bottom: 48px;
}

.pb-60 {
  padding-bottom: 60px;
}

.m-0 {
  margin: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Text */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-white {
  color: var(--warm-white);
}

.text-gold {
  color: var(--gold);
}

.text-espresso {
  color: var(--espresso);
}

.font-serif {
  font-family: 'Cormorant Garamond', serif;
}

.font-sans {
  font-family: 'DM Sans', sans-serif;
}

.font-bold {
  font-weight: 500;
}

.font-light {
  font-weight: 300;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.tracking-wide {
  letter-spacing: 2px;
}

/* Backgrounds */
.bg-cream {
  background: var(--cream);
}

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

.bg-espresso {
  background: var(--espresso);
}

.bg-walnut {
  background: var(--walnut);
}

/* Borders */
.border {
  border: 1px solid var(--border);
}

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

.border-top {
  border-top: 1px solid var(--border);
}

.border-none {
  border: none;
}

.rounded {
  border-radius: 4px;
}

/* Sizing */
.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.min-h-100 {
  min-height: 100vh;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-10 {
  z-index: 10;
}

.z-100 {
  z-index: 100;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* Display */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

/* Visibility */
.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Lists */
.list-none {
  list-style: none;
}

/* Image */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-cover {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

/* Aspect Ratio */
.aspect-4-3 {
  aspect-ratio: 4/3;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-square {
  aspect-ratio: 1/1;
}

/* Transitions */
.transition {
  transition: all 0.2s ease;
}

/* No gutters */
.no-gutters {
  margin: 0;
  padding: 0;
}

/* Video */
.video-popup {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-popup img {
  transition: opacity 0.2s;
}

.video-popup:hover img {
  opacity: 0.9;
}

/* Forms */
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--espresso);
}

/* Responsive */
@media (max-width: 1024px) {

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

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .container-fluid {
    padding: 0 16px;
  }

  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Hide old elements (but not inside content-body) */
header:not(.content-body *),
.header_area:not(.content-body *),
.header-topbar:not(.content-body *),
.header-topbar-style-1:not(.content-body *),
.main_menu_area:not(.content-body *),
.logo_area:not(.content-body *),
.mobile-menu-area:not(.content-body *),
.mobile-menu:not(.content-body *),
.mean-container:not(.content-body *),
.mean-bar:not(.content-body *),
.mean-nav:not(.content-body *),
.page_area:not(.content-body *),
.title-breadcrumbs:not(.content-body *),
.title-breadcrumbs-inner:not(.content-body *),
.woocommerce-breadcrumb:not(.content-body *),
.error_page_start:not(.content-body *),
.contact-page-map:not(.content-body *),
.contact-form-area:not(.content-body *),
.contact-address-area:not(.content-body *),
.contact-form-inner:not(.content-body *) {
  display: none !important;
}

/* Old Bootstrap/WooCommerce elements inside content-body - show and style them */
.content-body .product-wrapper,
.content-body .product-content,
.content-body .product-img,
.content-body .pi-image,
.content-body .pi-left,
.content-body .pi-middle,
.content-body .pi-right,
.content-body .product-categories {
  display: block !important;
}

.content-body .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.content-body .no-gutters {
  margin: 0;
  padding: 0;
}

.content-body .col-lg-12,
.content-body .col-md-6,
.content-body .col-12 {
  flex: 1;
  padding: 0 12px;
}

.content-body .col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 12px;
}

.content-body .align-items-center {
  align-items: center;
}

.content-body .text-center {
  text-align: center;
}

.content-body .product-content {
  margin-bottom: 16px;
}

.content-body .product-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin: 12px 0;
}

.content-body .product-content h4 a {
  color: var(--espresso);
  text-decoration: none;
}

.content-body .product-content h4 a:hover {
  color: var(--gold);
}

.content-body .product-img,
.content-body .pi-image {
  overflow: hidden;
  margin-bottom: 24px;
}

.content-body .product-img img,
.content-body .pi-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.2s;
}

.content-body .product-img a,
.content-body .pi-image a {
  display: block;
}

.content-body .product-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-body .product-categories li {
  margin-bottom: 8px;
}

.content-body .product-categories a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.content-body .product-categories a:hover {
  color: var(--espresso);
}

.content-body .image-popup {
  cursor: pointer;
}

/* Images in content body */
.content-body img {
  max-width: 100%;
  height: auto;
}

/* Links in content body */
.content-body a {
  color: var(--espresso);
  text-decoration: none;
  transition: color 0.2s;
}

.content-body a:hover {
  color: var(--gold);
}

/* Lists in content body */
.content-body ul,
.content-body ol {
  padding-left: 24px;
  margin: 16px 0;
}

.content-body li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* Tables in content body */
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.content-body table td,
.content-body table th {
  padding: 12px;
  border: 1px solid var(--border);
}

/* Blockquotes in content body */
.content-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* WPBakery / Visual Composer Elements in content body */
.content-body .col-xl-6,
.content-body .col-lg-12 {
  flex: 1;
  padding: 0 12px;
}

.content-body .col-xl-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 1199px) {
  .content-body .col-xl-6 {
    flex: 1;
    max-width: 100%;
  }

  .content-body .d-none.d-xl-block {
    display: none !important;
  }
}

.content-body .banner_h2__left_image img,
.content-body .wpb_single_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 24px;
}

.content-body .about-us-wrapper {
  padding: 32px;
  background: var(--warm-white);
}

.content-body .wpb_wrapper {
  max-width: 600px;
}

.content-body .wpb_wrapper p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.content-body .wpb_wrapper strong {
  font-weight: 400;
  color: var(--espresso);
}

.content-body .wpb_wrapper span {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.content-body .vc_column_container {
  margin-bottom: 24px;
}

.content-body .vc_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.content-body .vc_col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 12px;
}

.content-body .vc_btn,
.content-body .wpb_button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--espresso);
  color: var(--warm-white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.content-body .vc_btn:hover,
.content-body .wpb_button:hover {
  background: var(--walnut);
  color: var(--warm-white);
}

/* General content-body text styling */
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--espresso);
  margin: 24px 0 16px;
}

.content-body h1 {
  font-size: 42px;
}

.content-body h2 {
  font-size: 36px;
}

.content-body h3 {
  font-size: 28px;
}

.content-body h4 {
  font-size: 22px;
}

.content-body h5 {
  font-size: 18px;
}

.content-body h6 {
  font-size: 16px;
}

.content-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.content-body strong,
.content-body b {
  font-weight: 500;
  color: var(--espresso);
}

/* Quantity Stepper */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--mist);
  border-radius: 6px;
  overflow: hidden;
  background: var(--warm-white);
}

.qty-stepper .qty-btn {
  width: 40px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-stepper .qty-btn:hover {
  background: var(--mist);
}

.qty-stepper input[type="number"] {
  width: 56px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--mist);
  border-right: 1px solid var(--mist);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso);
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-stepper input[type="number"]::-webkit-outer-spin-button,
.qty-stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cta-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row .btn-primary-full {
  flex: 1;
  min-width: 180px;
}