/* ============================================
   FAWLUX - COMPLETE CSS
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0a0a0a;
  --card: #111;
  --text: #e9e9e9;
  --muted: #bdbdbd;
  --gold: #d4af37;
  --accent: var(--gold);
  --link: #e8d27e;
  --maxw: 1100px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== WARM CREAM LIGHT THEME ===== */
[data-theme="white"] {
  --bg: #faf6f0;
  --card: #ffffff;
  --text: #1e1e1e;
  --muted: #7a7a7a;
  --gold: #c9a84c;
  --accent: #c9a84c;
  --link: #c9a84c;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
}
img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,.85);
  border-bottom: 1px solid #1d1d1d;
  transition: all 0.4s ease;
}
[data-theme="white"] .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0,0,0,0.06);
}
.nav-wrapper {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 14px 0;
}
.brand {
  grid-column: 2 !important;
  justify-self: center !important;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .5px;
}
.header-controls {
  grid-column: 3 !important;
  justify-self: end !important;
  display: flex !important;
  gap: 12px !important;
  align-items: center;
}
.brand-text {
  font-family: "Playfair Display", serif;
  font-weight: 900 !important;
  font-size: 1.8rem !important;
  letter-spacing: 4px !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s var(--ease);
}
[data-theme="white"] .brand-text { 
  text-shadow: 0 1px 3px rgba(0,0,0,0.08);
  color: #1e1e1e;
}
.brand:hover .brand-text {
  transform: scale(1.03);
  text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.theme-switcher {
  width: 42px;
  height: 42px;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}
[data-theme="white"] .theme-switcher {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
.theme-switcher:hover { transform: scale(1.05); border-color: var(--accent); }
.theme-icon { transition: all 0.3s var(--ease); position: absolute; }
.theme-icon.moon { opacity: 0; transform: rotate(-90deg); }
.theme-icon.sun { opacity: 1; transform: rotate(0); }
[data-theme="white"] .theme-icon.moon { opacity: 1; transform: rotate(0); color: #1e1e1e; }
[data-theme="white"] .theme-icon.sun { opacity: 0; transform: rotate(90deg); }

/* ===== CART ICON ===== */
.cart-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--text);
}
[data-theme="white"] .cart-icon {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #1e1e1e;
}
.cart-icon:hover {
  border-color: var(--accent);
  transform: scale(1.05);
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cart-badge.hidden {
  transform: scale(0);
  opacity: 0;
}

/* ===== NAVIGATION ===== */
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
[data-theme="white"] .nav-links a { color: #1e1e1e; }
.nav-links a:hover { background: rgba(255,255,255,.05); }
[data-theme="white"] .nav-links a:hover { background: rgba(0,0,0,.05); }
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  background: #121212;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
[data-theme="white"] .hamburger {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #eaeaea;
  transition: all 0.3s ease;
}
[data-theme="white"] .hamburger span { background: #1e1e1e; }
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 20px;
    flex-direction: column;
    background: var(--card);
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 12px;
    display: none;
    box-shadow: var(--shadow);
  }
  [data-theme="white"] .nav-links { border-color: rgba(0,0,0,0.06); }
  .nav-links.open { display: flex; }
  .brand-text {
    font-size: 1.5rem !important;
    letter-spacing: 3px !important;
  }
}
@media (max-width: 480px) {
  .brand-text {
    font-size: 1.3rem !important;
    letter-spacing: 2px !important;
  }
}

/* ===== HERO ===== */
.hero {
  background: radial-gradient(1200px 600px at 70% -10%, rgba(212,175,55,.15), transparent 60%), linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 84px 0 64px;
  border-bottom: 1px solid #141414;
  transition: all 0.4s ease;
}
[data-theme="white"] .hero {
  background: radial-gradient(1200px 600px at 70% -10%, rgba(201,168,76,.08), transparent 60%), linear-gradient(180deg, #faf6f0 0%, #ffffff 100%);
  border-bottom-color: rgba(0,0,0,0.06);
}
.hero-inner h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.hero-inner .accent { color: var(--accent); }
.lead {
  color: var(--muted);
  max-width: 720px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.page-hero {
  padding: 56px 0 24px;
  border-bottom: 1px solid #141414;
  background: linear-gradient(180deg, #0b0b0b, #0a0a0a);
  transition: all 0.4s ease;
}
[data-theme="white"] .page-hero {
  background: linear-gradient(180deg, #faf6f0, #ffffff);
  border-bottom-color: rgba(0,0,0,0.06);
}
.page-hero h1 { margin: 0 0 8px; }

/* ===== BUTTONS ===== */
.btn-cta, .btn-ghost {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s var(--ease);
}
.btn-cta {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}
[data-theme="white"] .btn-cta {
  background-color: #c9a84c !important;
  border-color: #c9a84c !important;
  color: #ffffff !important;
}
[data-theme="white"] .btn-cta:hover {
  box-shadow: 0 10px 25px rgba(201,168,76,0.3);
}
.btn-ghost {
  background-color: transparent !important;
  color: var(--text) !important;
  border: 1px solid var(--muted) !important;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: #1a1a1a !important;
}
[data-theme="white"] .btn-ghost {
  border-color: #c9a84c !important;
  color: #1e1e1e !important;
}
[data-theme="white"] .btn-ghost:hover {
  background: #c9a84c !important;
  color: #ffffff !important;
}
.btn-cta.full { display: block; text-align: center; margin-top: 12px; }

/* ===== ABOUT ===== */
.about.container { padding: 56px 20px; }
.about.container h2,
.about.container p,
.about.container .pill-list {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.pill-list li {
  border: 1px solid #2a2a2a;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ddd;
  transition: all 0.3s ease;
}
[data-theme="white"] .pill-list li {
  border-color: rgba(0,0,0,0.1);
  color: #7a7a7a;
}

/* ===== FEATURES ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 56px;
}
.feature-grid article {
  background: var(--card);
  border: 1px solid #1f1f1f;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
[data-theme="white"] .feature-grid article { 
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }

/* ===== PRODUCT COLLECTION ===== */
.product-collection {
  padding: 5rem 0;
  background: transparent !important;
}
.category-section {
  margin-bottom: 4rem;
}
.category-header {
  display: flex;
  align-items: center;
  justify-content: center !important;
  margin-bottom: 1.5rem;
  padding: 0 10px;
}
.category-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.product-slider {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.slider-track {
  display: flex !important;
  gap: 20px !important;
  transition: transform 0.5s ease !important;
  will-change: transform !important;
}
.product-card {
  flex: 0 0 calc(33.333% - 14px) !important;
  min-width: 250px !important;
  max-width: calc(33.333% - 14px) !important;
  background: var(--card) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid var(--muted) !important;
  opacity: 1 !important;
  transition: all 0.4s ease !important;
  box-shadow: var(--shadow) !important;
  display: block !important;
}
.product-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15) !important;
}
[data-theme="white"] .product-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="white"] .product-card:hover {
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15) !important;
}
[data-theme="dark"] .product-card {
  background: #1a1a1a !important;
  border-color: #2a2a2a !important;
}
.product-image {
  overflow: hidden !important;
  aspect-ratio: 4/5 !important;
}
.product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s ease !important;
}
.product-card:hover .product-image img {
  transform: scale(1.05) !important;
}
.product-info {
  padding: 1.2rem 1.2rem 1.5rem !important;
  text-align: center !important;
}
.product-info h4 {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: 4px !important;
}
.product-code {
  font-size: 0.8rem !important;
  color: var(--muted) !important;
  margin-bottom: 12px !important;
  font-family: monospace !important;
  letter-spacing: 0.5px !important;
}
.add-to-cart {
  background: var(--accent) !important;
  color: #000 !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.add-to-cart:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3) !important;
}
.add-to-cart i {
  font-size: 0.8rem !important;
}
.product-slider .slider-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: var(--card) !important;
  border: 2px solid var(--accent) !important;
  color: var(--text) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 1.8rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  box-shadow: var(--shadow) !important;
}
.product-slider .slider-arrow:hover {
  background: var(--accent) !important;
  color: #000 !important;
  transform: translateY(-50%) scale(1.1) !important;
}
.product-slider .prev-slide {
  left: 0 !important;
}
.product-slider .next-slide {
  right: 0 !important;
}
.slider-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 1.5rem !important;
}
.slider-dots .dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: var(--muted) !important;
  opacity: 0.3 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  padding: 0 !important;
}
.slider-dots .dot.active {
  opacity: 1 !important;
  background: var(--accent) !important;
  transform: scale(1.2) !important;
}
.collection-cta {
  text-align: center !important;
  margin-top: 2rem !important;
}
@media (max-width: 900px) {
  .product-card {
    flex: 0 0 calc(50% - 10px) !important;
    min-width: 200px !important;
    max-width: calc(50% - 10px) !important;
  }
}
@media (max-width: 600px) {
  .product-card {
    flex: 0 0 calc(100% - 10px) !important;
    min-width: 180px !important;
    max-width: calc(100% - 10px) !important;
  }
  .product-slider {
    padding: 0 30px !important;
  }
  .product-slider .slider-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.4rem !important;
  }
  .category-header h3 {
    font-size: 1.4rem !important;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 50px;
}
.testimonial-slide { display: none; animation: fadeIn 0.8s ease; }
.testimonial-slide.active { display: block; }
.testimonial-card {
  background: var(--card);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
[data-theme="white"] .testimonial-card {
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}
[data-theme="white"] .testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(201,168,76,0.15);
}
.stars {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.1rem;
  position: relative;
  padding: 0 1rem;
}
.client {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 10;
}
[data-theme="white"] .testimonial-arrow {
  background: rgba(255,255,255,0.9);
  border-color: #c9a84c;
  color: #c9a84c;
}
.testimonial-arrow:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}
[data-theme="white"] .testimonial-arrow:hover {
  background: #c9a84c;
  color: #fff;
}
.prev-testimonial { left: 0; }
.next-testimonial { right: 0; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
[data-theme="white"] .testimonial-dot {
  background: rgba(0,0,0,0.2);
}
.testimonial-dot.active { background: var(--accent); transform: scale(1.2); }
.testimonial-dot:hover { background: var(--accent); transform: scale(1.1); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(90deg, rgba(212,175,55,.06), transparent 60%);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  transition: all 0.4s ease;
}
[data-theme="white"] .cta-band {
  background: linear-gradient(90deg, rgba(201,168,76,.06), transparent 60%);
  border-color: rgba(0,0,0,0.06);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px;
}
@media (max-width: 620px) {
  .cta-band .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== GALLERY ===== */
.gallery-grid {
  padding: 26px 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  background: var(--card);
  border: 1px solid #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
[data-theme="white"] .gallery-grid figure { border-color: rgba(0,0,0,0.06); }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption {
  padding: 10px 12px;
  color: #c7c7c7;
  font-size: .95rem;
  border-top: 1px solid #1b1b1b;
  transition: all 0.4s ease;
}
[data-theme="white"] .gallery-grid figcaption {
  color: #7a7a7a;
  border-top-color: rgba(0,0,0,0.06);
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT ===== */
.contact-grid { display: block; }
.contact-top-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form-card { width: 100%; }
.contact-card {
  background: var(--card);
  border: 1px solid #1f1f1f;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
[data-theme="white"] .contact-card { border-color: rgba(0,0,0,0.06); }
.map-wrap {
  margin-top: 10px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #1a1a1a;
  transition: all 0.4s ease;
}
[data-theme="white"] .map-wrap { border-color: rgba(0,0,0,0.06); }
.map-wrap iframe { width: 100%; height: 300px; border: 0; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}
.contact-icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.9;
}
.contact-form { display: grid; gap: 10px; margin-top: 8px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #2b2b2b;
  background: var(--card);
  color: var(--text);
  transition: all 0.4s ease;
}
[data-theme="white"] .contact-form input,
[data-theme="white"] .contact-form textarea,
[data-theme="white"] .contact-form select {
  border-color: rgba(0,0,0,0.1);
  background: var(--card);
}
.contact-form button { border: 0; }
.form-note {
  color: #a9a9a9;
  font-size: .95rem;
  margin-top: 8px;
  transition: all 0.4s ease;
}
[data-theme="white"] .form-note { color: #7a7a7a; }
.google-business {
  padding: 1.5rem;
  text-align: center;
  background: var(--card);
  border-radius: var(--radius);
  margin-top: 1rem;
  border: 1px solid #2a2a2a;
  transition: all 0.4s ease;
}
[data-theme="white"] .google-business { border-color: rgba(0,0,0,0.06); }
.google-business h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.business-hours {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #2a2a2a;
  margin-top: 1rem;
  transition: all 0.4s ease;
}
[data-theme="white"] .business-hours { border-color: rgba(0,0,0,0.06); }
.business-hours h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #2a2a2a;
  color: var(--muted);
  transition: all 0.4s ease;
}
[data-theme="white"] .hours-list li { border-bottom-color: rgba(0,0,0,0.06); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: #ff6b6b; }
[data-theme="white"] .hours-list .closed { color: #e74c3c; }
@media (max-width: 860px) { .contact-top-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid #161616;
  background: #0b0b0b;
  margin-top: 10px;
  transition: all 0.4s ease;
}
[data-theme="white"] .site-footer {
  background: #faf6f0;
  border-top-color: rgba(0,0,0,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
}
.foot-brand {
  text-decoration: none;
  color: inherit;
}
.foot-brand:hover { text-decoration: none; }
.foot-brand .brand-line { font-weight: 800; }
.foot-brand .tagline { color: var(--muted); }
.foot-links { display: flex; gap: 12px; flex-wrap: wrap; }
[data-theme="white"] .foot-links a { color: #1e1e1e; }
.foot-social { display: flex; gap: 12px; }
.icon {
  width: 22px;
  height: 22px;
  fill: var(--text);
  opacity: .9;
  transition: all 0.3s ease;
}
[data-theme="white"] .icon { fill: #1e1e1e; }
.copyright {
  text-align: center;
  color: #a0a0a0;
  border-top: 1px solid #161616;
  padding: 12px 0;
  font-size: .95rem;
  transition: all 0.4s ease;
}
[data-theme="white"] .copyright {
  color: #7a7a7a;
  border-top-color: rgba(0,0,0,0.06);
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* ===== CART MODAL ===== */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}
.cart-modal.open {
  display: flex;
}
.cart-modal-content {
  background: var(--card);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--muted);
}
.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--muted);
}
.cart-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.cart-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
  transition: all 0.3s ease;
}
.cart-close:hover {
  transform: rotate(90deg);
  color: var(--accent);
}
.cart-items {
  padding: 1.5rem 2rem;
  max-height: 50vh;
  overflow-y: auto;
}
.empty-cart {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}
.cart-item-details {
  flex: 1;
}
.cart-item-details h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}
.cart-item-details p {
  font-size: 0.8rem;
  color: var(--muted);
}
.cart-item-remove {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.cart-item-remove:hover {
  transform: scale(1.2);
}
.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--muted);
  text-align: center;
}
.cart-footer .btn-cta {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .cart-modal-content {
    width: 95% !important;
  }
  .cart-modal-header {
    padding: 1rem 1.2rem !important;
  }
  .cart-items {
    padding: 1rem 1.2rem !important;
  }
  .cart-footer {
    padding: 1rem 1.2rem !important;
  }
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s var(--ease);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  animation: none;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent) !important;
  color: #ffffff !important;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  transition: all 0.3s var(--ease);
  z-index: 100;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212,175,55,0.4);
}
[data-theme="white"] .back-to-top {
  background-color: #c9a84c !important;
  color: #ffffff !important;
}
[data-theme="white"] .back-to-top:hover {
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
}
.back-to-top.show { display: flex; }

/* ===== LOADING SPINNER ===== */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-spinner.hidden {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212,175,55,0.3);
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
.loading-spinner p {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  background: #0a0a0a;
}
.hero-slider input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 90vh;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background 0.4s ease;
  background: linear-gradient(135deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.20) 100%);
}
[data-theme="white"] .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.12) 100%);
}
[data-theme="dark"] .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.30) 100%);
}
.hero-slide .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
[data-theme="white"] .hero-slide .hero-inner {
  background: rgba(0, 0, 0, 0.50);
  padding: 40px 50px;
  border-radius: 16px;
  border-left: 4px solid #c9a84c;
}
[data-theme="dark"] .hero-slide .hero-inner {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px 50px;
  border-radius: 16px;
  border-left: 4px solid #d4af37;
}
.hero-slide h1 {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin: 0 0 12px;
}
.hero-slide .lead {
  color: #ffffff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  max-width: 720px;
}
[data-theme="white"] .hero-slide h1,
[data-theme="white"] .hero-slide .lead {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}
[data-theme="dark"] .hero-slide h1,
[data-theme="dark"] .hero-slide .lead {
  color: #ffffff;
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.8);
}
.hero-slide .accent {
  color: #d4af37;
}
[data-theme="white"] .hero-slide .accent {
  color: #c9a84c;
}
.hero-slide .btn-cta {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #000 !important;
}
[data-theme="white"] .hero-slide .btn-cta {
  background: #c9a84c !important;
  border-color: #c9a84c !important;
  color: #000 !important;
}
.hero-slide .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
}
.hero-slide .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #ffffff !important;
}
[data-theme="white"] .hero-slide .btn-ghost {
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
}
[data-theme="white"] .hero-slide .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}
.hero-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.hero-prev,
.hero-next {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
}
.hero-prev:hover,
.hero-next:hover {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
  transform: scale(1.1);
}
[data-theme="white"] .hero-prev,
[data-theme="white"] .hero-next {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
[data-theme="white"] .hero-prev:hover,
[data-theme="white"] .hero-next:hover {
  background: #c9a84c;
  color: #000;
  border-color: #c9a84c;
}
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 100;
}
.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
}
.hero-dot.active {
  background: #d4af37 !important;
  transform: scale(1.3) !important;
  border-color: #fff !important;
}
.hero-dot:hover {
  background: #d4af37;
  transform: scale(1.2);
}
[data-theme="white"] .hero-dot {
  background: rgba(255, 255, 255, 0.5);
}
[data-theme="white"] .hero-dot.active {
  background: #c9a84c !important;
  border-color: #c9a84c !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
  }
  .testimonials-slider { padding: 0 40px; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .hero-slider { min-height: 70vh; }
  .hero-slides { height: 70vh; }
  [data-theme="white"] .hero-slide .hero-inner,
  [data-theme="dark"] .hero-slide .hero-inner {
    padding: 25px 20px;
    margin: 0 15px;
  }
  .hero-prev,
  .hero-next {
    padding: 8px 12px;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
  }
  .hero-nav { padding: 0 10px; }
  .hero-dots { bottom: 20px; gap: 10px; }
  .hero-dot { width: 10px; height: 10px; }
}
@media (max-width: 480px) {
  .testimonials-slider { padding: 0 35px; }
  .testimonial-card { padding: 1.5rem 1rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.note { padding-bottom: 56px; }
.inline-cta { font-weight: 700; }

/* ===== In Cart Button State ===== */
.add-to-cart.in-cart {
  background: #ff6b6b !important;
  color: #fff !important;
  border-color: #ff6b6b !important;
}
.add-to-cart.in-cart:hover {
  background: #e74c3c !important;
  transform: scale(1.05) !important;
}
[data-theme="white"] .add-to-cart.in-cart {
  background: #e74c3c !important;
  color: #fff !important;
}