/* ═══════════════════════════════════════════════════════════
   FR WONDERS - Organic E-Commerce Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --primary:      #1a5c2a;
  --primary-dark: #123d1c;
  --primary-mid:  #3a8748;
  --primary-light:#e8f5e9;
  --accent:       #f97316;
  --accent-dark:  #ea6d0a;
  --yellow:       #fbbf24;
  --yellow-dark:  #f59e0b;
  --text:         #1f2937;
  --text-muted:   #6b7280;
  --bg-light:     #f0f7f1;
  --bg-dark:      #1a3a22;
  --white:        #ffffff;
  --border:       #e5e7eb;
  --radius:       12px;
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,.16);
  --trans:        all .25s ease;
}

/* ─── Base ───────────────────────────────────────────────── */
* { box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; font-size: 15px; }
h1,h2,h3,h4,h5,h6 { font-weight: 600; color: var(--text); }
a { color: var(--primary); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--primary-dark); }
.fw-600 { font-weight: 600; }

/* ─── Announcement Bar ──────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-mid));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.announcement-ticker { overflow: hidden; flex: 1; }
.ticker-content {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-content span { padding: 0 10px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Navbar ─────────────────────────────────────────────── */
#mainNavbar {
  background: #fff !important;
  border-bottom: 2px solid var(--primary-light);
  padding: .75rem 0;
  transition: var(--trans);
}
#mainNavbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.navbar-logo-text { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.navbar-logo-img { max-height: 50px; }
.navbar-nav .nav-link { font-weight: 500; color: var(--text); padding: .5rem .9rem; border-radius: 8px; transition: var(--trans); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); background: var(--primary-light); }
.dropdown-menu-shop { min-width: 220px; border: none; box-shadow: var(--shadow-hover); border-radius: var(--radius); padding: .5rem; }
.dropdown-item { border-radius: 8px; font-weight: 500; padding: .5rem .75rem; transition: var(--trans); }
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
.nav-icon-btn { position: relative; color: var(--text); font-size: 1.1rem; padding: .4rem .6rem; border-radius: 8px; transition: var(--trans); }
.nav-icon-btn:hover { color: var(--primary); background: var(--primary-light); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-whatsapp-nav { background: #25d366; color: #fff; border: none; font-weight: 600; border-radius: 20px; font-size: 13px; }
.btn-whatsapp-nav:hover { background: #1ebd5a; color: #fff; }
.search-collapse-bar { background: var(--primary-light); border-top: 1px solid var(--border); display: none; }
.search-collapse-bar.open { display: block; }
.search-input { border-radius: 20px; border-color: var(--primary-light); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-primary-green, .btn-cta { background: var(--primary); color: #fff; border: none; border-radius: 10px; font-weight: 600; transition: var(--trans); }
.btn-primary-green:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-cta { background: linear-gradient(135deg, var(--accent), #fb923c); }
.btn-cta:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.btn-outline-green { border: 2px solid var(--primary); color: var(--primary); border-radius: 10px; font-weight: 600; }
.btn-outline-green:hover { background: var(--primary); color: #fff; }
.btn-outline-hero { border: 2px solid rgba(255,255,255,.7); color: #fff; border-radius: 10px; font-weight: 600; }
.btn-outline-hero:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-whatsapp, .btn-whatsapp-large { background: #25d366; color: #fff; border: none; border-radius: 10px; font-weight: 600; }
.btn-whatsapp:hover, .btn-whatsapp-large:hover { background: #1ebd5a; color: #fff; }
.btn-add-cart { background: var(--primary); color: #fff; border: none; border-radius: 8px; font-weight: 500; font-size: 14px; padding: .5rem; transition: var(--trans); }
.btn-add-cart:hover { background: var(--accent); color: #fff; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.05) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; }
.badge-daily-hero { background: rgba(251,191,36,.2); color: var(--yellow); border: 1px solid var(--yellow); border-radius: 20px; padding: .3rem 1rem; font-size: 13px; font-weight: 600; display: inline-block; }
.hero-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: #fff; line-height: 1.2; }
.text-accent { color: var(--yellow); }
.hero-subtitle { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 480px; line-height: 1.7; }
.hero-features { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-features span { color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500; }
.hero-stats { display: flex; gap: 1.5rem; align-items: center; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--yellow); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.min-vh-75 { min-height: 75vh; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-illustration { position: relative; width: 400px; height: 400px; }
.veg-circle { position: absolute; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: rgba(255,255,255,.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2); animation: float 6s ease-in-out infinite; }
.main-circle { width: 140px; height: 140px; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4rem; background: rgba(255,255,255,.15); }
.orbit-1 { width: 70px; height: 70px; top: 20px; left: 160px; animation-delay: .5s; }
.orbit-2 { width: 65px; height: 65px; top: 160px; right: 20px; animation-delay: 1s; }
.orbit-3 { width: 60px; height: 60px; bottom: 40px; left: 160px; animation-delay: 1.5s; }
.orbit-4 { width: 65px; height: 65px; bottom: 80px; left: 30px; animation-delay: 2s; }
.orbit-5 { width: 60px; height: 60px; top: 80px; left: 20px; animation-delay: 2.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; }

/* ─── Trust Strip ─────────────────────────────────────────── */
.trust-strip { background: var(--bg-light); border-bottom: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: .75rem; justify-content: center; }
.trust-icon { font-size: 1.75rem; }
.trust-text { text-align: left; font-size: 14px; line-height: 1.4; }

/* ─── Sections ─────────────────────────────────────────────── */
.bg-light-green { background: var(--bg-light); }
.bg-deep-green { background: var(--bg-dark); }
.section-badge { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 600; padding: .25rem .75rem; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
.section-subtitle { color: var(--text-muted); max-width: 500px; margin: .5rem auto 0; }
.text-primary-green { color: var(--primary) !important; }

/* ─── Category Cards ─────────────────────────────────────── */
.category-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.25rem .75rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--border);
  transition: var(--trans); color: var(--text);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); color: var(--primary); }
.cat-icon-wrap { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; }
.cat-emoji { font-size: 1.75rem; }
.cat-name { font-size: 13px; font-weight: 600; margin: 0; }
.cat-count { font-size: 11px; color: var(--text-muted); }

/* ─── Product Cards ─────────────────────────────────────── */
.product-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; transition: var(--trans);
  display: flex; flex-direction: column; height: 100%;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.product-img-link { display: block; }
.product-img-wrap { position: relative; padding-top: 75%; overflow: hidden; background: var(--bg-light); }
.product-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: var(--bg-light); }
.product-badges { position: absolute; top: 8px; left: 8px; right: 8px; display: flex; justify-content: space-between; align-items: flex-start; gap: 4px; flex-wrap: wrap; }
.badge-organic { background: var(--primary); color: #fff; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 20px; }
.badge-daily {
  background: var(--yellow); color: #1f2937; font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}
.badge-discount { background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
@keyframes pulse-badge { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.product-info { padding: .75rem; flex: 1; display: flex; flex-direction: column; }
.product-category { color: var(--primary); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.product-name { font-size: 14px; font-weight: 600; margin: .25rem 0; }
.product-name a { color: var(--text); }
.product-name a:hover { color: var(--primary); }
.product-price-row { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; margin-bottom: auto; }
.product-price { font-size: 1rem; font-weight: 700; color: var(--primary); }
.product-mrp { font-size: .8rem; color: var(--text-muted); text-decoration: line-through; }
.product-unit { font-size: .75rem; }

/* Product Detail */
.product-detail-img-wrap { border-radius: var(--radius); overflow: hidden; background: var(--bg-light); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.product-detail-img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-placeholder { font-size: 8rem; }
.product-badges-detail { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.badge-organic-lg { background: var(--primary); color: #fff; padding: .3rem .75rem; border-radius: 20px; font-size: 13px; font-weight: 600; }
.badge-daily-lg { background: var(--yellow); color: #1f2937; padding: .3rem .75rem; border-radius: 20px; font-size: 13px; font-weight: 700; }
.product-category-tag { display: inline-flex; align-items: center; background: var(--primary-light); color: var(--primary); padding: .25rem .75rem; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: .75rem; }
.product-detail-name { font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.product-detail-price-row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: .5rem; }
.price-main { font-size: 2.25rem; font-weight: 800; color: var(--primary); }
.price-mrp { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { background: var(--accent); color: #fff; padding: .2rem .6rem; border-radius: 20px; font-size: 13px; font-weight: 700; }
.price-unit { color: var(--text-muted); font-size: .9rem; }
.add-cart-section { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.qty-selector { display: flex; align-items: center; border: 2px solid var(--border); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 36px; height: 44px; border: none; background: var(--bg-light); font-size: 1.25rem; font-weight: 700; cursor: pointer; transition: var(--trans); }
.qty-btn:hover { background: var(--primary); color: #fff; }
.qty-input { width: 52px; height: 44px; border: none; text-align: center; font-size: 1rem; font-weight: 600; }
.product-features { display: flex; flex-wrap: wrap; gap: .5rem; }
.feature-tag { font-size: 13px; color: var(--text-muted); }
.security-badges { display: flex; flex-wrap: wrap; gap: .75rem; }
.sec-badge { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ─── Shop Page ─────────────────────────────────────────── */
.page-banner { border-bottom: 1px solid var(--border); }
.shop-sidebar { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; position: sticky; top: 80px; }
.sidebar-heading { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--primary-light); }
.category-filter-list { list-style: none; padding: 0; margin: 0; }
.category-filter-list li a { display: flex; align-items: center; justify-content: space-between; padding: .5rem .75rem; border-radius: 8px; color: var(--text); font-size: 14px; font-weight: 500; transition: var(--trans); }
.category-filter-list li a:hover, .category-filter-list li a.active { background: var(--primary-light); color: var(--primary); }
.cat-count-badge { background: var(--primary-light); color: var(--primary); font-size: 11px; padding: 1px 8px; border-radius: 20px; font-weight: 600; }
.sidebar-info-box { background: var(--bg-light); border-radius: 8px; padding: .75rem; font-size: 13px; }
.shop-topbar { padding: 1rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.empty-state .empty-icon { font-size: 5rem; }

/* ─── Cart ──────────────────────────────────────────────── */
.cart-table-wrap { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.cart-item-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.cart-item-row:last-child { border-bottom: none; }
.cart-item-img img, .cart-item-placeholder { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.cart-item-details { flex: 1; min-width: 120px; }
.cart-item-name { font-size: 15px; font-weight: 600; margin: 0; }
.cart-item-price { font-weight: 600; color: var(--primary); }
.qty-selector-sm { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn-sm { width: 30px; height: 34px; border: none; background: var(--bg-light); font-size: 1rem; cursor: pointer; transition: var(--trans); }
.qty-btn-sm:hover { background: var(--primary); color: #fff; }
.qty-input-sm { width: 44px; height: 34px; border: none; text-align: center; font-size: 14px; font-weight: 600; }
.cart-item-subtotal { font-size: 15px; min-width: 70px; text-align: right; }
.btn-remove-cart { color: var(--text-muted); font-size: 1rem; }
.btn-remove-cart:hover { color: #ef4444; }
.order-summary-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 80px; }
.summary-title { font-size: 1rem; font-weight: 700; border-bottom: 2px solid var(--primary-light); padding-bottom: .75rem; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: .75rem; font-size: 15px; }
.total-row { border-top: 2px solid var(--border); padding-top: .75rem; margin-top: .75rem; font-size: 1.1rem; }
.free-shipping-hint { background: #fef3c7; border: 1px solid #fcd34d; border-radius: 8px; padding: .5rem .75rem; font-size: 12px; color: #92400e; margin-bottom: .75rem; }
.empty-cart { }
.empty-cart-icon { font-size: 6rem; }

/* ─── Checkout ─────────────────────────────────────────── */
.checkout-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.trust-mini { padding: .5rem; }
.summary-item { display: flex; justify-content: space-between; font-size: 14px; padding: .4rem 0; }
.summary-item-name { flex: 1; padding-right: .5rem; }

/* ─── Success Page ──────────────────────────────────────── */
.success-page { max-width: 700px; margin: 0 auto; }
.success-icon-wrap { display: flex; justify-content: center; }
.success-icon { font-size: 5rem; animation: bounceIn .6s; }
@keyframes bounceIn { 0% { transform: scale(.3); opacity: 0; } 70% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.order-success-card { background: var(--bg-light); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); }
.order-number-display { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 1rem; }
.order-number-badge { background: var(--primary); color: #fff; padding: .3rem 1rem; border-radius: 20px; font-weight: 700; font-size: 1.1rem; }

/* ─── Static Pages ──────────────────────────────────────── */
.page-hero-banner { padding: 60px 0; }
.about-visual { font-size: 8rem; }
.value-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid var(--border); transition: var(--trans); }
.value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.value-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.about-contact-card { background: var(--bg-light); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.contact-info-card { background: var(--primary-dark); color: #fff; border-radius: var(--radius); padding: 2rem; }
.contact-info-card h4 { color: #fff; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-info-icon { width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card a { color: var(--yellow); }
.static-page-content, .prose { font-size: 15px; line-height: 1.8; color: var(--text); }
.static-page-content h2, .prose h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: .75rem; color: var(--primary); }
.static-page-content p, .prose p { margin-bottom: 1rem; }

/* ─── Why Choose Us ─────────────────────────────────────── */
.why-card { text-align: center; padding: 1.5rem 1rem; }
.why-card .why-icon { font-size: 2.75rem; margin-bottom: .75rem; }
.why-card h5 { color: #fff; font-weight: 600; }
.why-card p { color: rgba(255,255,255,.75); font-size: 14px; }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.reviewer strong { display: block; }
.reviewer small { color: var(--text-muted); }

/* ─── WhatsApp CTA ──────────────────────────────────────── */
.whatsapp-cta-card { background: linear-gradient(135deg, #075e54, #128c7e); border-radius: var(--radius); padding: 2rem; color: #fff; }
.whatsapp-cta-card h4, .whatsapp-cta-card p { color: #fff; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { color: rgba(255,255,255,.8); }
.footer-top { background: var(--bg-dark); padding: 60px 0 40px; }
.footer-logo { max-height: 50px; }
.footer-logo-text { color: var(--yellow); font-size: 1.4rem; font-weight: 700; }
.footer-tagline { color: var(--yellow); font-size: 14px; font-weight: 600; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-heading { color: var(--yellow); font-size: 15px; font-weight: 700; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 13px; transition: var(--trans); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: .75rem; margin-bottom: .75rem; font-size: 13px; color: rgba(255,255,255,.7); align-items: flex-start; }
.footer-contact-list li i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.7); }
.footer-contact-list a:hover { color: var(--yellow); }
.policy-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.policy-links a { color: rgba(255,255,255,.6); font-size: 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 2px 10px; transition: var(--trans); }
.policy-links a:hover { background: rgba(255,255,255,.1); color: var(--yellow); }
.social-links { display: flex; gap: .5rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .875rem; color: #fff; transition: var(--trans); }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.whatsapp { background: #25d366; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.footer-bottom { background: rgb(51 51 51); padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,.5); }
.footer-credit { font-size: 12px; color: rgba(255,255,255,.5); }
.footer-credit-link { color: #7ecb91; font-weight: 600; text-decoration: none; transition: color .2s; }
.footer-credit-link:hover { color: #fff; text-decoration: underline; }
.payment-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.badge-trust { font-size: 11px; color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); padding: 3px 9px; border-radius: 20px; border: 1px solid rgba(255,255,255,.1); }

/* ─── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9990;
  background: #25d366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--trans);
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.whatsapp-tooltip { display: none; position: absolute; right: 68px; background: #333; color: #fff; padding: .35rem .75rem; border-radius: 6px; white-space: nowrap; font-size: 12px; }
.whatsapp-float:hover .whatsapp-tooltip { display: block; }

/* ─── Toast ──────────────────────────────────────────────── */
.toast-msg { min-width: 260px; border-radius: 10px; font-size: 14px; font-weight: 500; box-shadow: 0 4px 20px rgba(0,0,0,.15); }

/* ─── Loading Overlay ─────────────────────────────────────── */
.loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,.7); z-index: 9999; display: flex; align-items: center; justify-content: center; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section { padding: 50px 0 40px; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.2rem; }
  .cart-item-row { gap: .5rem; }
  .order-summary-card { position: static; }
  .payment-badges { justify-content: flex-start; margin-top: .5rem; }
  .trust-strip .trust-item { font-size: 13px; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.75rem; }
  .product-detail-name { font-size: 1.5rem; }
  .price-main { font-size: 1.75rem; }
}
