/* ══════════════════════════════════════════════
   HRTE CREATIONS — style.css
   ══════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:         #0a0a0a;
  --surface:    #131313;
  --surface2:   #1c1c1c;
  --border:     #2a2a2a;
  --amber:      #c8853a;
  --amber-lt:   #e8a05a;
  --orange:     #ff6b2b;
  --cream:      #f5efe6;
  --text:       #e8e0d5;
  --muted:      #7a7060;
  --white:      #ffffff;
  --radius:     12px;
  --cart-width: 380px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }


/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,133,58,0.15);
  transition: padding 0.3s;
}
nav.scrolled { padding: 12px 48px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #000;
  letter-spacing: 1px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--amber);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  position: relative;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.cart-btn:hover { border-color: var(--amber); color: var(--amber); }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.whatsapp-btn:hover { opacity: 0.85; }


/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;        /* vertically centre the text */
  padding: 100px 48px 80px;
  background: var(--bg);      /* solid black on the left */
}

/* ── SLIDES — pinned to the RIGHT half of the hero ── */
.hero-slides {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  left: 38%;                  /* slides start at 38% — pure black to the left */
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; }

/* Placeholder fallback colours (shown when no image/video is set) */
.slide-1 { background-color: #2a1a0a; }
.slide-2 { background-color: #0a1a2a; }
.slide-3 { background-color: #1a0a2a; }
.slide-4 { background-color: #1a1a0a; }

/* ── LEFT FADE — the beautiful black blend ──
   Sits OVER the slides container, fades left edge into black.
   Uses a multi-stop gradient for a smooth, natural-looking melt. */
.hero-fade-left {
  position: absolute;
  top: 0; bottom: 0;
  /* starts 10% before the slides begin, ends 25% into the slides */
  left: 28%;
  width: 36%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #0a0a0a       0%,    /* solid black — matches --bg */
    #0a0a0a       30%,   /* hold solid a little longer */
    rgba(10,10,10,0.92) 45%,
    rgba(10,10,10,0.72) 58%,
    rgba(10,10,10,0.42) 72%,
    rgba(10,10,10,0.15) 86%,
    transparent   100%
  );
}

/* ── BOTTOM VIGNETTE — subtle depth at the bottom ── */
.hero-fade-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.7) 0%,
    rgba(10,10,10,0.2) 60%,
    transparent 100%
  );
}

/* ── TEXT CONTENT — stays on the left, always above fades ── */
.hero-content {
  position: relative;
  z-index: 3;              /* above both fade overlays */
  max-width: 580px;
  width: 50%;              /* never overlaps the video area */
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,133,58,0.12);
  border: 1px solid rgba(200,133,58,0.3);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '●';
  font-size: 8px;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--amber); }

.hero p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--amber);
  color: #000;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,133,58,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

.hero-dots {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: var(--amber); width: 28px; border-radius: 4px; }


/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--amber);
  letter-spacing: 1px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}


/* ════════════════════════════════
   SECTION COMMONS
════════════════════════════════ */
section { padding: 100px 48px; }

.section-header { margin-bottom: 60px; }

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 30px; height: 1.5px;
  background: var(--amber);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--amber); }

.section-sub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 14px;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}


/* ════════════════════════════════
   CATEGORIES
════════════════════════════════ */
.categories { background: var(--bg); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card:hover .cat-overlay { opacity: 1; }
.cat-card:first-child { grid-row: span 2; height: auto; min-height: 660px; }

.cat-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  opacity: 0.12;
}

.cat-overlay {
  position: absolute; inset: 0;
  background: rgba(200,133,58,0.08);
  opacity: 0;
  transition: opacity 0.3s;
  border: 1.5px solid var(--amber);
  border-radius: var(--radius);
}

.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, transparent 100%);
}
.cat-icon { font-size: 28px; margin-bottom: 8px; }
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.cat-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.cat-count {
  display: inline-block;
  margin-top: 10px;
  background: rgba(200,133,58,0.15);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}


/* ════════════════════════════════
   SHOP
════════════════════════════════ */
.shop { background: var(--surface); }

.shop-filters {
  display: flex; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(200,133,58,0.08);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(200,133,58,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-img {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-badge.custom { background: var(--amber); color: #000; }

.product-info { padding: 20px; }
.product-cat {
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--amber);
  letter-spacing: 1px;
}
.product-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.add-to-cart {
  background: var(--amber);
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.add-to-cart:hover { background: var(--amber-lt); transform: scale(1.05); }
.add-to-cart.custom-order {
  background: transparent;
  border: 1.5px solid var(--amber);
  color: var(--amber);
}
.add-to-cart.custom-order:hover { background: var(--amber); color: #000; }


/* ════════════════════════════════
   CUSTOM ORDER SECTION
════════════════════════════════ */
.custom-order { background: var(--bg); }

.custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.custom-steps { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }

.custom-step { display: flex; gap: 16px; align-items: flex-start; }

.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,133,58,0.12);
  border: 1.5px solid var(--amber);
  color: var(--amber);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.step-text h4 { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.step-text p  { font-size: 13px; color: var(--muted); line-height: 1.5; }

.order-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 700;
}
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--amber); }
.form-select option { background: var(--bg); }
.form-textarea { resize: vertical; min-height: 100px; }

.file-upload {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload:hover { border-color: var(--amber); }
.file-upload input { display: none; }
.file-upload p  { font-size: 13px; color: var(--muted); margin-top: 6px; }
.file-upload span { font-size: 28px; }

.form-submit {
  width: 100%;
  background: var(--amber);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.form-submit:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,133,58,0.3);
}


/* ════════════════════════════════
   CART SIDEBAR
════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: var(--cart-width);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); }
.cart-close { background: none; border: none; color: var(--muted); font-size: 22px; cursor: pointer; }
.cart-close:hover { color: var(--cream); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
}

.cart-empty {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 40px; text-align: center;
}
.cart-empty-icon { font-size: 56px; opacity: 0.3; }
.cart-empty p { color: var(--muted); font-size: 15px; }

.cart-item {
  display: flex; gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.cart-item-icon { font-size: 36px; }
.cart-item-details { flex: 1; }
.cart-item-name  { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--amber); letter-spacing: 1px; }

.cart-item-remove {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  font-size: 16px; align-self: flex-start;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #e74c3c; }

.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  width: 24px; height: 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between;
  margin-bottom: 20px;
}
.cart-total span  { font-size: 15px; color: var(--muted); }
.cart-total strong { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--amber); letter-spacing: 1px; }

.checkout-btn {
  width: 100%;
  background: var(--amber);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.checkout-btn:hover { background: var(--amber-lt); }

.payment-methods { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.payment-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}


/* ════════════════════════════════
   CHECKOUT MODAL
════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--cream); margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.modal-close-btn {
  position: absolute; right: 20px; top: 20px;
  background: none; border: none;
  color: var(--muted); font-size: 24px; cursor: pointer;
}

.payment-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.payment-option {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.payment-option:hover,
.payment-option.selected { border-color: var(--amber); background: rgba(200,133,58,0.06); }
.payment-option-icon { font-size: 28px; }
.payment-option-text h4 { font-size: 15px; font-weight: 600; color: var(--cream); }
.payment-option-text p  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.payment-option input[type="radio"] { margin-left: auto; accent-color: var(--amber); width: 16px; height: 16px; }


/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
.gallery { background: var(--surface); }

.gallery-grid { columns: 3; column-gap: 16px; }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:nth-child(1) { height: 260px; }
.gallery-item:nth-child(4) { height: 300px; }
.gallery-item:nth-child(7) { height: 240px; }
.gallery-item:hover { transform: scale(0.98); }

.gallery-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0, rgba(0,0,0,0.8), transparent);
  padding: 16px 14px 10px;
  font-size: 13px; font-weight: 600; color: var(--cream);
}


/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--amber); font-size: 14px; margin-bottom: 12px; }
.testimonial-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #000;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--cream); }
.author-role { font-size: 12px; color: var(--muted); }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 48px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--muted); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--amber); text-decoration: none; }


/* ════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  animation: float-pulse 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
}


/* ════════════════════════════════
   TOAST NOTIFICATION
════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface);
  border: 1px solid var(--amber);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 3000;
  transition: transform 0.4s;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }


/* ════════════════════════════════
   SCROLL REVEAL
════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  nav         { padding: 16px 24px; }
  .nav-links  { display: none; }
  section     { padding: 70px 24px; }
  .hero       { padding: 70px 24px; }
  .stats-bar  { padding: 20px 24px; }

  .cat-grid            { grid-template-columns: 1fr; }
  .cat-card:first-child { min-height: 320px; }

  .custom-layout        { grid-template-columns: 1fr; }
  .gallery-grid         { columns: 2; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .cart-sidebar         { width: 100%; }

  /* On mobile — slides go full width with a dark overlay instead */
  .hero-slides {
    left: 0;
  }
  .hero-fade-left {
    left: 0;
    width: 100%;
    background: linear-gradient(
      to right,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.75) 50%,
      rgba(10,10,10,0.4)  100%
    );
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
  }
}