/** Shopify CDN: Minification failed

Line 912:5 Unexpected ".5"

**/
/* ──────────────────────────────────────────────────────────────────────────────
   DLS-Belle1 Shopify Liquid Theme - Main Stylesheet
   Design System: Dark charcoal, gold accents, premium serif typography
   ────────────────────────────────────────────────────────────────────────────── */

/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Color Palette ────────────────────────────────────────────────────────── */
:root {
  /* Dark Theme (full headless Tailwind palette) */
  --charcoal-950: #211e1c;
  --charcoal-900: #3d3634;
  --charcoal-800: #463e3b;
  --charcoal-700: #534844;
  --charcoal-600: #665a51;
  --charcoal-500: #7a6c62;
  --charcoal-400: #93877d;
  --charcoal-300: #b4aba3;

  /* Gold Accents — gradients break entirely if ANY referenced step is
     missing, so the full scale must stay defined */
  --gold-50: #fdf8ee;
  --gold-100: #f9eccc;
  --gold-200: #f3d68b;
  --gold-300: #ecbc4a;
  --gold-400: #e5a524;
  --gold-500: #c98a10;
  --gold-600: #a46c0c;
  --gold-700: #7d500e;
  --gold-800: #664014;
  --gold-900: #573614;
  --gold-950: #321a07;

  /* Cream Text */
  --cream-50: #fdfaf5;
  --cream-100: #f8f0e0;
  --cream-200: #f0ddb8;
  --cream-300: #e6c58a;
  --cream-400: #daa85c;
  --cream-500: #d29040;

  /* Semantic */
  --border: rgba(70, 62, 59, 0.4);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.7);
}

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

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

body {
  background-color: var(--charcoal-950);
  color: var(--cream-100);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-tap-highlight-color: transparent;
}

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: white;
  letter-spacing: -0.5px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5, h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ── Images ────────────────────────────────────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
button,
.btn {
  font-family: inherit;
  font-size: inherit;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--charcoal-950);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(229, 165, 36, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 165, 36, 0.4);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--gold-400);
  border: 2px solid var(--gold-500);
}

.btn-secondary:hover {
  background-color: rgba(229, 165, 36, 0.1);
  border-color: var(--gold-400);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--cream-200);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background-color: var(--charcoal-800);
  border-color: var(--gold-500);
  color: var(--gold-400);
}

/* ── Forms ───────────────────────────────────────────────────────────────────── */
input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--charcoal-900);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--cream-100);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(240, 221, 184, 0.4);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold-500);
  background-color: var(--charcoal-800);
  box-shadow: 0 0 0 3px rgba(229, 165, 36, 0.1);
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background-color: var(--charcoal-900);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(229, 165, 36, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Product Cards */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 0;
}

.featured-card {
  background-color: var(--charcoal-900);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 165, 36, 0) 0%, rgba(229, 165, 36, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.featured-card:hover {
  border-color: rgba(229, 165, 36, 0.6);
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.featured-card:hover::before {
  opacity: 1;
}

.featured-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background-color: var(--charcoal-800);
}

.featured-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.featured-price {
  color: var(--gold-400);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.featured-desc {
  color: rgba(240, 221, 184, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.featured-cta {
  display: inline-block;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.featured-card:hover .featured-cta {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-width {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .page-width {
    padding: 0 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ── Grid System ───────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 768px) {
  .grid {
    gap: 1.5rem;
  }

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

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

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

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

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

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

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ── Spacing ───────────────────────────────────────────────────────────────── */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.px-4 { padding: 0 1rem; }
.px-6 { padding: 0 1.5rem; }
.px-8 { padding: 0 2rem; }

.py-6 { padding: 1.5rem 0; }
.py-8 { padding: 2rem 0; }
.py-12 { padding: 3rem 0; }
.py-16 { padding: 4rem 0; }
.py-20 { padding: 5rem 0; }

/* Section spacing */
.section-spacing {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 5rem 0;
  }
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
section {
  scroll-margin-top: 80px;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.section-header p {
  color: rgba(240, 221, 184, 0.7);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 30, 28, 0.65) 0%, rgba(61, 54, 52, 0.65) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(229, 165, 36, 0.08), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  animation: fadeUp 0.8s ease-out;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 3rem;
  color: rgba(240, 221, 184, 0.95);
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--charcoal-950);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(229, 165, 36, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 165, 36, 0.4);
}

.hero-cta:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .hero {
    min-height: 450px;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }
}

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

/* ── Utilities ───────────────────────────────────────────────────────────────── */

/* Text Colors */
.text-gold {
  color: var(--gold-400);
}

.text-white {
  color: white;
}

.text-cream-100 {
  color: var(--cream-100);
}

.text-cream-200 {
  color: var(--cream-200);
}

.text-charcoal-950 {
  color: var(--charcoal-950);
}

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

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-semibold {
  font-weight: 600;
}

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

.font-700 {
  font-weight: 700;
}

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

/* Opacity and Transparency */
.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

/* Opacity Color Modifiers - replaces Tailwind slash syntax */
.text-cream-200-50 {
  color: rgba(240, 221, 184, 0.5);
}

.text-cream-200-70 {
  color: rgba(240, 221, 184, 0.7);
}

.text-cream-200-40 {
  color: rgba(240, 221, 184, 0.4);
}

.text-cream-200-30 {
  color: rgba(240, 221, 184, 0.3);
}

.text-cream-200-80 {
  color: rgba(240, 221, 184, 0.8);
}

.text-cream-200-95 {
  color: rgba(240, 221, 184, 0.95);
}

.bg-gold-500-10 {
  background-color: rgba(229, 165, 36, 0.1);
}

.bg-gold-500-30 {
  background-color: rgba(229, 165, 36, 0.3);
}

.bg-gold-500-60 {
  background-color: rgba(229, 165, 36, 0.6);
}

.border-gold-500-30 {
  border-color: rgba(229, 165, 36, 0.3);
}

.border-gold-500-60 {
  border-color: rgba(229, 165, 36, 0.6);
}

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

.border-charcoal-800-40 {
  border-color: rgba(70, 62, 59, 0.4);
}

.border-charcoal-800-60 {
  border-color: rgba(70, 62, 59, 0.6);
}

/* Background Colors */
.bg-charcoal-950 {
  background-color: var(--charcoal-950);
}

.bg-charcoal-900 {
  background-color: var(--charcoal-900);
}

.bg-charcoal-800 {
  background-color: var(--charcoal-800);
}

.bg-gold-500 {
  background-color: var(--gold-500);
}

.bg-gold-400 {
  background-color: var(--gold-400);
}

/* Rounding */
.rounded {
  border-radius: 0.5rem;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

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

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

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

/* Width & Height */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

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

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

/* Max Width */
.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

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

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

.flex-row {
  flex-direction: row;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

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

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

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

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

/* Display */
.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.block {
  display: block;
}

/* Grid */
.grid {
  display: grid;
}

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

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

/* Spacing */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Transforms */
.scale-95 {
  transform: scale(0.95);
}

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

/* Typography Variants */
.italic {
  font-style: italic;
}

.leading-relaxed {
  line-height: 1.625;
}

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

/* Placeholder Styles */
.placeholder-cream-200-40::placeholder {
  color: rgba(240, 221, 184, 0.4);
}

/* Focus Styles */
.focus\:outline-none:focus {
  outline: none;
}

.focus\:border-gold-500-60:focus {
  border-color: rgba(229, 165, 36, 0.6);
}

/* ── Header / Navigation ───────────────────────────────────────────────────────── */
.header {
  background-color: var(--charcoal-950);
  border-bottom: 1px solid rgba(70, 62, 59, 0.4);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--gold-400);
}

.nav-menu {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item a {
  color: var(--cream-100);
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

.nav-item a:hover {
  color: var(--gold-400);
}

.nav-item a.active {
  color: var(--gold-400);
  border-bottom: 2px solid;
  border-color: currentColor;
}

.cart-icon-container {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}

.cart-icon {
  color: var(--cream-100);
  width: 24px;
  height: 24px;
  transition: color 0.3s ease;
}

.cart-icon-container:hover .cart-icon {
  color: var(--gold-400);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--gold-600);
  color: var(--charcoal-950);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: var(--charcoal-800);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

/* ── Responsive Utilities ──────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mb-12 {
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ── Responsive Text ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

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

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

/* ── Financing Section ──────────────────────────────────────────────────────── */
.financing-banner {
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
  border-top: 1px solid rgba(229, 165, 36, 0.2);
}

.financing-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.highlight {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

.highlight h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.highlight p {
  color: rgba(240, 221, 184, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ── Trust Signals / Testimonials ───────────────────────────────────────────── */
.trust-section {
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--charcoal-950);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-400);
}

.testimonial-text {
  color: rgba(240, 221, 184, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: var(--charcoal-900);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: rgba(240, 221, 184, 0.7);
}

.trust-badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-400);
}

/* ── Customization Section ──────────────────────────────────────────────────── */
.customization-section {
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
}

.customization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .customization-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.customization-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 0.75rem;
}

@media (max-width: 768px) {
  .customization-image {
    height: 350px;
  }
}

.customization-content {
  display: flex;
  flex-direction: column;
}

.customization-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.customization-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.customization-content p {
  color: rgba(240, 221, 184, 0.8);
  font-size: 1.125rem;
  line-height: 1.8;
}

.customization-content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.customization-content li {
  color: var(--cream-100);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Why Choose Us / Feature Cards ──────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon-circle {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background-color: rgba(229, 165, 36, 0.1);
  border-radius: 9999px;
  border: 1px solid rgba(229, 165, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-circle svg {
  width: 2rem;
  height: 2rem;
}

.feature-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(240, 221, 184, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background-color: var(--charcoal-900);
  border-top: 1px solid rgba(70, 62, 59, 0.4);
  margin-top: 6rem;
  padding: 4rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
}

.footer-section p {
  color: rgba(240, 221, 184, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gold-400);
}

.footer-contact a {
  color: rgba(240, 221, 184, 0.8);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.footer-contact a:hover { color: var(--gold-400); }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(240, 221, 184, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-badges {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(240, 221, 184, 0.7);
}

.badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(70, 62, 59, 0.4);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 2rem;
  }
}

.footer-copyright {
  color: rgba(240, 221, 184, 0.3);
  font-size: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    gap: 2rem;
  }
}

.footer-bottom-links a {
  color: rgba(240, 221, 184, 0.3);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ── Cart Drawer Styles ────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height so the footer buttons stay reachable on mobile */
  background-color: var(--charcoal-950);
  border-left: 1px solid var(--border);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer.open ~ .cart-drawer-overlay,
.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(70, 62, 59, 0.5);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-drawer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  background: var(--gold-600);
  color: var(--charcoal-950);
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.cart-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  border-radius: 0.35rem;
  color: rgba(240, 221, 184, 0.6);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-drawer-close:hover { color: #fff; background: var(--charcoal-800); }

.cart-drawer-items {
  flex: 1 1 auto;
  min-height: 0; /* allow the list to shrink so it scrolls and the footer stays pinned */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cart-line {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem;
  background: var(--charcoal-900);
  border: 1px solid rgba(70, 62, 59, 0.4);
  border-radius: 0.5rem;
}

.cart-line-img {
  width: 3.75rem;
  height: 3.75rem;
  flex-shrink: 0;
  border-radius: 0.4rem;
  overflow: hidden;
  background: var(--charcoal-800);
  display: block;
}
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-line-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.35rem; }

.cart-line-title {
  color: var(--cream-100);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-line-title:hover { color: var(--gold-400); }
.cart-line-variant { color: rgba(240, 221, 184, 0.5); font-size: 0.75rem; margin: 0; }

.cart-line-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.cart-line-price { color: var(--gold-400); font-size: 0.85rem; font-weight: 600; }
.cart-line-controls { display: flex; align-items: center; gap: 0.4rem; }

.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(70, 62, 59, 0.6);
  border-radius: 0.35rem;
  overflow: hidden;
}
.cart-qty-btn {
  width: 1.6rem;
  height: 1.6rem;
  background: var(--charcoal-950);
  border: none;
  color: rgba(240, 221, 184, 0.7);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-qty-btn:hover { color: #fff; background: var(--charcoal-800); }
.cart-qty-val { min-width: 1.5rem; text-align: center; font-size: 0.8rem; font-weight: 600; color: #fff; }

.cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  background: none;
  border: none;
  border-radius: 0.3rem;
  color: rgba(240, 221, 184, 0.3);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-remove:hover { color: #f87171; background: rgba(70, 62, 59, 0.3); }

.cart-drawer-footer {
  flex-shrink: 0;
  padding: 1.15rem 1.25rem 1.25rem;
  padding-bottom: max(1.25rem, calc(env(safe-area-inset-bottom, 0px) + 1.25rem));
  border-top: 1px solid rgba(201, 138, 16, 0.28);
  background: linear-gradient(180deg, rgba(28, 25, 23, 0) 0%, rgba(20, 18, 16, 0.55) 100%);
}

.cart-drawer-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 221, 184, 0.75);
  margin-bottom: 0.3rem;
}
.cart-drawer-subtotal-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-300);
}
.cart-drawer-note { font-size: 0.72rem; color: rgba(240, 221, 184, 0.45); margin: 0 0 1rem; }

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 50%, var(--gold-700) 100%);
  color: var(--charcoal-950);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(201, 138, 16, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.cart-checkout-btn svg { flex-shrink: 0; }
.cart-checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(201, 138, 16, 0.35); }
.cart-checkout-btn:active { transform: scale(0.99); }

.cart-continue-btn {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  background: transparent;
  color: var(--gold-300);
  border: 1px solid rgba(201, 138, 16, 0.45);
  border-radius: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cart-continue-btn:hover { background: rgba(201, 138, 16, 0.1); border-color: var(--gold-400); }

.cart-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 221, 184, 0.4);
}
.cart-secure-note svg { color: rgba(201, 138, 16, 0.6); }

.cart-drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  padding: 2rem 1.5rem;
  color: rgba(240, 221, 184, 0.55);
}
.cart-drawer-empty svg { color: rgba(201, 138, 16, 0.5); }
.cart-drawer-empty-title { color: var(--cream-100); font-weight: 600; margin: 0; }
.cart-drawer-empty-sub { font-size: 0.85rem; margin: 0 0 0.5rem; }
.cart-drawer-empty .cart-checkout-btn { width: auto; padding: 0.7rem 1.5rem; }

/* ── Accessibility ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Print Styles ──────────────────────────────────────────────────────────── */
@media print {
  body {
    background: white;
    color: black;
  }

  a {
    color: blue;
  }

  header,
  footer,
  .no-print {
    display: none;
  }
}

/* Gold gradient text accent — replicates the headless site's .text-gradient-gold */
.text-gradient-gold {
  background: linear-gradient(135deg, #e5a524 0%, #f3d68b 50%, #c98a10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ---- Content-page design system (ported from the headless React pages) ---- */
.dls-page { background: var(--charcoal-950); padding: 6rem 0; }
.dls-container { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.dls-container--narrow { max-width: 48rem; }
.dls-container--wide { max-width: 80rem; }
.dls-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; color: var(--gold-400); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; }
.dls-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold-500); flex-shrink: 0; }
.dls-eyebrow--center { justify-content: center; }
.dls-eyebrow--center::after { content: ''; width: 2rem; height: 1px; background: var(--gold-500); flex-shrink: 0; }
.dls-h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 700; color: white; line-height: 1.1; margin: 0 0 1rem; }
.dls-h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; color: white; margin: 0 0 1.5rem; }
.dls-lead { color: rgba(240, 221, 184, 0.6); font-size: 1.1rem; line-height: 1.7; margin: 0 0 4rem; max-width: 42rem; }
.dls-card { background: var(--charcoal-900); border: 1px solid rgba(70, 62, 59, 0.5); border-radius: 0.5rem; padding: 2rem; }
.dls-card--gold { border-color: rgba(125, 80, 14, 0.25); }
.dls-card h3 { color: white; }
.dls-icon-circle { width: 2.75rem; height: 2.75rem; border-radius: 9999px; border: 1px solid rgba(164, 108, 12, 0.4); display: flex; align-items: center; justify-content: center; color: var(--gold-500); flex-shrink: 0; }
.dls-step-num { width: 2.5rem; height: 2.5rem; border-radius: 9999px; border: 2px solid rgba(164, 108, 12, 0.4); display: flex; align-items: center; justify-content: center; color: var(--gold-400); font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.dls-muted { color: rgba(240, 221, 184, 0.55); font-size: 0.9rem; line-height: 1.65; }
.dls-muted strong { color: var(--cream-100); }
.dls-gold { color: var(--gold-400); }
a.dls-gold { text-decoration: none; }
a.dls-gold:hover { color: var(--gold-300); }
.dls-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.dls-grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.dls-grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .dls-grid-3 { grid-template-columns: repeat(3, 1fr); } .dls-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .dls-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dls-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.dls-flex { display: flex; gap: 1rem; align-items: flex-start; }
.dls-legal-section { margin-bottom: 2.5rem; }
.dls-legal-section h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: white; margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(70, 62, 59, 0.5); }
.dls-legal-section p, .dls-legal-section li { color: rgba(240, 221, 184, 0.6); font-size: 0.9rem; line-height: 1.65; }
.dls-legal-section ul { padding-left: 1.25rem; margin: 0.75rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.dls-quote { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 4vw, 2.25rem); color: var(--gold-400); font-style: italic; line-height: 1.5; }
.dls-topbar { height: 4px; background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 50%, var(--gold-700) 100%); border-radius: 0.5rem 0.5rem 0 0; }
