/* ============================================
   CHOCO-SANTA - Styles
   ============================================ */

/* ---- Variables ---- */
:root {
  --brown-dark:  #2C1503;
  --brown-mid:   #5C2E00;
  --brown-light: #8B4513;
  --gold:        #C8960C;
  --gold-light:  #E8C547;
  --cream:       #FDF6E3;
  --cream-dark:  #F0E0C0;
  --white:       #FFFFFF;
  --gray-light:  #F8F5F0;
  --gray:        #9E9E9E;
  --green-wa:    #25D366;
  --green-wa-dk: #1DA851;
  --shadow:      0 4px 20px rgba(44,21,3,0.12);
  --shadow-lg:   0 8px 40px rgba(44,21,3,0.18);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--brown-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brown-dark);
  color: var(--gold-light);
  border-color: var(--brown-dark);
}
.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44,21,3,0.3);
}
.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-whatsapp:hover {
  background: var(--green-wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}
.btn-outline:hover {
  background: var(--brown-dark);
  color: var(--gold-light);
}
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }
.mt-1 { margin-top: 12px; }

/* ---- Section Common ---- */
section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--brown-mid);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--brown-dark);
  padding: 8px 0;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--cream-dark);
  font-size: 0.85rem;
}
.header-top-inner span { display: flex; align-items: center; gap: 6px; }
.wa-top {
  background: var(--green-wa);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.wa-top:hover { background: var(--green-wa-dk); }

.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--cream-dark);
  padding: 12px 0;
  transition: var(--transition);
}
#header.scrolled .navbar {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 65px;
  width: auto;
  transition: var(--transition);
}
.logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown-dark);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--brown-mid); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--brown-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-btn:hover {
  background: var(--brown-dark);
  color: var(--gold-light);
  border-color: var(--brown-dark);
}
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  transition: var(--transition);
}
.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: var(--transition);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,21,3,0.85) 0%,
    rgba(44,21,3,0.60) 50%,
    rgba(44,21,3,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeInUp 0.9s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(200,150,12,0.25);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
}
.hero-title .gold { color: var(--gold-light); }
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 700;
}
.trust-item i { color: var(--gold-light); font-size: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll a {
  color: var(--gold-light);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  display: block;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ============================================
   TRUST BAND
   ============================================ */
.trust-band {
  background: var(--brown-dark);
  padding: 28px 0;
}
.trust-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-dark);
}
.tb-item i {
  font-size: 1.6rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.tb-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}
.tb-item span { font-size: 0.78rem; opacity: 0.75; }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--gray-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.badge-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-float span:last-child { font-size: 0.8rem; line-height: 1.4; }

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p strong { color: var(--brown-dark); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown-mid);
}
.af-item i { color: var(--gold); font-size: 1.1rem; }

/* ============================================
   PRODUCTS
   ============================================ */
.products { background: var(--white); }

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--cream-dark);
  color: var(--brown-mid);
  background: var(--cream);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brown-dark);
  color: var(--gold-light);
  border-color: var(--brown-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,21,3,0.08);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--cream-dark);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden { display: none; }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.product-badge.new  { background: #28A745; color: white; }
.product-badge.hot  { background: #E53935; color: white; }
.product-badge.gift { background: #7B1FA2; color: white; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.07); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,21,3,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-view-btn {
  background: var(--white);
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.quick-view-btn:hover {
  background: var(--gold);
}

.product-info { padding: 20px; }
.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin: 6px 0;
  font-weight: 700;
}
.product-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 10px;
}
.product-weight {
  font-size: 0.8rem;
  color: var(--brown-mid);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
}
.product-price { display: flex; flex-direction: column; }
.price-old {
  font-size: 0.78rem;
  color: var(--gray);
  text-decoration: line-through;
}
.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.add-cart-btn {
  background: var(--brown-dark);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.add-cart-btn:hover {
  background: var(--gold);
  color: var(--brown-dark);
  transform: scale(1.05);
}

.products-cta {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  border: 2px dashed var(--cream-dark);
}
.products-cta p {
  font-size: 1.1rem;
  color: var(--brown-mid);
  margin-bottom: 20px;
  font-weight: 700;
}

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--brown-dark); }
.process .section-tag { background: rgba(200,150,12,0.2); color: var(--gold-light); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,0.7); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  padding: 0 10px;
}
.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(200,150,12,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold-light);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--gold);
  color: var(--brown-dark);
}
.step-number {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.process-step p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.7; }

.process-connector {
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0 5px;
  margin-top: 30px;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--gray-light); }

.testimonials-slider { position: relative; min-height: 200px; margin-bottom: 30px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
  display: none;
  animation: fadeIn 0.5s ease;
  border: 1px solid var(--cream-dark);
}
.testimonial-card.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t-stars { font-size: 1.4rem; color: var(--gold); margin-bottom: 16px; }
.t-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brown-dark);
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 50px; height: 50px;
  background: var(--brown-dark);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.t-author strong { display: block; color: var(--brown-dark); font-size: 0.95rem; }
.t-author span { font-size: 0.82rem; color: var(--gray); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--gold-light);
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-nav-btn:hover { background: var(--gold); color: var(--brown-dark); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active { background: var(--brown-dark); transform: scale(1.3); }

/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--cream-dark);
}
.rating-score { text-align: center; }
.big-score {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brown-dark);
  line-height: 1;
}
.big-stars { font-size: 1.4rem; color: var(--gold); margin: 6px 0; }
.rating-score span { font-size: 0.82rem; color: var(--gray); }

.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--brown-mid);
  font-weight: 700;
}
.rating-bar-row > span:first-child { width: 30px; text-align: right; }
.rating-bar-row > span:last-child { width: 35px; }
.bar {
  flex: 1;
  height: 8px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

.total-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.total-reviews i { font-size: 2rem; color: var(--gold); }
.total-reviews strong { font-size: 1.8rem; color: var(--brown-dark); }
.total-reviews span { font-size: 0.82rem; color: var(--gray); }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 60px 0;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.guarantee-icon {
  font-size: 3.5rem;
  color: var(--brown-dark);
  flex-shrink: 0;
}
.guarantee-content { flex: 1; min-width: 260px; }
.guarantee-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.guarantee-content p { color: var(--brown-mid); line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brown-dark);
  flex-shrink: 0;
  border: 2px solid var(--cream-dark);
}
.contact-item strong { display: block; color: var(--brown-dark); font-size: 0.88rem; margin-bottom: 3px; }
.contact-item a, .contact-item span { color: var(--gray); font-size: 0.95rem; }
.contact-item a:hover { color: var(--brown-dark); }
.whatsapp-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

.contact-form-wrap {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--cream-dark);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--brown-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--brown-dark);
  box-shadow: 0 0 0 3px rgba(44,21,3,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--brown-dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo { height: 80px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dark);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--brown-dark); transform: translateY(-3px); }

.footer-links h4, .footer-contact h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-contact p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i { color: var(--gold-light); }
.footer-contact a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.2);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--brown-dark);
  color: var(--white);
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.3); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty i { font-size: 3rem; color: var(--cream-dark); margin-bottom: 16px; }
.cart-empty p { color: var(--gray); margin-bottom: 24px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  animation: fadeIn 0.3s ease;
}
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.cart-item-price { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--brown-dark); color: var(--gold-light); border-color: var(--brown-dark); }
.qty-num { font-weight: 700; font-size: 0.95rem; color: var(--brown-dark); min-width: 20px; text-align: center; }
.cart-item-remove { color: #E53935; font-size: 0.85rem; cursor: pointer; padding: 4px; transition: var(--transition); }
.cart-item-remove:hover { transform: scale(1.2); }

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--cream-dark);
  background: var(--gray-light);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.cart-total strong { font-size: 1.4rem; color: var(--brown-dark); }
.cart-note { font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  color: white;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,0.4); }
.modal-content img { width: 100%; height: 260px; object-fit: cover; }
.modal-body { padding: 28px; }
.modal-body h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brown-dark); margin-bottom: 8px; }
.modal-body .price { font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.modal-body p { color: #555; line-height: 1.7; margin-bottom: 16px; }
.modal-body ul { margin-bottom: 20px; }
.modal-body ul li { display: flex; align-items: center; gap: 8px; color: #555; margin-bottom: 6px; font-size: 0.9rem; }
.modal-body ul li i { color: var(--gold); }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1500;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  color: white;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  background: var(--green-wa-dk);
}
@keyframes pulse-wa {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%  { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
}
.wa-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--brown-dark);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .wa-float-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 1500;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--gold-light);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--brown-dark); transform: translateY(-3px); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--brown-dark);
  color: var(--gold-light);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5000;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: var(--green-wa); font-size: 1.1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  /* Header */
  .header-top-inner { justify-content: center; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--brown-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--cream-dark); font-size: 1.2rem; padding: 12px 20px; }
  .nav-link:hover { color: var(--gold-light); }
  .nav-link::after { display: none; }
  .hamburger { display: flex; z-index: 1000; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-main img { height: 320px; }
  .about-badge-float { right: 10px; bottom: -10px; }
  .about-features { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { transform: rotate(90deg); margin: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 50px 0 30px; }

  /* Rating */
  .rating-summary { gap: 30px; }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-band-inner { justify-content: flex-start; gap: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .hero-trust { gap: 12px; }
  .modal-actions { flex-direction: column; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 54px; height: 54px; font-size: 1.5rem; }
  .back-to-top { bottom: 84px; right: 16px; }
  .cart-sidebar { width: 100%; }
}

