:root {
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --burgundy: #7A1F1F;
  --burgundy-deep: #5C1616;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --gold: #C9A84C;
  --gold-light: #D4B86A;
  --wood: #2C1810;
  --wood-medium: #4A3728;
  --muted: #6B5B52;
  --muted-light: #9A8A80;
  --border: rgba(44, 24, 16, 0.1);
  --border-strong: rgba(44, 24, 16, 0.18);
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 12px 40px rgba(44, 24, 16, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  color: var(--wood);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, .brand-font { font-family: "Fraunces", serif; line-height: 1.1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.25rem;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
}

.logo img { border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wood-medium);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--burgundy); background: rgba(122, 31, 31, 0.05); }

.nav-phone {
  background: var(--burgundy) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 0.55rem 1rem !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}

.nav-phone:hover { background: var(--burgundy-deep) !important; }

.hamburger {
  display: none;
  border: 0;
  background: none;
  color: var(--wood);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44, 24, 16, 0.88) 0%, rgba(44, 24, 16, 0.6) 50%, rgba(44, 24, 16, 0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  max-width: 680px;
  line-height: 1.05;
}

.hero p.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 540px;
  margin-top: 1.25rem;
  line-height: 1.7;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stats div { text-align: left; }
.hero-stats strong { display: block; font-family: "Fraunces", serif; font-size: 1.75rem; font-weight: 800; color: var(--gold-light); }
.hero-stats span { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.02em; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1;
  min-height: 48px;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }

.btn-burgundy { background: var(--burgundy); color: #fff; }
.btn-burgundy:hover { background: var(--burgundy-deep); box-shadow: 0 4px 14px rgba(122, 31, 31, 0.25); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-light); box-shadow: 0 4px 14px rgba(27, 67, 50, 0.25); }

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

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); }

.btn-white { background: #fff; color: var(--burgundy); }
.btn-white:hover { background: var(--cream); }

/* ── SECTIONS ── */
.section { padding: 5rem 1.25rem; }
.section-alt { background: var(--white); }

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--wood);
  margin-top: 0.5rem;
}

.section-header p {
  color: var(--muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

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

.card-body { padding: 1.5rem; }

.card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--wood);
}

.card-body p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── PRODUCT CARDS ── */
.product-card .card-body h3 { font-size: 1.15rem; }
.product-card .card-body > .btn { margin-top: 1rem; width: 100%; }

.product-card .card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.product-card .card-actions .btn {
  flex: 1;
  margin-top: 0;
  width: auto;
  font-size: 0.8rem;
  padding: 0.7rem 0.5rem;
}

.btn-cart {
  background: var(--gold);
  color: var(--wood);
  border: none;
  cursor: pointer;
}

.btn-cart:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.25);
}

/* ── VALUE PROPS ── */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(122, 31, 31, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--wood);
}

.value-card p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.testimonial p { font-size: 1.05rem; line-height: 1.7; color: var(--wood-medium); font-weight: 500; }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 700; color: var(--burgundy); font-size: 0.9rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--burgundy);
  padding: 4rem 1.25rem;
  color: #fff;
}

.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; font-size: 1rem; }

.cta-banner .cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner .btn-white { background: #fff; color: var(--burgundy); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.35); }

/* ── PAGE HEADERS ── */
.page-header {
  padding: 72px 1.25rem 0;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 31, 31, 0.85), rgba(27, 67, 50, 0.7));
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
  color: #fff;
}

.page-header-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  max-width: 600px;
}

.page-header-content p { color: rgba(255,255,255,0.8); margin-top: 0.75rem; font-size: 1.05rem; max-width: 500px; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--white);
  color: var(--wood-medium);
  cursor: pointer;
  transition: all 0.2s;
}

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

.filter-btn.active {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

/* ── PRODUCT CATEGORY SECTIONS ── */
.product-category { margin-bottom: 3.5rem; }
.product-category h2 { font-size: 1.75rem; font-weight: 800; margin-top: 0.35rem; }

/* ── MAP SECTION ── */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

/* ── FORM ── */
.form-group { display: grid; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--wood); }

.form-group input, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--wood);
  transition: border-color 0.2s;
}

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

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

#form-success {
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: 8px;
  font-weight: 600;
  display: none;
}

/* ── ABOUT TWO-COL ── */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--wood);
}

.about-text p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ── FOOTER ── */
footer {
  background: var(--wood);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 1.25rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand img { border-radius: 50%; object-fit: cover; }

footer h3 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem; }
footer a { transition: color 0.2s; }
footer a:hover { color: var(--gold); }

.footer-links { display: grid; gap: 0.4rem; }
.footer-links a { font-size: 0.9rem; }

.footer-contact p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact a { color: #fff; font-weight: 700; }

.footer-trust {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-trust-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ── FLOATING CTAs ── */
.floating-whatsapp {
  position: fixed;
  bottom: 84px;
  right: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 56px;
  height: 56px;
  padding: 0 1rem;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }

.floating-call {
  position: fixed;
  bottom: 20px;
  right: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 1rem;
  background: var(--burgundy);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(122, 31, 31, 0.3);
  transition: transform 0.2s;
}

.floating-call:hover { transform: translateY(-2px); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--wood);
  color: #fff;
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 9999;
  font-size: 0.85rem;
  border-top: 2px solid var(--gold);
}

.cookie-banner a { color: var(--gold); text-decoration: underline; }

.cookie-banner .cookie-actions { display: flex; gap: 0.5rem; }
.cookie-banner button {
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}
.cookie-accept { background: var(--gold); color: var(--wood); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25) !important; }

/* ── VIDEO SECTION ── */
.video-section {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.video-section video {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .section { padding: 6rem 1.5rem; }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .hero-content { padding: 4rem 1.5rem; }
}

@media (max-width: 767px) {
  .hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .hero { min-height: 85vh; }
  .hero-stats { gap: 1.5rem; }
  .hero-stats strong { font-size: 1.35rem; }

  .about-image img { height: 300px; }
  .section { padding: 3.5rem 1rem; }

  .floating-whatsapp { bottom: 76px; right: 12px; height: 52px; min-width: 52px; padding: 0 12px; font-size: 0.8rem; }
  .floating-call { bottom: 16px; right: 12px; height: 44px; padding: 0 14px; font-size: 0.8rem; }
}

/* ── NAV ACTIONS (cart + hamburger) ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: var(--wood);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.cart-btn:hover { background: rgba(122, 31, 31, 0.05); }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 9px;
  line-height: 1;
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(44, 24, 16, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 380px;
  max-width: 90vw;
  background: var(--cream);
  box-shadow: -8px 0 32px rgba(44, 24, 16, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header h3 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--wood);
}

.cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.cart-close:hover { background: rgba(44, 24, 16, 0.06); }

.cart-body {
  flex: 1;
  overflow-y: auto;
}

.cart-items { padding: 1rem 1.5rem; }

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-info { flex: 1; }

.cart-item-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wood);
  margin-bottom: 0.35rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-qty span {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 1.5rem;
  text-align: center;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--white);
  color: var(--wood);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.qty-btn:hover { background: var(--cream); border-color: var(--burgundy); }

.cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--muted-light);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}

.cart-item-remove:hover { color: var(--burgundy); background: rgba(122, 31, 31, 0.06); }

.cart-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--wood);
  margin-bottom: 0.75rem;
}

.cart-checkout-btn { width: 100%; }

.cart-checkout {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-checkout h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--wood);
  margin-bottom: 1rem;
}

.cart-checkout form { display: grid; gap: 0.75rem; }

/* ── ARARAT SILHOUETTE ── */
.ararat-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}

.ararat-decor svg { display: block; width: 100%; height: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
