/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #faf7f2;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --cream: #faf7f2;
  --sage: #f0f4f1;
  --rose: #f4e6e1;
  --gold: #c5a059;
  --charcoal: #1a1a1a;
  --body: #5a5a5a;
  --white: #ffffff;
  --container: 1440px;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

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

.section-label { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.section-label.light { color: var(--gold); }
.section-title { font-size: 2.5rem; color: var(--charcoal); line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-desc { color: var(--body); max-width: 36rem; margin: 0 auto 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }

.pickup-inline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.2);
  font-size: 0.75rem; color: var(--charcoal);
}
.pickup-inline svg { color: var(--gold); flex-shrink: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease;
}
.btn-primary { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: rgba(26,26,26,0.8); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: rgba(26,26,26,0.8); }
.btn-white { background: var(--white); color: var(--charcoal); }
.btn-white:hover { background: var(--gold); color: var(--white); }
.btn-outline-white { border: 1px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: rgba(197,160,89,0.8); }
.btn-whatsapp { background: #25D366; color: var(--white); gap: 0.5rem; }
.btn-whatsapp:hover { background: #1da851; }
.btn-pay { background: var(--charcoal); color: var(--white); width: 100%; padding: 1rem; font-size: 0.7rem; }
.btn-pay:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-full { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--charcoal); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; transition: color 0.3s; }
.link-arrow:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.5s; height: 5rem; }
.navbar.scrolled, .navbar:hover { background: rgba(250,247,242,0.9); backdrop-filter: blur(10px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; position: relative; }
.menu-toggle { padding: 0.5rem; opacity: 0.8; transition: opacity 0.3s; }
.menu-toggle:hover { opacity: 0.5; }
.logo { position: absolute; left: 50%; transform: translateX(-50%); }
.logo img { height: 3.5rem; width: auto; object-fit: contain; }
.cart-btn { position: relative; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background 0.3s; }
.cart-btn:hover { background: rgba(26,26,26,0.8); }
.cart-badge { position: absolute; top: -4px; right: -4px; width: 1.25rem; height: 1.25rem; background: var(--gold); color: var(--white); font-size: 0.6rem; font-weight: 500; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ===== MOBILE MENU ===== */
.menu-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(26,26,26,0.4); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.menu-overlay.active { opacity: 1; pointer-events: auto; }
.menu-panel { position: fixed; top: 0; left: 0; bottom: 0; width: 100%; max-width: 28rem; background: var(--cream); z-index: 70; transform: translateX(-100%); transition: transform 0.4s ease-out; overflow-y: auto; }
.menu-panel.active { transform: translateX(0); }
.menu-header { display: flex; align-items: center; justify-content: space-between; padding: 2rem; border-bottom: 1px solid rgba(26,26,26,0.1); }
.menu-logo { height: 3rem; width: auto; }
.menu-close { padding: 0.5rem; opacity: 0.6; transition: opacity 0.3s; }
.menu-close:hover { opacity: 1; }
.menu-nav { padding: 1rem 2rem; }
.menu-link { display: block; padding: 1rem 0; font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: var(--charcoal); border-bottom: 1px solid rgba(26,26,26,0.08); transition: color 0.3s; }
.menu-link:hover { color: var(--gold); }
.menu-footer { padding: 2rem; border-top: 1px solid rgba(26,26,26,0.1); }
.menu-label { font-size: 0.75rem; color: var(--body); margin-bottom: 0.25rem; }
.menu-contact { font-size: 1.1rem; color: var(--charcoal); transition: color 0.3s; }
.menu-contact:hover { color: var(--gold); }
.menu-text { color: var(--charcoal); font-size: 0.9rem; }
.menu-disclaimer { font-size: 0.7rem; color: var(--body); margin-top: 1rem; font-style: italic; }

/* ===== CART SIDEBAR ===== */
.cart-overlay { position: fixed; inset: 0; z-index: 70; background: rgba(26,26,26,0.4); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.active { opacity: 1; pointer-events: auto; }
.cart-sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 28rem; background: var(--cream); z-index: 80; transform: translateX(100%); transition: transform 0.4s ease-out; display: flex; flex-direction: column; }
.cart-sidebar.active { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid rgba(26,26,26,0.1); }
.cart-header h3 { font-size: 1.5rem; }
.cart-close { padding: 0.5rem; opacity: 0.6; transition: opacity 0.3s; }
.cart-close:hover { opacity: 1; }
.cart-pickup-notice { margin: 1rem 1.5rem 0; padding: 0.75rem; background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.2); display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.75rem; color: var(--charcoal); }
.cart-pickup-notice svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.cart-pickup-notice strong { display: block; margin-bottom: 2px; }
.cart-pickup-notice span { color: var(--body); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { display: none; flex-direction: column; align-items: center; justify-content: center; flex: 1; padding: 2rem; text-align: center; }
.cart-empty svg { color: rgba(26,26,26,0.15); margin-bottom: 1rem; }
.cart-empty-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.cart-empty-desc { color: var(--body); font-size: 0.875rem; margin-bottom: 1.5rem; }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(26,26,26,0.1); background: var(--white); }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.875rem; }
.cart-row span { color: var(--body); }
.cart-free { color: var(--gold); font-weight: 500; }
.cart-total { padding-top: 1rem; border-top: 1px solid rgba(26,26,26,0.1); margin-top: 0.5rem; }
.cart-total span { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--charcoal); }
.cart-total strong { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: var(--charcoal); }
.cart-pickup-footer { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; font-size: 0.6rem; color: var(--body); text-align: center; justify-content: center; }
.cart-pickup-footer svg { color: var(--gold); flex-shrink: 0; }

/* Cart Item */
.cart-item { display: flex; gap: 1rem; padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(26,26,26,0.06); }
.cart-item-img { width: 5rem; height: 5rem; background: var(--sage); flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-sku { font-size: 0.55rem; font-weight: 500; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { color: var(--gold); font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.qty-btn { width: 1.75rem; height: 1.75rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(26,26,26,0.2); transition: background 0.2s; }
.qty-btn:hover { background: var(--sage); }
.qty-val { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.cart-item-remove { margin-left: auto; font-size: 0.7rem; color: var(--body); text-decoration: underline; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--charcoal); }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(45deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.22) 55%, rgba(26,26,26,0) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .hero-content { padding: 0 3rem; } }
.hero-label { color: rgba(255,255,255,0.8); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.hero-title { color: var(--white); font-size: 3.5rem; font-weight: 500; line-height: 1.05; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .hero-title { font-size: 5rem; } }
.hero-desc { color: rgba(255,255,255,0.9); font-size: 1.1rem; font-weight: 300; max-width: 28rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-actions .btn { font-size: 0.75rem; padding: 1rem 2.25rem; }
.hero-pickup { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.75); font-size: 0.75rem; }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-image { overflow: hidden; aspect-ratio: 4/5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--body); margin-bottom: 1rem; line-height: 1.7; }

/* ===== PRODUCTS ===== */
.products-section { background: var(--sage); }
.filters { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: 0.5rem 1.25rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; border: 1px solid rgba(26,26,26,0.2); color: var(--charcoal); background: transparent; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.products-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product Card */
.product-card { background: var(--cream); overflow: hidden; }
.product-img { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease, transform 0.7s ease; }
.product-img .img-real { position: absolute; inset: 0; z-index: 1; }
.product-img .img-context { position: absolute; inset: 0; z-index: 0; }
.product-card:hover .product-img .img-real { opacity: 0; }
.product-card:hover .product-img .img-context { transform: scale(1.05); }
.product-tag { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.75rem; background: var(--gold); color: var(--white); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; z-index: 2; }
.product-hover { position: absolute; inset: 0; z-index: 3; background: rgba(26,26,26,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; opacity: 0; }
.product-card:hover .product-hover { background: rgba(26,26,26,0.3); opacity: 1; }
.product-hover .btn { transform: translateY(10px); transition: transform 0.3s; font-size: 0.6rem; padding: 0.6rem 1.2rem; }
.product-card:hover .product-hover .btn { transform: translateY(0); }
.product-info { padding: 1.25rem; display: flex; flex-direction: column; min-height: 9rem; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-desc { color: var(--body); font-size: 0.78rem; line-height: 1.5; margin-bottom: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-size: 1.1rem; font-weight: 500; color: var(--charcoal); }
.product-add { width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(26,26,26,0.2); transition: all 0.3s; }
.product-add:hover { background: var(--charcoal); color: var(--white); }

/* ===== BATA SECTION ===== */
.bata-section { background: var(--rose); }
.bata-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .bata-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.bata-text p { color: var(--body); margin-bottom: 1rem; line-height: 1.7; }
.bata-price { margin-bottom: 1rem; }
.bata-price strong { color: var(--charcoal); }
.bata-video { overflow: hidden; aspect-ratio: 3/4; }
.bata-video video { width: 100%; height: 100%; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--charcoal); padding: 5rem 0; }
.testimonials .container { text-align: center; }
.testimonials .section-title { color: var(--white); margin-bottom: 2.5rem; }
.testimonials-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; text-align: left; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); padding: 1.75rem; display: flex; flex-direction: column; }
.testimonial-star { margin-bottom: 1rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.9); font-style: italic; line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
.testimonial-author { margin-top: auto; }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.875rem; font-weight: 500; }
.testimonial-author span { display: block; color: rgba(255,255,255,0.55); font-size: 0.75rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ===== LOCATION ===== */
.location-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.location-map { position: relative; min-height: 400px; }
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.15) sepia(0.08); }
.location-info { display: flex; flex-direction: column; justify-content: center; }
.location-info p { color: var(--body); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-list { margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--charcoal); font-size: 0.875rem; }
.contact-item span, .contact-item a { color: var(--body); font-size: 0.875rem; }
.contact-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--sage); padding: 4rem 0 0; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-logo { height: 5rem; width: auto; margin-bottom: 1rem; }
.footer-desc { color: var(--body); font-size: 0.875rem; line-height: 1.7; max-width: 20rem; }
.footer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--charcoal); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--body); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 3rem; padding: 1.5rem 0; border-top: 1px solid rgba(26,26,26,0.1); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.7rem; color: var(--body); }

/* ===== CHECKOUT MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(26,26,26,0.4); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 900px; background: var(--cream); z-index: 100; transform: translateX(100%); transition: transform 0.4s ease-out; overflow-y: auto; display: flex; flex-direction: column; }
.modal.active { transform: translateX(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid rgba(26,26,26,0.1); position: sticky; top: 0; background: var(--cream); z-index: 5; }
.modal-title { font-size: 1.75rem; }
.modal-close { padding: 0.5rem; opacity: 0.6; transition: opacity 0.3s; }
.modal-close:hover { opacity: 1; }
.modal-body { padding: 1.5rem; flex: 1; }

.pickup-banner { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.2); margin-bottom: 1.5rem; }
.pickup-banner svg { flex-shrink: 0; margin-top: 2px; }
.pickup-banner strong { display: block; color: var(--charcoal); font-size: 0.875rem; }
.pickup-banner p { color: var(--body); font-size: 0.8rem; }

.checkout-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .checkout-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.checkout-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--charcoal); margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--body); margin-bottom: 0.25rem; }
.form-group input { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(26,26,26,0.2); background: var(--white); font-size: 0.875rem; transition: border-color 0.3s; }
.form-group input:focus { outline: none; border-color: var(--gold); }

.payment-options { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid rgba(26,26,26,0.2); text-align: left; transition: all 0.3s; }
.payment-option:hover { border-color: rgba(26,26,26,0.4); }
.payment-option.selected { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.payment-option svg { flex-shrink: 0; }
.payment-option strong { display: block; font-size: 0.875rem; }
.payment-option span { font-size: 0.75rem; color: var(--body); }
.payment-option.selected span { color: rgba(255,255,255,0.7); }
.payment-tag { margin-left: auto; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; padding: 0.2rem 0.5rem; background: rgba(255,255,255,0.2); white-space: nowrap; }

.terms-check { margin-top: 1.5rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; color: var(--body); cursor: pointer; }
.checkbox-label input { margin-top: 2px; }
.checkbox-label a { color: var(--gold); text-decoration: underline; }

.checkout-summary { margin-bottom: 1rem; }
.checkout-summary-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(26,26,26,0.06); }
.checkout-summary-item img { width: 3.5rem; height: 3.5rem; object-fit: cover; background: var(--sage); }
.checkout-summary-item div { flex: 1; min-width: 0; }
.checkout-sku { display: block; font-size: 0.55rem; font-weight: 500; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1px; }
.checkout-summary-item strong { display: block; font-size: 0.8rem; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-summary-item span { font-size: 0.75rem; color: var(--body); }
.checkout-spec { display: block; font-size: 0.65rem; color: var(--body); font-style: italic; }
.checkout-totals { border-top: 1px solid rgba(26,26,26,0.1); padding-top: 1rem; }
.total-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.875rem; }
.total-row span { color: var(--body); }
.total-row strong { color: var(--charcoal); }
.total-row .free { color: var(--gold); font-weight: 500; }
.total-final { padding-top: 0.75rem; border-top: 1px solid rgba(26,26,26,0.1); margin-top: 0.5rem; }
.total-final span { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.total-final strong { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; }
.pickup-mini { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 1rem; padding: 0.75rem; background: var(--sage); font-size: 0.7rem; color: var(--body); }
.pickup-mini svg { flex-shrink: 0; margin-top: 1px; }

.error-msg { background: #fef2f2; border: 1px solid #fecaca; padding: 0.75rem 1rem; color: #dc2626; font-size: 0.8rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }

/* ===== THANKS PAGE ===== */
.page-thanks { padding-top: 8rem; padding-bottom: 4rem; min-height: 100vh; }
.thanks-loading { text-align: center; padding: 4rem 0; }
.spinner { width: 3rem; height: 3rem; border: 2px solid rgba(197,160,89,0.2); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.thanks-success, .thanks-failure { text-align: center; max-width: 48rem; margin: 0 auto; }
.thanks-icon { margin-bottom: 1.5rem; }
.thanks-title { font-size: 2.5rem; color: var(--charcoal); margin-bottom: 0.75rem; }
.thanks-desc { color: var(--body); margin-bottom: 2rem; font-size: 1.05rem; }
.pickup-card { background: rgba(197,160,89,0.1); border: 2px solid rgba(197,160,89,0.3); padding: 1.5rem; margin-bottom: 2rem; text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
.pickup-card > svg { flex-shrink: 0; }
.pickup-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pickup-card p { color: var(--body); font-size: 0.9rem; margin-bottom: 1rem; }
.pickup-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pickup-detail { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.75rem; background: var(--white); }
.pickup-detail svg { flex-shrink: 0; margin-top: 2px; }
.pickup-detail strong { display: block; font-size: 0.8rem; }
.pickup-detail span { font-size: 0.8rem; color: var(--body); }
.whatsapp-cta { background: var(--charcoal); padding: 1.5rem; color: var(--white); margin-bottom: 2rem; text-align: left; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .whatsapp-cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.whatsapp-cta h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 0.25rem; }
.whatsapp-cta p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.info-box { background: var(--sage); padding: 1.5rem; margin-bottom: 2rem; text-align: left; }
.info-box h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.info-box ul { list-style: none; }
.info-box li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--body); margin-bottom: 0.5rem; }
.info-box li::before { content: ""; width: 1rem; height: 1rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 2px; }

/* ===== LEGAL PAGES ===== */
.page-legal { padding-top: 8rem; padding-bottom: 4rem; }
.legal-title { font-size: 2.5rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.legal-date { color: var(--body); font-size: 0.875rem; margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.25rem; color: var(--charcoal); margin: 2rem 0 0.75rem; }
.legal-content p { color: var(--body); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.75rem; }
.legal-content ul { margin: 0.75rem 0 0.75rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--body); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.4rem; }
.legal-highlight { background: var(--sage); padding: 1rem; font-weight: 500; color: var(--charcoal); margin: 1rem 0; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Páginas internas (multipágina) ── */
.page-head{padding:9rem 0 2rem;text-align:center;background:linear-gradient(180deg,#faf8f5,#fff)}
.page-head .section-title{margin:.3rem 0 .6rem}
.breadcrumb-mini{font-size:.72rem;letter-spacing:1px;text-transform:uppercase;color:#a89a86;margin-bottom:1rem;font-family:'DM Sans',sans-serif}
.breadcrumb-mini a{color:#c5a059}
.page-simple{padding:3rem 0 5rem}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.value-box{background:#faf8f5;border:1px solid #efe9e0;border-radius:14px;padding:2rem 1.6rem;text-align:center}
.value-box svg{color:#c5a059;margin-bottom:1rem}
.value-box h3{font-family:'Cormorant Garamond',serif;font-size:1.4rem;margin-bottom:.5rem}
.value-box p{font-size:.9rem;color:#6b6255;line-height:1.7}
@media(max-width:768px){.values-grid{grid-template-columns:1fr}.page-head{padding:7rem 0 1.5rem}}

/* ── FAQ acordeón ── */
.faq-list{max-width:760px;margin:0 auto}
.faq-row{border:1px solid #efe9e0;border-radius:12px;margin-bottom:.8rem;overflow:hidden;background:#fff}
.faq-question{width:100%;text-align:left;background:none;border:none;padding:1.2rem 1.4rem;font-family:'DM Sans',sans-serif;font-size:1rem;font-weight:500;color:#2a251e;display:flex;justify-content:space-between;align-items:center;gap:1rem;cursor:pointer}
.faq-question span{color:#c5a059;font-size:1.4rem;flex-shrink:0}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-answer p{padding:0 1.4rem 1.2rem;color:#6b6255;line-height:1.7;font-size:.92rem}

/* ── Product stock badge ── */
.product-stock { position: absolute; bottom: 0.75rem; left: 0.75rem; padding: 0.25rem 0.6rem; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; z-index: 4; }
.product-stock.low { background: #fff0e6; color: #9a3412; border: 1px solid rgba(154,52,18,0.15); }
.product-stock.out { background: #fee2e2; color: #991b1b; border: 1px solid rgba(153,27,27,0.15); }

/* ── Lightbox ── */
.lightbox-overlay { position: fixed; inset: 0; z-index: 95; background: rgba(26,26,26,0.88); opacity: 0; pointer-events: none; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.lightbox-overlay.active { opacity: 1; pointer-events: auto; }
.lightbox { position: relative; background: var(--cream); width: 100%; max-width: 900px; max-height: 90vh; overflow-y: auto; display: flex; flex-direction: column; }
@media (min-width: 768px) { .lightbox { flex-direction: row; max-height: 80vh; } }
.lightbox-close { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 5; width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.9); border-radius: 50%; color: var(--charcoal); transition: background 0.2s; }
.lightbox-close:hover { background: var(--white); }
.lightbox-media { flex: 1.2; background: var(--sage); min-height: 280px; display: flex; align-items: center; justify-content: center; }
.lightbox-media img { width: 100%; height: 100%; object-fit: cover; max-height: 60vh; }
@media (min-width: 768px) { .lightbox-media { min-height: auto; } .lightbox-media img { max-height: 80vh; } }
.lightbox-info { flex: 1; padding: 2rem; display: flex; flex-direction: column; }
.lightbox-name { font-size: 1.75rem; margin-bottom: 0.75rem; }
.lightbox-desc { color: var(--body); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.lightbox-price { font-size: 1.5rem; font-weight: 500; color: var(--charcoal); margin-bottom: 1.5rem; margin-top: auto; }
.lightbox-info .btn { margin-top: 0; }

/* ── Sticky mobile cart CTA ── */
.sticky-cart-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--white); border-top: 1px solid rgba(26,26,26,0.08); padding: 0.75rem 1rem; display: none; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: 0 -4px 12px rgba(0,0,0,0.05); }
.sticky-cart-bar.active { display: flex; }
.sticky-cart-total { display: flex; flex-direction: column; }
.sticky-cart-total span { font-size: 0.65rem; color: var(--body); text-transform: uppercase; letter-spacing: 1px; }
.sticky-cart-total strong { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--charcoal); }
.sticky-cart-bar .btn { padding: 0.75rem 1.5rem; font-size: 0.65rem; }
@media (min-width: 768px) { .sticky-cart-bar { display: none !important; } body.has-sticky-cart { padding-bottom: 0; } }
@media (max-width: 767px) { body.has-sticky-cart { padding-bottom: 76px; } }

@media (prefers-reduced-motion: reduce) {
  .lightbox-overlay, .sticky-cart-bar { transition: none; }
}
