/* ============================================================
   SKINCEPT ESSENTIALS - Brand Design System
   Colors extracted from product packaging:
   - Warm Brown (serum label): #6B3A2A
   - Terracotta (sunblock tube): #C47A3A  
   - Deep Charcoal: #1A1412
   - Soft Cream: #FAF7F4
   - Stone White: #F0EBE5
   Designed & Developed by Code Saviours
   ============================================================ */
:root {
  --brand-brown:      #1A1412;
  --brand-terra:      #C47A3A;
  --brand-terra-light:#D4924E;
  --brand-dark:       #1A1412;
  --brand-cream:      #FAF7F4;
  --brand-stone:      #F5F0EB;
  --brand-mid:        #8B5E3C;
  --brand-light-tan:  #E8D5C0;
  --brand-white:      #FFFFFF;
  --brand-muted:      #8C7B6E;
  --brand-border:     #E8E0D8;
  --text-primary:     #1A1412;
  --text-secondary:   #5C4033;
  --text-muted:       #8C7B6E;
  --border-soft:      #E0CFC0;
  --shadow-warm:      0 4px 24px rgba(107,58,42,0.12);
  --shadow-card:      0 2px 20px rgba(26,20,18,0.08);
  --shadow-hover:     0 8px 32px rgba(26,20,18,0.14);
  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        20px;
  --radius-pill:      50px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', 'Segoe UI', sans-serif;
  background: var(--brand-cream);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
}

/* =================== TYPOGRAPHY =================== */
.font-display { font-family: 'Cormorant Garamond', 'Georgia', serif; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }

/* =================== ANNOUNCEMENT BAR =================== */
.announcement-bar {
  background: #1A1412;
  color: #FAF7F4;
  padding: 9px 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-bar-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.announcement-bar-track span {
  padding: 0 48px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================== NAVBAR =================== */
.navbar {
  background: var(--brand-white);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(107,58,42,0.07);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-brown);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-logo span { color: var(--brand-terra); }

.brand-tagline {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  margin-top: -4px;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-terra); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-brown);
  font-size: 1.3rem;
  padding: 4px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--brand-terra);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =================== HERO BANNER =================== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  loading: lazy;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,20,18,0.65) 0%, rgba(107,58,42,0.3) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  color: white;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-light-tan);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--brand-terra);
  width: 24px;
  border-radius: 4px;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Jost', sans-serif;
}

.btn-primary {
  background: var(--brand-terra);
  color: white;
}
.btn-primary:hover { background: var(--brand-brown); transform: translateY(-2px); box-shadow: var(--shadow-warm); }

.btn-outline {
  background: transparent;
  color: var(--brand-brown);
  border: 2px solid var(--brand-brown);
}
.btn-outline:hover { background: var(--brand-brown); color: white; }

.btn-white {
  background: white;
  color: var(--brand-brown);
}
.btn-white:hover { background: var(--brand-cream); transform: translateY(-2px); }

.btn-wa {
  background: #25D366;
  color: white;
}
.btn-wa:hover { background: #1aab4f; }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* =================== TRUST BAR =================== */
.trust-bar {
  background: var(--brand-stone);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.trust-icon { font-size: 1.2rem; }

/* =================== SECTION WRAPPER =================== */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-terra);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.section-title { color: var(--brand-brown); }
.section-subtitle { color: var(--text-muted); margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* =================== PRODUCT CARDS =================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
}

.product-image-wrap {
  position: relative;
  padding-top: 100%;
  background: var(--brand-stone);
  overflow: hidden;
}

.product-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-terra);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.product-body { padding: 20px; }
.product-category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand-terra); font-weight: 600; margin-bottom: 6px; }
.product-name { font-size: 1.15rem; font-weight: 600; color: var(--brand-brown); margin-bottom: 8px; font-family: 'Cormorant Garamond', serif; }
.product-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.product-price { font-size: 1.2rem; font-weight: 700; color: var(--brand-brown); }
.product-price .old-price { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; margin-right: 6px; font-weight: 400; }

/* =================== DEALS SECTION =================== */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }

.deal-card {
  background: linear-gradient(135deg, var(--brand-brown) 0%, var(--brand-mid) 100%);
  border-radius: var(--radius-md);
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.deal-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.deal-desc { font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.deal-products { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.deal-product-tag {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 12px;
}
.deal-price { font-size: 2rem; font-weight: 700; }
.deal-price small { font-size: 1rem; font-weight: 400; opacity: 0.8; }

/* =================== INGREDIENTS SECTION =================== */
.ingredients-section { background: var(--brand-stone); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.ingredient-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.ingredient-icon { font-size: 2rem; margin-bottom: 10px; }
.ingredient-name { font-weight: 600; color: var(--brand-brown); font-size: 14px; }

/* =================== REVIEWS =================== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.review-stars { color: var(--brand-terra); font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.review-author { font-weight: 600; color: var(--brand-brown); font-size: 13px; }

/* =================== CONTACT PAGE =================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

/* =================== FORMS =================== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--brand-cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Jost', sans-serif;
}
.form-control:focus {
  outline: none;
  border-color: var(--brand-terra);
  box-shadow: 0 0 0 3px rgba(196,122,58,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* =================== CART SIDEBAR =================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,18,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: white;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(26,20,18,0.2);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-size: 1.1rem; color: var(--brand-brown); }

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--brand-stone);
}

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--brand-brown); margin-bottom: 4px; }
.cart-item-price { font-size: 14px; color: var(--brand-terra); font-weight: 700; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--brand-brown); color: white; border-color: var(--brand-brown); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-soft);
  background: var(--brand-stone);
}
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; }
.cart-total-row.grand { font-size: 1.05rem; font-weight: 700; color: var(--brand-brown); padding-top: 10px; border-top: 1px solid var(--border-soft); margin-top: 8px; }

/* =================== ORDER TRACKING =================== */
.tracking-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.tracking-step {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.tracking-step:last-child { padding-bottom: 0; }

.step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-stone);
  border: 2.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.step-icon.completed {
  background: var(--brand-terra);
  border-color: var(--brand-terra);
  color: white;
}

.step-icon.active {
  background: var(--brand-brown);
  border-color: var(--brand-brown);
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,58,42,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(107,58,42,0); }
}

.step-line {
  width: 2px;
  flex: 1;
  background: var(--border-soft);
  margin-top: 4px;
  min-height: 20px;
}

.step-line.completed { background: var(--brand-terra); }

.step-content { padding-top: 8px; }
.step-label { font-weight: 600; color: var(--brand-brown); font-size: 15px; }
.step-sublabel { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

/* =================== WHATSAPP FLOAT =================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* =================== FOOTER =================== */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand-name span { color: var(--brand-terra); }

.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-about { font-size: 13.5px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.6); }

.footer-col h4 { color: var(--brand-light-tan); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Jost', sans-serif; margin-bottom: 16px; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-terra); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: var(--brand-terra); text-decoration: none; }

/* =================== CHECKOUT =================== */
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: start; }
@media(max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

.checkout-section {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.checkout-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-brown);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-method-card {
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-method-card:hover, .payment-method-card.selected {
  border-color: var(--brand-terra);
  background: rgba(196,122,58,0.05);
}

.payment-method-icon { font-size: 1.4rem; }
.payment-method-name { font-weight: 600; color: var(--brand-brown); font-size: 14px; }
.payment-method-detail { font-size: 12px; color: var(--text-muted); }

.discount-badge {
  background: linear-gradient(135deg, var(--brand-terra), var(--brand-brown));
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =================== ALERTS =================== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero-section { min-height: 65vh; }
  .trust-bar-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
}

/* =================== UTILITY =================== */
.text-center { text-align: center; }
.text-brown  { color: var(--brand-brown); }
.text-terra  { color: var(--brand-terra); }
.mt-auto { margin-top: auto; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.pb-0 { padding-bottom: 0; }

/* ===== EXTRA WEBSITE STYLES ===== */

/* Page header */
.page-header { background:linear-gradient(135deg,#1A1412 0%,#3D1F14 100%); padding:80px 20px 60px; text-align:center; }
.page-title    { font-family:'Cormorant Garamond',serif; font-size:42px; color:#FAF7F4; margin:0 0 8px; }
.page-subtitle { font-size:16px; color:rgba(250,247,244,0.7); margin:0; }

/* Products grid on products page */
.product-img-placeholder { width:100%; aspect-ratio:1; background:#FAF7F4; display:flex; align-items:center; justify-content:center; }
.out-of-stock-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.5); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:14px; letter-spacing:1px; border-radius:inherit; }
.product-category { font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#C47A3A; font-weight:600; margin-bottom:6px; }
.product-short-desc { font-size:13px; color:#888; margin:6px 0; line-height:1.5; }
.product-price-row { margin-top:10px; }
.product-price-sale { font-size:20px; font-weight:700; color:#C47A3A; }
.product-price-original { font-size:14px; color:#aaa; text-decoration:line-through; margin-left:8px; }

/* Deals page */
.deal-card-page { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.08); transition:transform .3s; }
.deal-card-page:hover { transform:translateY(-4px); }
.deal-card-header-area { background:linear-gradient(135deg,#1A1412,#3D1F14); padding:32px 24px; display:flex; justify-content:center; align-items:center; gap:20px; position:relative; min-height:160px; }
.deal-product-thumb { width:90px; height:90px; object-fit:cover; border-radius:10px; border:3px solid rgba(255,255,255,0.2); }
.deal-save-badge { position:absolute; top:16px; right:16px; background:#C47A3A; color:#fff; font-size:12px; font-weight:700; padding:6px 12px; border-radius:20px; }
.deal-card-body-area { padding:24px; }
.deal-name { font-family:'Cormorant Garamond',serif; font-size:22px; margin:0 0 6px; color:#1A1412; }
.deal-desc { font-size:14px; color:#888; margin:0 0 16px; }
.deal-products-list-web { margin-bottom:16px; }
.deal-includes-item { display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px solid #F0EDE8; font-size:14px; }
.deal-pricing { display:flex; align-items:center; gap:12px; margin-top:8px; }
.deal-original-price { font-size:16px; color:#aaa; text-decoration:line-through; }
.deal-deal-price { font-size:26px; font-weight:700; color:#C47A3A; }

/* Contact page */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-form-wrap { }
.contact-info-wrap { }
.contact-info-card { background:#FAF7F4; border-radius:16px; padding:32px; }
.contact-method-card { display:flex; align-items:center; gap:14px; padding:16px; background:#fff; border-radius:10px; margin-bottom:12px; text-decoration:none; color:#1A1412; border:1px solid #E5E0DA; transition:all .2s; }
.contact-method-card:hover { border-color:#C47A3A; box-shadow:0 4px 12px rgba(196,122,58,0.15); }
.whatsapp-card .contact-method-icon { color:#25D366; font-size:24px; }
.contact-method-icon { font-size:24px; }

@media(max-width:768px){
    .contact-grid { grid-template-columns:1fr; gap:32px; }
    .page-title { font-size:32px; }
}

/* ============================================================
   ADDITIONS: Icons, Animations, Footer Polish, Back-to-Top
   ============================================================ */

/* =================== LUCIDE ICON SIZING =================== */
[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  vertical-align: middle;
}

.trust-icon [data-lucide],
.ingredient-icon [data-lucide] {
  width: 28px;
  height: 28px;
}

.cart-btn [data-lucide] { width: 22px; height: 22px; color: var(--brand-brown); }

.cart-empty-state [data-lucide] {
  width: 48px;
  height: 48px;
  color: var(--border-soft);
  margin: 0 auto 16px;
  display: block;
}
.cart-empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}
.cart-empty-state p { font-weight: 600; color: var(--brand-brown); }

.footer-inline-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: -2px;
  opacity: 0.7;
}

.footer-delivery-note {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 10px;
}

/* =================== TRUST BAR ICONS =================== */
.trust-item {
  gap: 10px;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-terra);
}

/* =================== INGREDIENT ICONS =================== */
.ingredient-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-cream);
  margin: 0 auto 14px;
  color: var(--brand-terra);
}

/* =================== MOBILE MENU BUTTON =================== */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-brown);
  padding: 4px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 998;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-menu-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-brown);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--brand-stone); }

.mobile-menu-link {
  font-size: 1.05rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--brand-terra); }

/* =================== BUTTON ENHANCEMENTS =================== */
.btn {
  position: relative;
  overflow: hidden;
}
.btn-primary, .btn-outline, .btn-white {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:active { transform: scale(0.97); }

.btn [data-lucide] {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.btn:hover [data-lucide] {
  transform: translateX(3px);
}

/* =================== SCROLL REVEAL ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect for grids */
.products-grid .reveal:nth-child(1) { transition-delay: 0s; }
.products-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.products-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.products-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.ingredients-grid .reveal:nth-child(1) { transition-delay: 0s; }
.ingredients-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.ingredients-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.ingredients-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.ingredients-grid .reveal:nth-child(5) { transition-delay: 0.32s; }

/* =================== BACK TO TOP BUTTON =================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  z-index: 989;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-brown);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-warm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--brand-terra);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top { right: 20px; bottom: 96px; width: 44px; height: 44px; }
  .wa-float { width: 52px; height: 52px; bottom: 24px; right: 20px; }
}

/* =================== FOOTER SOCIAL ICONS =================== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-social-icon:hover {
  background: var(--brand-terra);
  transform: translateY(-3px);
}

/* =================== FOOTER GENERAL POLISH =================== */
.site-footer {
  padding: 72px 0 28px;
}
.footer-grid {
  gap: 48px;
}
.footer-col h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brand-terra);
  margin-top: 8px;
  border-radius: 2px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
}
.footer-links a:hover {
  transform: translateX(3px);
}

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