/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', sans-serif; background: #f8fafc; color: #0f172a; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar { background: #1e293b; color: #cbd5e1; font-size: 0.8rem; padding: 8px 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.sale-tag { background: #ef4444; color: white; padding: 3px 12px; border-radius: 4px; font-weight: 700; font-size: 0.75rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }

/* ==========================================
   HEADER
   ========================================== */
.main-header { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(229, 231, 235, 0.5); padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; }
.header-inner { display: flex; align-items: center; gap: 28px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { background: #008a68; color: white; width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: #008a68; }

.search-wrapper { flex: 1; max-width: 520px; position: relative; }
.search-input { width: 100%; padding: 11px 50px 11px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-family: inherit; font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
.search-input:focus { border-color: #008a68; }
.search-btn { position: absolute; right: 0; top: 0; height: 100%; padding: 0 16px; background: #008a68; border: none; border-radius: 0 8px 8px 0; cursor: pointer; color: white; display: flex; align-items: center; }
.search-btn:hover { background: #006b50; }

.header-right { display: flex; align-items: center; gap: 24px; margin-left: auto; flex-shrink: 0; }
.help-block { display: flex; align-items: center; gap: 10px; }
.help-label { font-size: 0.7rem; color: #6b7280; font-weight: 600; text-transform: uppercase; }
.help-number { font-size: 0.95rem; font-weight: 700; color: #1a1f36; }
.icon-link { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 0.72rem; color: #1a1f36; font-weight: 500; cursor: pointer; transition: color 0.2s; }
.icon-link:hover { color: #008a68; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: #008a68; color: white; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar { background: #008a68; }
.nav-inner { display: flex; align-items: stretch; }
.nav-categories { background: rgba(0,0,0,0.2); padding: 14px 20px; display: flex; align-items: center; gap: 8px; color: white; font-weight: 700; font-size: 0.9rem; cursor: pointer; flex-shrink: 0; }
.nav-link { padding: 14px 18px; color: white; font-weight: 500; font-size: 0.9rem; transition: background 0.2s; display: flex; align-items: center; }
.nav-link:hover, .nav-link.active { background: rgba(0,0,0,0.15); }

/* ==========================================
   HERO
   ========================================== */
.hero { background: radial-gradient(circle at 10% 20%, rgb(14, 21, 38) 0%, rgb(20, 68, 56) 100%); color: white; padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 40%); animation: rotateGradient 20s linear infinite; pointer-events: none; }
@keyframes rotateGradient { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.25); padding: 6px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 28px; color: #fde68a; letter-spacing: 1px; text-transform: uppercase; }
.hero-title { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.02em; }
.hero-highlight { background: linear-gradient(to right, #00e5ff, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 40px; line-height: 1.7; font-weight: 400; }
.hero-btn { display: inline-flex; align-items: center; gap: 8px; background: #008a68; color: white; padding: 16px 40px; border-radius: 12px; font-weight: 700; font-size: 1.05rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 14px rgba(0, 138, 104, 0.4); }
.hero-btn:hover { background: #006b50; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0, 138, 104, 0.6); }

/* ==========================================
   TRUST BADGES
   ========================================== */
.trust-section { margin-top: -44px; margin-bottom: 56px; position: relative; z-index: 10; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.trust-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-text h4 { font-size: 1rem; font-weight: 700; color: #1a1f36; margin-bottom: 4px; }
.trust-text p { font-size: 0.8rem; color: #6b7280; }

/* ==========================================
   SECTIONS
   ========================================== */
.section { margin-bottom: 60px; }
.section-title { font-size: 1.9rem; font-weight: 800; color: #1a1f36; margin-bottom: 8px; text-align: center; }
.section-subtitle { font-size: 0.9rem; color: #6b7280; text-align: center; margin-bottom: 36px; }

/* ==========================================
   CATEGORIES
   ========================================== */
.categories-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.category-card { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; flex-shrink: 0; }
.cat-img-wrapper { width: 110px; height: 110px; border-radius: 16px; overflow: hidden; border: 2px solid #e5e7eb; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.cat-img-wrapper:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,138,104,0.2); border-color: #008a68; }
.cat-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.cat-name { font-weight: 700; font-size: 0.9rem; color: #1a1f36; text-align: center; }
.cat-count { font-size: 0.75rem; color: #6b7280; }

/* ==========================================
   FILTER TABS
   ========================================== */
.filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border-radius: 50px; border: 1px solid #e5e7eb; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; background: white; color: #1a1f36; }
.filter-btn:hover { border-color: #008a68; color: #008a68; }
.filter-btn.active { background: #008a68; color: white; border-color: #008a68; }

/* ==========================================
   COUPON STRIP & TRUST
   ========================================== */
.coupon-strip { background: linear-gradient(90deg, #10b981, #008a68); color: white; text-align: center; padding: 10px 16px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; }
.coupon-strip strong { background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 4px; margin-left: 6px; }

.trust-points { display: flex; flex-wrap: wrap; column-gap: 12px; row-gap: 4px; font-size: 0.75rem; color: #10b981; margin-top: 8px; margin-bottom: 16px; line-height: 1.5; font-weight: 600; text-align: left; }
.trust-points div { display: flex; align-items: center; gap: 4px; white-space: nowrap; }

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.product-card { background: white; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: #d1d5db; }
.badge-row { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; z-index: 10; pointer-events: none; }
.discount-badge { background: #ef4444; color: white; padding: 4px 10px; border-radius: 8px; font-weight: 800; font-size: 0.75rem; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3); }
.hot-badge { background: #f59e0b; color: white; padding: 4px 10px; border-radius: 8px; font-weight: 800; font-size: 0.75rem; box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3); animation: pulse 2s infinite; }
.product-img { width: 100%; height: 210px; object-fit: cover; background: #f1f5f9; }
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-category { font-size: 0.75rem; font-weight: 700; color: #008a68; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.5px; }
.product-title { font-size: 1.05rem; font-weight: 700; color: #1a1f36; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.original-price { font-size: 0.9rem; color: #94a3b8; text-decoration: line-through; font-weight: 600; }
.current-price { font-size: 1.4rem; font-weight: 800; color: #0f172a; }
.starting-from { font-size: 0.75rem; color: #64748b; font-weight: 500; margin-right: 4px; }
.action-row { margin-top: auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 8px; }
.buy-now-btn { width: 100%; background: #008a68; color: white; border: none; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: background 0.2s; text-align: center; }
.buy-now-btn:hover { background: #006b50; }
.add-to-cart-btn { width: 100%; background: #f8fafc; color: #1e293b; border: 1px solid #e2e8f0; padding: 10px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; text-align: center; }
.add-to-cart-btn:hover { background: #f1f5f9; border-color: #cbd5e1; }
.watching-row { margin-top: 16px; background: #fffbeb; border: 1px solid #fef3c7; border-radius: 8px; padding: 10px 12px; font-size: 0.75rem; color: #92400e; display: flex; align-items: center; gap: 6px; justify-content: center; font-weight: 600; }

/* ==========================================
   FAQ
   ========================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; padding: 18px 24px; background: none; border: none; font-family: inherit; font-size: 1rem; font-weight: 600; color: #1a1f36; cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-align: left; transition: background 0.2s; }
.faq-question:hover { background: #f8fafc; }
.faq-icon { font-size: 1.4rem; color: #008a68; transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: #6b7280; font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { padding: 0 24px 18px; max-height: 200px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #1e293b; color: #94a3b8; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { padding: 7px 14px; background: rgba(255,255,255,0.08); border-radius: 6px; font-size: 0.8rem; font-weight: 600; transition: background 0.2s; }
.social-btn:hover { background: rgba(255,255,255,0.15); color: white; }
.footer-heading { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.875rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.8rem; display: flex; flex-direction: column; gap: 6px; }

/* ==========================================
   WHATSAPP FLOAT & LIVE SALES
   ========================================== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; background: #25d366; color: white; border-radius: 50px; padding: 14px 24px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem; box-shadow: 0 8px 24px rgba(37,211,102,0.4); z-index: 999; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 32px rgba(37,211,102,0.5); color: white; }

.live-sales-popup { position: fixed; bottom: 24px; left: -400px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border: 1px solid rgba(229, 231, 235, 0.5); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); z-index: 998; transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1); max-width: 320px; }
.live-sales-popup.show { left: 24px; }
.live-sales-img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.live-sales-text { font-size: 0.8rem; color: #374151; line-height: 1.4; }
.live-sales-text strong { color: #111827; }
.live-sales-time { font-size: 0.7rem; color: #6b7280; display: block; margin-top: 2px; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .help-block { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-inner { overflow-x: auto; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero { padding: 60px 24px; }
}

/* ==========================================
   VERIFIED PROOFS SLIDER
   ========================================== */
.proofSwiper {
  width: 100%;
}
.proof-slide {
  width: 300px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .proof-slide {
    width: 220px;
    height: 380px;
  }
}
