/* ============================================================
   MONDE APICOL — Stylesheet Principal
   ============================================================ */

:root {
  --honey-gold:   #F5A623;
  --honey-dark:   #C8870A;
  --honey-amber:  #FF8C00;
  --honey-light:  #FFF3CD;
  --honey-cream:  #FFF8E7;
  --bee-black:    #1A1209;
  --bee-brown:    #4A2C0A;
  --bee-stripe:   #2C1810;
  --accent-green: #5A7A2E;
  --text-dark:    #2D1B0E;
  --text-mid:     #5C4A30;
  --text-light:   #8B7355;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(200,135,10,.15);
  --shadow-md:    0 8px 30px rgba(200,135,10,.2);
  --shadow-lg:    0 20px 60px rgba(200,135,10,.25);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--honey-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--bee-brown);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p { color: var(--text-mid); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 5rem 0; }

/* ── Section headers ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .tag {
  display: inline-block;
  background: var(--honey-light);
  color: var(--honey-dark);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.section-header h2 { margin-bottom: .6rem; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--honey-amber), var(--honey-dark));
}
.btn-outline {
  background: transparent;
  color: var(--honey-dark);
  border: 2px solid var(--honey-gold);
}
.btn-outline:hover {
  background: var(--honey-gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--honey-dark);
}
.btn-white:hover {
  background: var(--honey-light);
  transform: translateY(-2px);
}
.btn-sm { padding: .55rem 1.2rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,248,231,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,.15);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bee-brown);
  font-weight: 700;
}
.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.nav-logo span { color: var(--honey-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--honey-gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--honey-dark);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-cart {
  position: relative;
  background: var(--honey-light);
  border: none;
  border-radius: 12px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--honey-dark);
}
.btn-cart:hover {
  background: var(--honey-gold);
  color: var(--white);
  transform: scale(1.05);
}
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--honey-dark);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--honey-cream);
}
.cart-count.hidden { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bee-brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3CD 40%, #FFE082 100%);
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-honeycomb {
  position: absolute;
  opacity: .06;
  font-size: 8rem;
  animation: float 8s ease-in-out infinite;
}
.hero-honeycomb:nth-child(1) { top: 10%; right: 5%; animation-delay: 0s; font-size: 10rem; }
.hero-honeycomb:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; font-size: 6rem; }
.hero-honeycomb:nth-child(3) { top: 30%; right: 40%; animation-delay: 4s; font-size: 4rem; }
.hero-honeycomb:nth-child(4) { bottom: 10%; left: 5%; animation-delay: 1s; font-size: 7rem; }
.hero-bee {
  position: absolute;
  font-size: 3rem;
  animation: fly 15s linear infinite;
  opacity: .3;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes fly {
  0%   { transform: translate(-100px, 50px) rotate(20deg); opacity: 0; }
  10%  { opacity: .3; }
  90%  { opacity: .3; }
  100% { transform: translate(110vw, -100px) rotate(-15deg); opacity: 0; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { animation: slideUp .8s ease forwards; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--honey-dark);
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bee-brown);
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--honey-gold); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--honey-dark);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .2rem;
}

.hero-visual { animation: slideRight .9s ease forwards; }
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-img {
  height: 320px;
  background: linear-gradient(135deg, #FFE082, #FFB300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.hero-card-body {
  padding: 1.5rem;
  background: var(--white);
}
.hero-card-body h3 { font-size: 1.2rem; color: var(--bee-brown); margin-bottom: .4rem; }
.hero-card-body p { font-size: .85rem; color: var(--text-light); }
.hero-card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--honey-gold);
  margin-top: .5rem;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--bee-brown);
  animation: float 4s ease-in-out infinite;
}
.hero-card-float:nth-child(2) {
  top: 10%; left: -60px;
  animation-delay: 1s;
}
.hero-card-float:nth-child(3) {
  bottom: 15%; right: -50px;
  animation-delay: 2.5s;
}
.float-icon { font-size: 1.5rem; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── WAVE DIVIDER ───────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { display: block; }

/* ── FEATURES BAND ──────────────────────────────────────── */
.features-band {
  background: var(--bee-brown);
  padding: 2.5rem 0;
}
.features-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.feature-icon {
  width: 50px; height: 50px;
  background: rgba(245,166,35,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: .9rem; font-weight: 600; }
.feature-text span { font-size: .78rem; opacity: .7; }

/* ── CATEGORIES ─────────────────────────────────────────── */
.categories { background: var(--white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.category-card:nth-child(1) { grid-column: span 2; }
.cat-bg {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.cat-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,44,10,.7) 0%, transparent 60%);
}
.cat-1 { background: linear-gradient(135deg, #FFE082, #FFB300); }
.cat-2 { background: linear-gradient(135deg, #FFCC80, #FF8C00); }
.cat-3 { background: linear-gradient(135deg, #A5D6A7, #388E3C); }
.cat-4 { background: linear-gradient(135deg, #FFAB91, #E64A19); }
.cat-5 { background: linear-gradient(135deg, #CE93D8, #7B1FA2); }
.cat-6 { background: linear-gradient(135deg, #80DEEA, #0097A7); }

.cat-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 1.2rem;
  color: var(--white);
}
.cat-overlay h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.cat-overlay span { font-size: .8rem; opacity: .8; }
.cat-arrow {
  position: absolute;
  right: 1rem; bottom: 1rem;
  background: rgba(255,255,255,.2);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 1;
}
.category-card:hover .cat-arrow {
  background: var(--honey-gold);
  transform: translateX(3px);
}

/* ── PRODUCTS GRID ──────────────────────────────────────── */
.products-section { background: var(--honey-cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card .badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--honey-gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-promo { background: #E53935 !important; }
.badge-new   { background: var(--accent-green) !important; }

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--honey-light);
  position: relative;
  overflow: hidden;
}
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,166,35,.1), transparent 70%);
}
.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,44,10,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  width: 42px; height: 42px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--bee-brown);
}
.overlay-btn:hover { background: var(--honey-gold); color: var(--white); }

.product-body { padding: 1.2rem; }
.product-category {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--honey-gold);
  font-weight: 600;
  margin-bottom: .3rem;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--bee-brown);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.product-stars { color: var(--honey-gold); font-size: .8rem; margin-bottom: .5rem; }
.product-stars span { color: var(--text-light); font-size: .75rem; margin-left: .3rem; }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .8rem;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--honey-dark);
}
.product-price-old {
  font-size: .85rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: .4rem;
}
.btn-add-cart {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-add-cart:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-sm);
}

.products-cta { text-align: center; margin-top: 3rem; }

/* ── PROMO BANNER ───────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--bee-brown) 0%, #2C1810 50%, #1A1209 100%);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '🍯';
  position: absolute;
  font-size: 20rem;
  opacity: .04;
  top: -3rem; right: -3rem;
  line-height: 1;
}
.promo-banner-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--honey-gold);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.promo-banner h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; }
.promo-banner h2 span { color: var(--honey-gold); }
.promo-banner p { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 2rem; }
.promo-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.promo-list li {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.85); font-size: .9rem;
}
.promo-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--honey-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.promo-visual {
  text-align: center;
}
.promo-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  box-shadow: 0 0 80px rgba(245,166,35,.3);
  animation: float 5s ease-in-out infinite;
}
.promo-discount-badge {
  position: absolute;
  top: 0; right: -20px;
  background: #E53935;
  color: var(--white);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.promo-discount-badge span:first-child { font-size: 1.3rem; line-height: 1; }
.promo-discount-badge span:last-child { font-size: .6rem; text-transform: uppercase; }
.promo-visual { position: relative; }

/* ── WHY US ─────────────────────────────────────────────── */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--honey-cream);
  border: 1px solid rgba(245,166,35,.15);
  transition: var(--transition);
}
.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--honey-gold);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
  box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: 1.05rem; color: var(--bee-brown); margin-bottom: .5rem; }
.why-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--honey-cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--honey-light);
  line-height: 1;
}
.testimonial-stars { color: var(--honey-gold); font-size: .9rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .9rem; color: var(--bee-brown); }
.author-info span { font-size: .78rem; color: var(--text-light); }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, var(--honey-gold) 0%, var(--honey-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}
.newsletter h2 { color: var(--white); margin-bottom: .7rem; }
.newsletter p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1rem; }
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  background: transparent;
  color: var(--text-dark);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--bee-brown), var(--bee-black));
  color: var(--white);
  border: none;
  padding: 1rem 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50px;
  margin: .25rem;
}
.newsletter-form button:hover { background: var(--bee-stripe); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bee-black);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 1rem; color: var(--white); }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.footer-social {
  display: flex;
  gap: .8rem;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--honey-gold); color: var(--white); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--honey-gold); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .8rem;
}
.footer-contact .icon {
  width: 28px; height: 28px;
  background: rgba(245,166,35,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--honey-gold); }
.payment-icons { display: flex; gap: .5rem; font-size: 1.4rem; }

/* ── CART SIDEBAR ───────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--honey-light);
}
.cart-header h3 { font-size: 1.2rem; color: var(--bee-brown); }
.cart-close {
  width: 36px; height: 36px;
  background: var(--honey-light);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--bee-brown);
}
.cart-close:hover { background: var(--honey-gold); color: var(--white); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-light);
}
.cart-empty .empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.cart-empty p { font-size: .9rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--honey-light);
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  background: var(--honey-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: .88rem; color: var(--bee-brown); margin-bottom: .3rem; line-height: 1.3; }
.cart-item-info span { font-size: .8rem; color: var(--honey-gold); font-weight: 600; }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}
.qty-btn {
  width: 26px; height: 26px;
  background: var(--honey-light);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--bee-brown);
  transition: var(--transition);
  font-weight: 700;
}
.qty-btn:hover { background: var(--honey-gold); color: var(--white); }
.qty-num { font-size: .88rem; font-weight: 600; color: var(--text-dark); min-width: 20px; text-align: center; }
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-light);
  transition: var(--transition);
  padding: .2rem;
}
.cart-item-remove:hover { color: #E53935; }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--honey-light);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}
.cart-subtotal span { font-size: .9rem; color: var(--text-light); }
.cart-subtotal strong { font-size: 1.2rem; color: var(--bee-brown); }
.cart-note { font-size: .78rem; color: var(--text-light); margin-bottom: 1.2rem; }
.btn-checkout {
  width: 100%;
  justify-content: center;
  font-size: .95rem;
}

/* ── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--bee-brown);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: var(--shadow-md);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* ── SCROLL TO TOP ──────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem; left: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── MOBILE NAV MENU ────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--honey-cream);
  border-bottom: 1px solid rgba(245,166,35,.2);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
  animation: slideDown .3s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .2rem; }
.mobile-menu ul li a {
  display: block;
  padding: .8rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu ul li a:hover { background: var(--honey-light); color: var(--honey-dark); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:nth-child(1) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .promo-banner-content { grid-template-columns: 1fr; text-align: center; }
  .promo-list { align-items: center; }
  .promo-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-band .container { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cart-sidebar { width: 100%; }
}

@media (max-width: 480px) {
  .features-band .container { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-form button { border-radius: var(--radius-sm); }
}
