/* ── Variables ── */
:root {
  --navy: #1565C0;
  --navy-dark: #0D47A1;
  --navy-light: #1976D2;
  --orange: #F9A825;
  --orange-light: #FFCA28;
  --orange-pale: #FFFDE7;
  --green: #2E7D32;
  --green-light: #388E3C;
  --green-pale: #E8F5E9;
  --white: #ffffff;
  --gray-light: #f5f6f8;
  --gray: #888;
  --gray-dark: #444;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--gray-dark); background: var(--gray-light); line-height: 1.6; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
  box-shadow: var(--shadow-md);
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { height: 44px; width: auto; }
.navbar-logo-text { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; display: none; }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-links { display: flex; gap: 24px; }
.navbar-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; transition: color var(--transition); }
.navbar-links a:hover { color: var(--orange-light); }
.cart-btn {
  position: relative; background: var(--orange); color: var(--navy-dark);
  border-radius: 50px; padding: 8px 18px; font-size: 0.95rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.cart-btn:hover { background: var(--orange-light); transform: scale(1.04); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--green); color: var(--white);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.7rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.menu-btn { display: none; background: none; color: var(--white); font-size: 1.5rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-inner {
  position: relative; max-width: 1100px; margin: 0 auto;
  padding: 80px 24px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block; background: var(--green); color: var(--white);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
  color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 20px;
}
.hero h1 span { color: var(--orange-light); }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--navy-dark);
  padding: 14px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(249,168,37,0.4);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(249,168,37,0.5); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; border: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-img {
  display: flex; justify-content: center; align-items: center;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 320px; background: rgba(255,255,255,0.06);
}
.hero-img img { width: 100%; height: 380px; object-fit: cover; }
.hero-img .img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 320px; color: rgba(255,255,255,0.4); gap: 12px; font-size: 0.9rem;
}
.hero-img .img-placeholder span { font-size: 3rem; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; color: var(--orange-light); font-size: 1.6rem; font-weight: 800; }
.hero-stat small { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ── Trust Block ── */
.trust-block {
  background: var(--green-pale);
  border-bottom: 2px solid var(--green);
  padding: 20px 24px;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px 40px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--green);
}
.trust-icon { font-size: 1.2rem; }

/* ── Info Banner ── */
.info-banner {
  background: var(--navy); color: var(--white);
  display: none; flex-wrap: wrap;
  justify-content: center; gap: 16px 32px; padding: 12px 24px;
  border-top: 3px solid var(--orange); font-size: 0.88rem;
}
.info-item { display: flex; align-items: center; gap: 6px; }

/* ── Section Base ── */
.section { padding: 72px 24px; max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); font-weight: 800; }
.section-header p { color: var(--gray); margin-top: 8px; font-size: 1rem; }
.section-tag {
  display: inline-block; background: var(--green-pale); color: var(--green);
  padding: 4px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}

/* ── Tabs ── */
.tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; min-height: 50px; }
.tab-btn {
  background: var(--white); color: var(--navy);
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; border: 2px solid var(--border);
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--orange); color: var(--navy-dark); }
.tab-btn.active { background: var(--orange); color: var(--navy-dark); border-color: var(--orange); }

/* ── Products Grid ── */
.products-grid, .combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img { position: relative; height: 200px; overflow: hidden; background: var(--gray-light); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--gray);
  gap: 8px;
}
.img-placeholder span { font-size: 2.5rem; }
.img-placeholder small { font-size: 0.75rem; }
.price-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--orange); color: var(--navy-dark);
  padding: 4px 10px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-desc { font-size: 0.83rem; color: var(--gray); margin-bottom: 10px; line-height: 1.5; flex: 1; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--orange); margin-bottom: 12px; }

/* ── Card Actions (qty + add btn) ── */
.card-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: auto;
}
.qty-selector {
  display: flex; align-items: center; gap: 4px;
  background: var(--gray-light); border-radius: 50px;
  padding: 4px 6px; border: 1.5px solid var(--border);
}
.qty-btn-card {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  font-size: 1.1rem; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--navy-dark);
}
.qty-btn-card:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.qty-display {
  min-width: 24px; text-align: center;
  font-size: 0.92rem; font-weight: 700; color: var(--navy-dark);
}
.add-btn {
  background: var(--green); color: var(--white);
  padding: 9px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.add-btn:hover { background: var(--green-light); transform: scale(1.03); }

/* ── Skeleton ── */
.skeleton { pointer-events: none; }
.skeleton-box {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 400% 100%; animation: shimmer 1.4s infinite;
}
.skeleton-line {
  height: 16px; border-radius: 4px; margin-bottom: 8px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 400% 100%; animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

.empty-state { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-state span { font-size: 3rem; display: block; margin-bottom: 12px; }
#products-error, #combos-error { color: #c62828; text-align: center; display: none; padding: 24px; }

/* ── Section Divider ── */
.section-divider {
  border: none; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Emotional Block ── */
.emotional-block {
  background: var(--green-pale);
  padding: 72px 24px;
}
.emotional-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.emotional-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy); font-weight: 800; margin: 12px 0 20px;
}
.emotional-content p {
  color: var(--gray-dark); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px;
}
.emotional-bullets { display: flex; flex-direction: column; gap: 12px; }
.bullet-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--navy); font-weight: 500;
}
.bullet-item span { color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 1.1rem; }
.emotional-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 300px; background: var(--border);
}
.emotional-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-emotion {
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; font-size: 5rem;
}

/* ── How it Works ── */
.how-it-works { background: var(--navy); padding: 72px 24px; }
.how-inner { max-width: 1000px; margin: 0 auto; }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.7); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(249,168,37,0.15); border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.step h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.step-num {
  display: inline-block; background: var(--orange); color: var(--navy-dark);
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.75rem; font-weight: 700;
  line-height: 24px; text-align: center; margin-bottom: 6px;
}

/* ── Testimonials ── */
.testimonials-section { background: var(--white); padding: 72px 24px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1140px; margin: 0 auto;
}
.testimonial-card {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 28px 24px; border-left: 4px solid var(--green);
}
.testimonial-stars { font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p {
  color: var(--gray-dark); font-size: 0.95rem; line-height: 1.6;
  margin-bottom: 16px; font-style: italic;
}
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--navy); }

/* ── FAQ ── */
.faq-section { background: var(--gray-light); padding: 72px 24px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px; font-weight: 700; color: var(--navy);
  cursor: pointer; font-size: 0.98rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--green-pale); }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--green); font-weight: 700; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; color: var(--gray-dark); font-size: 0.92rem; line-height: 1.6; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 60px 24px; text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: rgba(13,71,161,0.75); margin-bottom: 28px; font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--navy-dark);
  padding: 14px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.btn-white-outline {
  background: transparent; color: var(--navy-dark);
  padding: 14px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; display: inline-block;
  border: 2px solid var(--navy-dark);
  transition: background var(--transition), transform var(--transition);
}
.btn-white-outline:hover { background: rgba(13,71,161,0.1); transform: translateY(-2px); }

/* ── Footer ── */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
footer h4 { color: var(--white); margin-bottom: 14px; font-size: 0.95rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; font-size: 0.88rem; }
footer ul li a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
footer ul li a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px;
  text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-wa-link { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-wa-link:hover { color: var(--orange-light); }

/* ── Cart Panel ── */
.cart-panel {
  position: fixed; top: 0; right: -400px; width: 380px; height: 100vh;
  background: var(--white); z-index: 200;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cart-panel.open { right: 0; }
.cart-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); color: var(--white);
}
.cart-header h3 { font-size: 1.1rem; }
.icon-btn { background: none; color: var(--white); font-size: 1.3rem; padding: 4px; border-radius: 4px; transition: background var(--transition); }
.icon-btn:hover { background: rgba(255,255,255,0.15); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }
#cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: var(--radius-sm); background: var(--gray-light);
}
.cart-item-img { width: 52px; height: 52px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--border); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-sm { width: 100%; height: 100%; background: var(--border); border-radius: var(--radius-sm); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.88rem; color: var(--orange); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--border); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.cart-item-qty span { font-size: 0.9rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-item-remove { background: none; color: var(--gray); font-size: 0.9rem; padding: 4px; border-radius: 4px; flex-shrink: 0; }
.cart-item-remove:hover { color: #c62828; }
.cart-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total-row span { font-size: 1.1rem; }
.cart-total-row strong { font-size: 1.2rem; color: var(--orange); }
#cart-checkout-btn {
  width: 100%; padding: 14px; background: var(--orange); color: var(--navy-dark);
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  transition: background var(--transition);
}
#cart-checkout-btn:hover:not(:disabled) { background: var(--orange-light); }
#cart-checkout-btn:disabled { background: var(--gray); cursor: not-allowed; color: var(--white); }

/* ── Overlay ── */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 150; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition);
}
.overlay.show { opacity: 1; visibility: visible; }

/* ── Modals ── */
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%);
  width: min(560px, 95vw); max-height: 90vh; overflow-y: auto;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 300;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.modal.open { opacity: 1; visibility: visible; transform: translate(-50%,-50%); }
.modal-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); color: var(--white); border-radius: var(--radius) var(--radius) 0 0;
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close { background: none; color: var(--white); font-size: 1.4rem; padding: 2px 8px; border-radius: 4px; }
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-body { padding: 24px; }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--orange); color: var(--navy-dark);
  border-radius: 50px; font-size: 1rem; font-weight: 700; margin-top: 8px;
  transition: background var(--transition);
}
.form-submit:hover:not(:disabled) { background: var(--orange-light); }
.form-submit:disabled { background: var(--gray); cursor: not-allowed; color: var(--white); }
.form-error { color: #c62828; font-size: 0.85rem; margin-top: 12px; display: none; }
.required { color: var(--orange); }

/* ── Checkout Summary ── */
.checkout-summary {
  background: var(--gray-light); border-radius: var(--radius-sm);
  padding: 14px; margin-bottom: 20px;
}
.summary-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.9rem; }
.total-row { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; }

/* ── Payment Modal ── */
.payment-info {
  background: var(--orange-pale); border: 1px solid var(--orange);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.payment-info span { font-size: 0.88rem; color: var(--navy); }
.payment-info strong { font-size: 1.3rem; color: var(--orange); }
.method-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; display: block; }
.methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.method-card {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 12px; text-align: center; cursor: pointer;
  transition: all var(--transition);
}
.method-card:hover { border-color: var(--orange); }
.method-card.selected { border-color: var(--orange); background: var(--orange-pale); }
.method-card span { font-size: 2rem; display: block; margin-bottom: 6px; }
.method-card strong { font-size: 0.88rem; color: var(--navy); display: block; }
.method-card small { font-size: 0.75rem; color: var(--gray); }
.dropzone {
  border: 2px dashed var(--border); border-radius: var(--radius-sm);
  padding: 32px 20px; text-align: center; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--gray-light); margin-bottom: 14px;
}
.dropzone:hover, .dropzone.drag-over { border-color: var(--orange); background: var(--orange-pale); }
.dropzone.has-file { border-color: var(--green); background: var(--green-pale); }
.dropzone span { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.dropzone p { font-size: 0.88rem; color: var(--gray); }
.dropzone small { font-size: 0.78rem; color: var(--gray); }
#file-preview { width: 100%; max-height: 200px; object-fit: contain; border-radius: var(--radius-sm); display: none; margin-bottom: 12px; }

/* ── Success Screen ── */
.success-screen {
  position: fixed; inset: 0; background: var(--white);
  z-index: 400; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition);
}
.success-screen.open { opacity: 1; visibility: visible; }
.success-inner { text-align: center; padding: 40px 24px; max-width: 500px; }
.success-icon { font-size: 5rem; display: block; margin-bottom: 20px; animation: pop 0.5s ease; }
@keyframes pop { 0% { transform: scale(0); } 80% { transform: scale(1.15); } 100% { transform: scale(1); } }
.success-inner h2 { font-size: 1.8rem; color: var(--navy); font-weight: 800; margin-bottom: 10px; }
.success-inner p { color: var(--gray); margin-bottom: 6px; }
.order-ref { font-size: 1.1rem; font-weight: 700; color: var(--green); margin: 12px 0 24px; }
.success-note {
  background: var(--green-pale); border-radius: var(--radius-sm);
  padding: 14px; font-size: 0.88rem; color: var(--navy); margin-bottom: 28px; line-height: 1.6;
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: var(--white);
  padding: 12px 24px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-md); z-index: 500;
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Floating Cart Mobile ── */
.floating-cart {
  display: none; position: fixed; bottom: 24px; right: 24px;
  background: var(--orange); color: var(--navy-dark);
  width: 58px; height: 58px; border-radius: 50%;
  font-size: 1.5rem; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 100;
  transition: transform var(--transition);
}
.floating-cart:hover { transform: scale(1.1); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-img { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .navbar-links { display: none; }
  .menu-btn { display: block; }
  .navbar-logo-text { display: block; }
  .emotional-inner { grid-template-columns: 1fr; gap: 32px; }
  .emotional-img { min-height: 200px; max-height: 280px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; right: -100%; }
  .floating-cart { display: flex; }
  .cart-btn .cart-label { display: none; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .faq-section { padding: 48px 24px; }
  .emotional-block { padding: 48px 24px; }
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--navy); padding: 16px 24px; z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav a { color: rgba(255,255,255,0.85); font-size: 1rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
