/* =======================================
   KINOO MANGO SHOP - MAIN STYLES v1.1
   ======================================= */

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

:root {
  --green: #2d7a3a;
  --green-light: #4caf50;
  --green-dark: #1b5e20;
  --yellow: #f9a825;
  --orange: #e65100;
  --bg: #fffde7;
  --white: #ffffff;
  --text: #212121;
  --text2: #555555;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body { font-family: 'Hind Siliguri', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ======== HEADER ======== */
#site-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.04); }
.logo-icon { width: 44px; height: 44px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: rotate 0.4s ease; }
.logo:hover .logo-icon { rotate: -10deg; }
.logo-text { color: white; font-size: 22px; font-weight: 700; line-height: 1; }
.logo-sub { color: rgba(255,255,255,0.8); font-size: 12px; }
.header-phone {
  color: white; font-size: 14px; display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); padding: 8px 14px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3); transition: all 0.25s ease;
}
.header-phone:hover { background: rgba(255,255,255,0.28); transform: scale(1.05); }
nav { background: rgba(0,0,0,0.15); border-top: 1px solid rgba(255,255,255,0.1); }
nav ul { display: flex; list-style: none; max-width: 1200px; margin: 0 auto; padding: 0 20px; overflow-x: auto; }
nav ul li a { display: block; color: rgba(255,255,255,0.9); padding: 10px 16px; font-size: 14px; white-space: nowrap; transition: all 0.2s; position: relative; }
nav ul li a::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--yellow); transition: all 0.25s ease; }
nav ul li a:hover { color: white; }
nav ul li a:hover::after { left: 10px; right: 10px; }

/* ======== HERO ======== */
.hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 40%, #388e3c 70%, #f9a825 100%);
  min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-content { max-width: 1200px; margin: 0 auto; padding: 60px 20px; display: flex; align-items: center; gap: 40px; width: 100%; }
.hero-text { flex: 1; z-index: 1; }
.hero-badge {
  display: inline-block; background: var(--yellow); color: var(--green-dark);
  padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; margin-bottom: 16px;
  animation: badgePop 0.6s var(--transition) both;
}
@keyframes badgePop { from { opacity:0; transform: scale(0.7) translateY(10px); } to { opacity:1; transform: scale(1) translateY(0); } }
.hero h1 { color: white; font-size: clamp(28px,5vw,52px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.hero h1 span { color: var(--yellow); }
.hero p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--yellow); color: var(--green-dark); padding: 14px 28px;
  border-radius: 30px; font-weight: 700; font-size: 15px; display: inline-flex;
  align-items: center; gap: 8px; transition: all 0.25s ease; border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary::before { content:''; position:absolute; top:50%; left:50%; width:0; height:0; background:rgba(255,255,255,0.25); border-radius:50%; transform:translate(-50%,-50%); transition: width 0.5s, height 0.5s; }
.btn-primary:hover::before { width:300px; height:300px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent; color: white; padding: 14px 28px; border-radius: 30px;
  font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5); transition: all 0.25s ease; cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-3px); }

.hero-img { flex: 1; text-align: center; z-index: 1; }
.hero-mango { font-size: 180px; line-height: 1; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); animation: float 3s ease-in-out infinite; cursor: default; display: inline-block; }
.hero-mango:hover { animation-play-state: paused; transform: scale(1.1) rotate(-5deg); transition: transform 0.3s ease; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4)); }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(2deg); } }

.hero-stats { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { color: var(--yellow); font-size: 28px; font-weight: 700; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 12px; }

/* ======== TRUST BAR ======== */
.trust-bar { background: var(--green); padding: 14px 20px; overflow: hidden; }
.trust-inner { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 8px; color: white; font-size: 13px; font-weight: 500; transition: transform 0.2s ease; cursor: default; }
.trust-item:hover { transform: translateY(-2px) scale(1.05); }
.trust-icon { font-size: 18px; }

/* ======== SECTIONS ======== */
.section-packages, .section-why, .section-reviews { background: white; }
.section-order, .section-gallery, .section-faq { background: var(--bg); }
.section-packages, .section-order, .section-why,
.section-gallery, .section-reviews, .section-faq { padding: 60px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: clamp(22px,4vw,36px); font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.section-title p { color: var(--text2); font-size: 15px; }
.title-line { width: 60px; height: 4px; background: linear-gradient(to right, var(--green), var(--yellow)); border-radius: 2px; margin: 12px auto 0; transition: width 0.4s ease; }
.section-title:hover .title-line { width: 120px; }

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

.package-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative; cursor: default;
}
.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}
.package-card.popular { border-color: var(--yellow); }
.package-card.popular:hover { border-color: var(--yellow); box-shadow: 0 16px 48px rgba(249,168,37,0.3); }

.popular-badge {
  position: absolute; top: 16px; right: 16px; background: var(--yellow); color: var(--green-dark);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(249,168,37,0.4); } 50% { box-shadow: 0 0 0 6px rgba(249,168,37,0); } }

.package-img {
  height: 180px; background: linear-gradient(135deg, #e8f5e9, #fff9c4);
  display: flex; align-items: center; justify-content: center; font-size: 80px;
  transition: transform 0.4s ease, background 0.3s ease;
}
.package-card:hover .package-img { transform: scale(1.08); background: linear-gradient(135deg, #c8e6c9, #fff59d); }

.package-body { padding: 20px; }
.package-name { font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.package-weight { color: var(--text2); font-size: 14px; margin-bottom: 12px; }
.package-price { font-size: 28px; font-weight: 700; color: var(--orange); margin-bottom: 4px; transition: transform 0.2s ease; }
.package-card:hover .package-price { transform: scale(1.05); }
.package-old-price { text-decoration: line-through; color: #999; font-size: 14px; margin-bottom: 16px; }
.package-features { list-style: none; margin-bottom: 20px; }
.package-features li {
  display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text2);
  padding: 5px 0; border-bottom: 1px dashed #eee; transition: color 0.2s, padding-left 0.2s;
}
.package-card:hover .package-features li { color: var(--text); }
.package-features li:hover { padding-left: 6px; color: var(--green-dark) !important; }
.package-features li::before { content: '✓'; color: var(--green-light); font-weight: 700; flex-shrink: 0; }

.order-btn {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white; border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.25s ease; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-family: 'Hind Siliguri', sans-serif; position: relative; overflow: hidden;
}
.order-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; }
.order-btn:hover::after { left: 100%; }
.order-btn:hover { background: linear-gradient(135deg, var(--green-dark), var(--green)); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,122,58,0.4); }
.order-btn:active { transform: scale(0.97); }

/* ======== ORDER FORM ======== */
.order-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.order-info h3 { font-size: 22px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.order-info p { color: var(--text2); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.info-list { list-style: none; }
.info-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--text); transition: transform 0.2s ease; }
.info-list li:hover { transform: translateX(6px); }
.info-list li .icon { width: 28px; height: 28px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.form-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); transition: box-shadow 0.3s ease; }
.form-card:hover { box-shadow: var(--shadow-hover); }
.form-title { font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 14px; font-family: 'Hind Siliguri', sans-serif; outline: none;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s; background: white; color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,122,58,0.1); transform: scale(1.01); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.submit-btn {
  width: 100%; padding: 15px; background: linear-gradient(135deg, #25d366, #128c7e);
  color: white; border: none; border-radius: 10px; font-size: 16px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Hind Siliguri', sans-serif; transition: all 0.25s ease; margin-top: 8px;
  position: relative; overflow: hidden;
}
.submit-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.6s ease; }
.submit-btn:hover::after { left: 100%; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }
.submit-btn:active { transform: scale(0.97); }
.whatsapp-note { text-align: center; margin-top: 12px; font-size: 13px; color: var(--text2); }

/* ======== WHY US ======== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  text-align: center; padding: 28px 20px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid #e8f5e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.why-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow-hover); background: white; border-color: var(--green-light); }
.why-icon { font-size: 48px; margin-bottom: 14px; display: block; transition: transform 0.4s var(--transition); }
.why-card:hover .why-icon { transform: scale(1.25) rotate(-8deg); }
.why-title { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ======== GALLERY ======== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.gallery-item {
  border-radius: 10px; overflow: hidden; background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center; font-size: 60px;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
  cursor: default;
}
.gallery-item:hover { transform: scale(1.08) rotate(2deg); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* ======== REVIEWS ======== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review-card {
  background: var(--bg); border-radius: var(--radius); padding: 20px; border-left: 4px solid var(--green);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-width 0.2s ease;
  cursor: default;
}
.review-card:hover { transform: translateY(-6px) translateX(4px); box-shadow: var(--shadow-hover); border-left-width: 6px; }
.review-stars { color: var(--yellow); font-size: 16px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex-shrink: 0; transition: transform 0.3s var(--transition); }
.review-card:hover .reviewer-avatar { transform: scale(1.2) rotate(-5deg); }
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--green-dark); }
.reviewer-loc { font-size: 12px; color: var(--text2); }

/* ======== FAQ ======== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: white; border-radius: 10px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.25s ease; }
.faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.faq-q { padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--green-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: background 0.2s, padding-left 0.25s; }
.faq-q:hover { background: #f0faf1; padding-left: 26px; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.35s ease; font-size: 14px; color: var(--text2); line-height: 1.7; }
.faq-item.open .faq-a { padding: 0 20px 16px; max-height: 200px; }
.faq-arrow { transition: transform 0.35s ease; font-size: 18px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ======== FOOTER ======== */
#site-footer { background: var(--green-dark); color: white; padding: 40px 20px 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto 30px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; margin-top: 10px; }
.footer-title { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--yellow); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 13px; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-links a:hover { color: white; padding-left: 6px; }
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.footer-contact p:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; text-align: center; color: rgba(255,255,255,0.5); font-size: 12px; max-width: 1200px; margin: 0 auto; }

/* ======== FLOATING WHATSAPP ======== */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waPulse 2s infinite;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
}
.float-wa:hover { transform: scale(1.18) rotate(-8deg); box-shadow: 0 8px 32px rgba(37,211,102,0.7); animation-play-state: paused; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ======== SUCCESS MODAL ======== */
.success-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; }
.success-overlay.show { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.success-box { background: white; border-radius: 16px; padding: 40px 32px; text-align: center; max-width: 400px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: popIn 0.35s var(--transition) both; }
@keyframes popIn { from { opacity: 0; transform: scale(0.8) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.success-icon { font-size: 60px; margin-bottom: 16px; animation: bounce 0.5s var(--transition) 0.2s both; }
@keyframes bounce { from { transform: scale(0); } to { transform: scale(1); } }
.success-box h3 { font-size: 22px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.success-box p { font-size: 14px; color: var(--text2); margin-bottom: 24px; line-height: 1.6; }
.success-close { padding: 12px 32px; background: var(--green); color: white; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'Hind Siliguri', sans-serif; transition: all 0.2s ease; }
.success-close:hover { background: var(--green-dark); transform: scale(1.05); }

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; padding: 40px 20px; }
  .hero-mango { font-size: 100px; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .order-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  nav ul { padding: 0 10px; }
  .trust-inner { gap: 16px; }
}

/* ======== NOTICE BAR ======== */
.notice-bar {
  background: linear-gradient(90deg, #e65100, #f9a825, #e65100);
  background-size: 200% 100%;
  animation: noticeGradient 4s linear infinite;
  overflow: hidden;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
@keyframes noticeGradient { 0%{background-position:0%} 100%{background-position:200%} }
.notice-track {
  display: inline-flex;
  white-space: nowrap;
  animation: noticeScroll 28s linear infinite;
}
.notice-track span {
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 0 20px;
  letter-spacing: 0.3px;
}
@keyframes noticeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.notice-bar:hover .notice-track { animation-play-state: paused; }

/* ======== MANGO SLIDER ======== */
.mango-slider {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}
.mango-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  font-size: 160px;
  line-height: 220px;
  text-align: center;
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  pointer-events: none;
}
.mango-slide.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: floatSlide 3s ease-in-out infinite;
  pointer-events: auto;
}
@keyframes floatSlide {
  0%,100% { transform: scale(1) translateY(0) rotate(0deg); }
  50%      { transform: scale(1) translateY(-14px) rotate(2deg); }
}
.mango-slide.exit {
  opacity: 0;
  transform: scale(1.2) rotate(10deg);
}

/* ======== EXTRA ORDER BOX ======== */
.extra-order-box {
  border: 1.5px dashed #a5d6a7;
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #f1f8f2;
  transition: border-color 0.2s;
}
.extra-order-box:hover { border-color: var(--green); }
.extra-order-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  user-select: none;
  transition: background 0.2s;
}
.extra-order-toggle:hover { background: #e8f5e9; }
.extra-arrow {
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.3s ease;
}
.extra-order-box.open .extra-arrow { transform: rotate(45deg); }
.extra-order-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 16px;
}
.extra-order-box.open .extra-order-body {
  max-height: 200px;
  padding: 0 16px 14px;
}
