/*
Theme Name: ChocoSwaad
Theme URI: https://chocoswaad.com
Author: ChocoSwaad
Author URI: https://chocoswaad.com
Description: Premium Homemade Chocolate Brand - ChocoSwaad WordPress Theme. Handcrafted with love, featuring product showcase, WhatsApp ordering, and beautiful chocolate aesthetics.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chocoswaad
Tags: e-commerce, food, chocolate, whatsapp, responsive
*/

/* ── CSS VARIABLES ── */
:root {
  --choco-dark:   #2c1a0e;
  --choco-brown:  #5c3317;
  --choco-mid:    #8b4513;
  --choco-warm:   #c47a3a;
  --choco-gold:   #e8a44a;
  --choco-cream:  #fdf5e8;
  --choco-light:  #fff8f0;
  --choco-pink:   #f9e4c8;
  --text-dark:    #1e0f05;
  --text-mid:     #5c3a1e;
  --text-light:   #9c6b3c;
  --wa-green:     #25d366;
  --wa-dark:      #128c7e;
  --radius:       16px;
  --shadow:       0 8px 32px rgba(44,26,14,.12);
  --shadow-lg:    0 20px 60px rgba(44,26,14,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--choco-light);
  color: var(--text-dark);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--choco-cream); }
::-webkit-scrollbar-thumb { background: var(--choco-warm); border-radius: 3px; }

/* ── NAVBAR ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(44,26,14,.95);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(232,164,74,.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--choco-gold), var(--choco-warm));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--choco-gold);
  letter-spacing: .02em;
}
.main-navigation ul {
  display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.main-navigation a {
  color: rgba(253,245,232,.8);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
}
.main-navigation a:hover { color: var(--choco-gold); }
.nav-wa-btn {
  background: var(--wa-green) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600 !important;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-wa-btn:hover { background: var(--wa-dark) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--choco-gold); border-radius: 2px; display: block; }
.mobile-menu { display: none; }
.mobile-menu.open {
  display: flex; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(44,26,14,.98);
  padding: 20px 5%; gap: 16px; z-index: 999;
}
.mobile-menu a {
  color: rgba(253,245,232,.85); text-decoration: none;
  font-size: 16px; font-weight: 500; padding: 8px 0;
  border-bottom: 1px solid rgba(232,164,74,.1);
}

/* ── MAIN CONTENT ── */
.site-main { padding-top: 68px; min-height: 100vh; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--choco-gold), var(--choco-warm));
  color: var(--choco-dark);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,164,74,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,164,74,.4); }
.btn-wa {
  background: var(--wa-green); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(232,164,74,.4);
  color: var(--choco-gold);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-outline:hover { background: rgba(232,164,74,.1); border-color: var(--choco-gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  background: linear-gradient(135deg, #1a0a02 0%, #3d1f08 40%, #2c1a0e 100%);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 60px 5%;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,74,.12) 0%, transparent 70%);
}
.hero-circle.c1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.hero-circle.c2 { width: 400px; height: 400px; bottom: -80px; left: 10%; }
.hero-circle.c3 { width: 200px; height: 200px; top: 30%; left: 35%; }
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,164,74,.15);
  border: 1px solid rgba(232,164,74,.3);
  padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--choco-gold); margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero-title span { color: var(--choco-gold); font-style: italic; }
.hero-desc {
  font-size: 17px; line-height: 1.7;
  color: rgba(253,245,232,.7);
  margin-bottom: 36px; max-width: 460px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 2;
}
.hero-choco-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; width: 380px;
}
.hero-choco-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(232,164,74,.15);
  border-radius: 20px; padding: 20px;
  backdrop-filter: blur(8px); text-align: center;
  transition: transform .3s;
}
.hero-choco-card:hover { transform: translateY(-4px); }
.hero-choco-card:nth-child(2) { margin-top: 24px; }
.hero-choco-card:nth-child(4) { margin-top: -24px; }
.hero-choco-emoji { font-size: 48px; display: block; margin-bottom: 10px; }
.hero-choco-name { font-size: 13px; font-weight: 600; color: var(--choco-gold); }
.hero-choco-price { font-size: 11px; color: rgba(253,245,232,.5); margin-top: 3px; }
.hero-stats { position: relative; z-index: 2; display: flex; gap: 40px; margin-top: 48px; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--choco-gold); }
.hero-stat-label { font-size: 12px; color: rgba(253,245,232,.5); margin-top: 2px; }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-tag {
  display: inline-block;
  background: rgba(196,122,58,.1); color: var(--choco-mid);
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: var(--choco-dark);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title em { color: var(--choco-mid); font-style: italic; }
.section-desc { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 520px; margin-bottom: 40px; }

/* ── CATEGORIES STRIP ── */
.cats-strip { background: var(--choco-dark); padding: 32px 5%; overflow-x: auto; }
.cats-inner { display: flex; gap: 12px; min-width: max-content; }
.cat-chip {
  background: rgba(232,164,74,.1); border: 1px solid rgba(232,164,74,.2);
  color: var(--choco-gold); padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: all .2s; display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.cat-chip:hover { background: var(--choco-gold); color: var(--choco-dark); }

/* ── PRODUCTS GRID ── */
.products-section { background: var(--choco-cream); }
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer; position: relative;
  text-decoration: none; color: inherit; display: block;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--choco-gold); color: var(--choco-dark);
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.product-img {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px; }
.product-cat { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--choco-warm); margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--choco-dark); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--choco-dark); }
.product-price small { font-size: 12px; font-weight: 400; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.product-actions { display: flex; gap: 8px; }
.btn-wa-sm {
  background: var(--wa-green); color: #fff;
  border: none; border-radius: 50px;
  padding: 8px 14px; font-size: 12px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  transition: background .2s, transform .2s; white-space: nowrap;
  text-decoration: none;
}
.btn-wa-sm:hover { background: var(--wa-dark); transform: scale(1.04); }
.btn-view {
  background: var(--choco-cream); color: var(--choco-brown);
  border: 1px solid rgba(139,69,19,.15);
  border-radius: 50px; padding: 8px 14px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-view:hover { background: var(--choco-pink); }

/* ── WHY US SECTION ── */
.why-section {
  background: linear-gradient(135deg, var(--choco-dark) 0%, #3d1f08 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '🍫'; position: absolute; font-size: 300px; opacity: .04;
  right: -40px; top: -40px; line-height: 1;
}
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(232,164,74,.1);
  border-radius: var(--radius); padding: 28px 24px;
  transition: background .3s;
}
.why-card:hover { background: rgba(232,164,74,.06); }
.why-icon { font-size: 40px; margin-bottom: 14px; }
.why-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--choco-gold); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: rgba(253,245,232,.55); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--choco-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 80px; color: var(--choco-gold); opacity: .15;
  position: absolute; top: 10px; right: 20px; line-height: 1;
}
.testimonial-stars { font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--choco-gold), var(--choco-warm));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--choco-dark); }
.testimonial-location { font-size: 12px; color: var(--text-light); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--choco-gold), var(--choco-warm));
  padding: 80px 5%; text-align: center;
}
.cta-section .section-title { color: var(--choco-dark); }
.cta-section .section-desc { color: var(--choco-dark); opacity: .75; margin: 0 auto 32px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--choco-dark), #3d1f08);
  padding: 60px 5% 50px;
}
.page-hero-content { max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; font-size: 13px; }
.breadcrumb a, .breadcrumb span { color: rgba(253,245,232,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--choco-gold); }
.breadcrumb-sep { color: rgba(253,245,232,.3); }
.breadcrumb span:last-child { color: var(--choco-gold); }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 54px); font-weight: 900; color: #fff; margin-bottom: 14px; }
.page-hero-desc { font-size: 16px; color: rgba(253,245,232,.65); line-height: 1.7; }

/* ── SHOP PAGE ── */
.shop-section { padding: 60px 5%; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-chip {
  background: var(--choco-cream); border: 1.5px solid rgba(139,69,19,.2);
  color: var(--text-mid); padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.filter-chip:hover, .filter-chip.active { background: var(--choco-gold); color: var(--choco-dark); border-color: var(--choco-gold); }

/* ── PRODUCT DETAIL PAGE ── */
.pdp-section { padding: 60px 5%; }
.pdp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pdp-gallery-main {
  border-radius: 24px; height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px; box-shadow: var(--shadow-lg);
}
.pdp-thumbs { display: flex; gap: 12px; margin-top: 16px; }
.pdp-thumb {
  width: 72px; height: 72px; border-radius: 12px;
  background: var(--choco-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; cursor: pointer;
  border: 2px solid transparent; box-shadow: var(--shadow); transition: border-color .2s;
}
.pdp-thumb.active { border-color: var(--choco-gold); }
.pdp-cat { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--choco-warm); margin-bottom: 8px; }
.pdp-name { font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--choco-dark); line-height: 1.2; margin-bottom: 14px; }
.pdp-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.pdp-price { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--choco-dark); }
.pdp-price-note { font-size: 13px; color: var(--text-light); }
.pdp-divider { height: 1px; background: rgba(139,69,19,.1); margin: 20px 0; }
.pdp-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.pdp-options-label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.pdp-weight-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.weight-chip {
  border: 2px solid rgba(139,69,19,.2); background: #fff;
  border-radius: 10px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  cursor: pointer; transition: all .2s;
}
.weight-chip.active, .weight-chip:hover { border-color: var(--choco-gold); color: var(--choco-dark); background: var(--choco-pink); }
.pdp-wa-btn {
  width: 100%; padding: 16px; border-radius: 14px;
  background: var(--wa-green); color: #fff;
  border: none; font-size: 16px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .2s; margin-bottom: 12px;
}
.pdp-wa-btn:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* ── ABOUT PAGE ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 5%; }
.about-img-block {
  background: linear-gradient(135deg, var(--choco-pink), var(--choco-cream));
  border-radius: 24px; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-img-block img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.about-values { background: var(--choco-dark); padding: 80px 5%; }
.about-values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.about-value-card { background: rgba(232,164,74,.06); border: 1px solid rgba(232,164,74,.12); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.about-value-icon { font-size: 40px; margin-bottom: 12px; }
.about-value-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--choco-gold); margin-bottom: 8px; }
.about-value-desc { font-size: 13px; color: rgba(253,245,232,.55); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 60px 5%; background: var(--choco-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; max-width: 1000px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; }
.contact-card-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: var(--choco-pink); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-card-title { font-weight: 700; font-size: 15px; color: var(--choco-dark); margin-bottom: 4px; }
.contact-card-val { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.contact-form-wrap { background: #fff; border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
.form-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--choco-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid rgba(139,69,19,.15);
  background: var(--choco-cream); font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text-dark); transition: border-color .2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--choco-warm); }
.form-textarea { height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--choco-gold), var(--choco-warm));
  color: var(--choco-dark); border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,164,74,.3); }

/* ── FOOTER ── */
.site-footer { background: var(--choco-dark); padding: 60px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--choco-gold); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-brand-desc { font-size: 14px; color: rgba(253,245,232,.5); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(232,164,74,.1); border: 1px solid rgba(232,164,74,.15);
  color: var(--choco-gold); text-decoration: none;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s;
}
.footer-social a:hover { background: rgba(232,164,74,.2); }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--choco-gold); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(253,245,232,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--choco-gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(253,245,232,.5); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(232,164,74,.1);
  padding: 20px 0; margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(253,245,232,.4); }

/* ── FLOATING WA ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--wa-green); color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,.4);
  cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.08); }
}

/* ── PRODUCT BG CLASSES ── */
.bg-milk   { background: linear-gradient(135deg, #fff5e4, #fde8c0); }
.bg-dark   { background: linear-gradient(135deg, #2d1b0e, #4a2f1a); }
.bg-fruit  { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.bg-gift   { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.bg-custom { background: linear-gradient(135deg, #e8eaf6, #c5cae9); }
.bg-fest   { background: linear-gradient(135deg, #fff8e1, #ffecb3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .15s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s ease both; }
.fade-up-4 { animation: fadeUp .6s .45s ease both; }

/* ── PROCESS STEPS ── */
.process-section { padding: 80px 5%; background: var(--choco-cream); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.process-step { text-align: center; }
.process-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--choco-gold), var(--choco-warm)); color: var(--choco-dark); font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.process-step-icon { font-size: 32px; margin-bottom: 10px; }
.process-step-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--choco-dark); margin-bottom: 6px; }
.process-step-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ── INGREDIENTS ── */
.ingredients-list { display: flex; flex-wrap: wrap; gap: 8px; }
.ingredient-tag { background: var(--choco-cream); border: 1px solid rgba(139,69,19,.15); color: var(--text-mid); padding: 6px 14px; border-radius: 50px; font-size: 13px; }

/* ── WOOCOMMERCE NOTICE ── */
.woocommerce-notice { background: var(--choco-cream); border-left: 4px solid var(--choco-gold); padding: 16px 20px; border-radius: 8px; margin-bottom: 24px; font-size: 14px; color: var(--text-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .pdp-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .main-navigation ul { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 40px 5% 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-btns { flex-direction: column; }
  .pdp-gallery-main { height: 280px; }
}
