@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --warm-white: #F7F6F2;
  --deep-forest: #17352B;
  --natural-green: #4F7058;
  --accent-orange: #E87532;
  --charcoal: #1D2421;
  --soft-gray: #E7E8E4;
  --white: #FFFFFF;
  --text-dark: #1D2421;
  --text-muted: #5A645E;
  --border: #E0E2DE;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:'Inter',sans-serif; color:var(--text-dark); background:var(--white); line-height:1.6; overflow-x:hidden; }
h1,h2,h3,h4,h5,h6 { font-family:'Manrope',sans-serif; font-weight:800; letter-spacing:-0.02em; color:var(--deep-forest); }
a { text-decoration:none; color:inherit; transition:color var(--transition); }
img { max-width:100%; display:block; }
.container { width:90%; max-width:1280px; margin:0 auto; }

/* ===== Announcement Bar ===== */
.announcement-bar { background:var(--deep-forest); color:#fff; text-align:center; font-size:0.85rem; font-weight:600; letter-spacing:0.04em; padding:8px 15px; position:relative; z-index:1001; }

/* ===== Header ===== */
header { position:fixed; top:0; left:0; width:100%; z-index:1000; padding:18px 0; transition:background var(--transition), box-shadow var(--transition), padding var(--transition); background:transparent; color:#fff; }
header.scrolled { background:#fff; color:var(--text-dark); padding:10px 0; box-shadow:var(--shadow-sm); }
.header-inner { display:flex; align-items:center; justify-content:space-between; }
.logo { font-size:1.8rem; font-weight:800; color:inherit; display:flex; align-items:center; gap:8px; }
.logo span { color:var(--accent-orange); }
.nav-links { display:flex; gap:32px; list-style:none; margin-left:40px; }
.nav-links a { font-weight:600; font-size:0.95rem; color:inherit; }
.nav-links a:hover { color:var(--accent-orange); }
.header-actions { display:flex; align-items:center; gap:20px; }
.icon-btn { background:none; border:none; color:inherit; font-size:1.2rem; cursor:pointer; position:relative; display:flex; align-items:center; gap:5px; }
.icon-btn svg { width:22px; height:22px; fill:currentColor; }
.icon-btn:hover { color:var(--accent-orange); }
.cart-count { position:absolute; top:-8px; right:-10px; background:var(--accent-orange); color:#fff; font-size:0.7rem; font-weight:700; width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.hamburger { display:none; background:none; border:none; color:inherit; cursor:pointer; }
.hamburger svg { width:28px; height:28px; fill:currentColor; }

/* ===== Hero ===== */
.hero { background:linear-gradient(135deg, #1d2e28 0%, #17352B 60%, #0d211b 100%); color:#fff; min-height:100vh; display:flex; align-items:center; padding-top:100px; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:0; right:0; width:50%; height:100%; background:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%); z-index:1; }
.hero .container { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-content h1 { color:#fff; font-size:3.8rem; line-height:1.1; margin-bottom:20px; }
.hero-content p { font-size:1.25rem; color:rgba(255,255,255,0.85); margin-bottom:30px; max-width:500px; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:25px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:16px 36px; border-radius:50px; font-weight:700; font-size:0.95rem; letter-spacing:0.02em; cursor:pointer; transition:all var(--transition); border:none; }
.btn-primary { background:var(--accent-orange); color:#fff; box-shadow:0 10px 25px rgba(232,117,50,0.4); }
.btn-primary:hover { background:#d65f20; transform:translateY(-2px); }
.btn-outline-light { background:transparent; border:2px solid rgba(255,255,255,0.5); color:#fff; }
.btn-outline-light:hover { background:rgba(255,255,255,0.1); border-color:#fff; }
.btn-outline { background:transparent; border:2px solid var(--natural-green); color:var(--natural-green); }
.btn-outline:hover { background:var(--natural-green); color:#fff; }
.hero-rating { display:flex; align-items:center; gap:15px; flex-wrap:wrap; }
.hero-rating .stars { color:#FFC107; font-size:1.2rem; letter-spacing:2px; }
.hero-rating p { margin:0; font-size:0.95rem; color:rgba(255,255,255,0.7); }
.hero-image { position:relative; z-index:2; }
.hero-image .placeholder { border-radius:20px; background:#e0e0e0; height:500px; width:100%; display:flex; align-items:center; justify-content:center; color:#999; font-size:1.5rem; box-shadow:0 30px 60px rgba(0,0,0,0.3); }

/* ===== Trust Bar ===== */
.trust-bar { background:#fff; padding:50px 0; border-bottom:1px solid var(--border); }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.trust-item { display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px; }
.trust-icon { width:56px; height:56px; border-radius:50%; background:var(--warm-white); display:flex; align-items:center; justify-content:center; margin-bottom:8px; }
.trust-icon svg { width:28px; height:28px; fill:var(--natural-green); }
.trust-item h4 { font-size:1rem; font-weight:700; }
.trust-item p { font-size:0.9rem; color:var(--text-muted); }

/* ===== Sections ===== */
.section { padding:90px 0; }
.section-header { text-align:center; max-width:700px; margin:0 auto 50px; }
.section-header h2 { font-size:2.5rem; margin-bottom:12px; }
.section-header p { font-size:1.1rem; color:var(--text-muted); }

/* ===== Categories ===== */
.categories-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.category-card { background:var(--warm-white); border-radius:var(--radius); overflow:hidden; transition:transform var(--transition), box-shadow var(--transition); }
.category-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.category-placeholder { height:250px; background:#e0e0e0; display:flex; align-items:center; justify-content:center; color:#999; font-size:1.2rem; }
.category-info { padding:20px; }
.category-info h3 { font-size:1.3rem; margin-bottom:4px; }
.category-info p { font-size:0.95rem; color:var(--text-muted); margin-bottom:12px; }
.category-link { font-weight:700; color:var(--accent-orange); display:inline-flex; align-items:center; gap:6px; }

/* ===== Product Grid ===== */
.product-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr)); gap:30px; }
.product-card { background:#fff; border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); transition:transform var(--transition), box-shadow var(--transition); position:relative; display:flex; flex-direction:column; }
.product-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.product-card-img { height:220px; overflow:hidden; position:relative; background:#e0e0e0; display:flex; align-items:center; justify-content:center; color:#999; font-size:1.2rem; }
.product-badge { position:absolute; top:15px; left:15px; background:var(--accent-orange); color:#fff; padding:5px 12px; border-radius:20px; font-size:0.75rem; font-weight:700; z-index:2; }
.product-badge.free-shipping { background:var(--deep-forest); top:auto; bottom:15px; left:15px; }
.product-card-body { padding:18px; display:flex; flex-direction:column; flex-grow:1; }
.product-card-rating { display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.product-card-rating .stars { color:#FFC107; font-size:0.9rem; letter-spacing:1px; }
.product-card-rating span { font-size:0.85rem; color:var(--text-muted); }
.product-card-name { font-size:1.05rem; font-weight:700; margin-bottom:6px; line-height:1.3; }
.product-card-name a:hover { color:var(--natural-green); }
.product-card-type { font-size:0.85rem; color:var(--text-muted); margin-bottom:10px; }
.product-card-price { display:flex; align-items:center; gap:10px; margin-bottom:15px; flex-wrap:wrap; }
.price-current { font-size:1.4rem; font-weight:800; color:var(--deep-forest); }
.price-original { font-size:1rem; color:var(--text-muted); text-decoration:line-through; }
.save-badge { background:#E8F5E9; color:var(--natural-green); font-weight:700; font-size:0.8rem; padding:4px 10px; border-radius:20px; }
.product-card-actions { margin-top:auto; display:flex; gap:10px; }
.btn-add-cart { flex:1; background:var(--deep-forest); color:#fff; border:none; padding:12px; border-radius:25px; font-weight:600; cursor:pointer; transition:background var(--transition); }
.btn-add-cart:hover { background:var(--natural-green); }
.btn-view-details { flex:1; background:transparent; border:1px solid var(--border); color:var(--text-dark); padding:12px; border-radius:25px; cursor:pointer; font-weight:600; transition:border-color var(--transition), background var(--transition); }
.btn-view-details:hover { border-color:var(--natural-green); background:var(--warm-white); }

/* ===== Quiz ===== */
.quiz-section { background:var(--warm-white); border-radius:var(--radius); padding:60px; box-shadow:var(--shadow-sm); }
.quiz-question { margin-bottom:30px; }
.quiz-question h3 { font-size:1.4rem; margin-bottom:20px; }
.quiz-options { display:flex; flex-wrap:wrap; gap:15px; }
.quiz-option { background:#fff; border:2px solid var(--border); padding:14px 28px; border-radius:40px; font-weight:600; cursor:pointer; transition:all var(--transition); }
.quiz-option:hover, .quiz-option.selected { border-color:var(--accent-orange); background:#FFF3ED; }

/* ===== Featured Product ===== */
.featured-product { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.featured-product-img .placeholder { border-radius:var(--radius); background:#e0e0e0; height:500px; display:flex; align-items:center; justify-content:center; color:#999; font-size:1.5rem; }
.featured-product-info h2 { font-size:2.8rem; margin-bottom:20px; }
.featured-product-info p { font-size:1.1rem; color:var(--text-muted); margin-bottom:30px; }
.feature-list { list-style:none; margin-bottom:30px; }
.feature-list li { display:flex; align-items:center; gap:12px; margin-bottom:12px; font-weight:500; }
.feature-list li::before { content:'✓'; color:var(--natural-green); font-weight:700; }

/* ===== Why Choose Us ===== */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.why-card { text-align:center; padding:30px 20px; background:var(--warm-white); border-radius:var(--radius); transition:transform var(--transition), box-shadow var(--transition); }
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-sm); }
.why-icon { width:60px; height:60px; margin:0 auto 20px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.why-icon svg { width:30px; height:30px; fill:var(--accent-orange); }
.why-card h3 { font-size:1.2rem; margin-bottom:8px; }
.why-card p { font-size:0.95rem; color:var(--text-muted); }

/* ===== Lifestyle Banner ===== */
.lifestyle-banner { background:var(--deep-forest); padding:120px 0; text-align:center; color:#fff; }
.lifestyle-banner h2 { color:#fff; font-size:3rem; margin-bottom:15px; }
.lifestyle-banner p { font-size:1.25rem; max-width:600px; margin:0 auto 30px; opacity:0.9; }

/* ===== Testimonials ===== */
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:30px; }
.testimonial-card { background:var(--warm-white); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-sm); }
.testimonial-header { display:flex; align-items:center; gap:12px; margin-bottom:15px; }
.testimonial-avatar { width:50px; height:50px; border-radius:50%; background:var(--natural-green); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1.2rem; }
.testimonial-info .name { font-weight:700; }
.testimonial-info .location { font-size:0.85rem; color:var(--text-muted); }
.testimonial-stars { color:#FFC107; margin-bottom:10px; letter-spacing:1px; }
.testimonial-text { font-style:italic; color:var(--text-muted); }

/* ===== Sale ===== */
.sale-section { background:var(--deep-forest); color:#fff; text-align:center; padding:90px 0; }
.sale-section h2 { color:#fff; font-size:2.8rem; margin-bottom:10px; }
.sale-section p { font-size:1.15rem; margin-bottom:30px; opacity:0.9; }

/* ===== Guide ===== */
.guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.guide-card { background:var(--warm-white); border-radius:var(--radius); overflow:hidden; transition:transform var(--transition), box-shadow var(--transition); }
.guide-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.guide-placeholder { height:200px; background:#e0e0e0; display:flex; align-items:center; justify-content:center; color:#999; font-size:1.2rem; }
.guide-card-body { padding:25px; }
.guide-card-body h3 { font-size:1.3rem; margin-bottom:10px; }
.guide-card-body p { font-size:0.95rem; color:var(--text-muted); margin-bottom:15px; }

/* ===== FAQ ===== */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); margin-bottom:10px; }
.faq-question { display:flex; justify-content:space-between; align-items:center; padding:20px 0; cursor:pointer; font-weight:700; font-size:1.1rem; color:var(--deep-forest); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.3s; color:var(--text-muted); padding:0; }
.faq-item.active .faq-answer { max-height:300px; padding-bottom:20px; }
.faq-question span { transition:transform 0.3s; }
.faq-item.active .faq-question span { transform:rotate(180deg); }

/* ===== Final CTA ===== */
.final-cta { background:var(--deep-forest); padding:120px 0; text-align:center; color:#fff; }
.final-cta h2 { color:#fff; font-size:3rem; margin-bottom:15px; }
.final-cta p { font-size:1.2rem; margin-bottom:30px; opacity:0.9; }

/* ===== Footer ===== */
footer { background:var(--charcoal); color:#ccc; padding:70px 0 30px; }
.footer-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; margin-bottom:50px; }
.footer-col h4 { color:#fff; margin-bottom:20px; font-size:1.1rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { color:#aaa; font-size:0.95rem; }
.footer-col ul li a:hover { color:var(--accent-orange); }
.footer-bottom { border-top:1px solid #333; padding-top:30px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.footer-bottom p { font-size:0.9rem; color:#888; }
.payment-icons { display:flex; gap:15px; }
.payment-icons span { background:#fff; color:#333; width:40px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:4px; font-weight:700; font-size:0.7rem; }

/* ===== Cart Drawer ===== */
.cart-drawer { position:fixed; top:0; right:-450px; width:400px; height:100vh; background:#fff; z-index:2000; box-shadow:-10px 0 30px rgba(0,0,0,0.15); transition:right 0.4s; display:flex; flex-direction:column; }
.cart-drawer.open { right:0; }
.cart-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:1999; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.cart-overlay.show { opacity:1; pointer-events:auto; }
.cart-header { display:flex; justify-content:space-between; align-items:center; padding:20px; border-bottom:1px solid var(--border); }
.cart-close { background:none; border:none; font-size:1.5rem; cursor:pointer; color:var(--text-dark); line-height:1; }
.cart-items { flex:1; overflow-y:auto; padding:20px; }
.cart-item { display:flex; gap:15px; margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid var(--border); align-items:center; }
.cart-item-img { width:80px; height:80px; background:#e0e0e0; border-radius:8px; display:flex; align-items:center; justify-content:center; color:#999; flex-shrink:0; }
.cart-item-info { flex:1; }
.cart-item-name { font-weight:700; font-size:0.95rem; margin-bottom:4px; }
.cart-item-price { color:var(--accent-orange); font-weight:700; }
.cart-item-qty { display:flex; align-items:center; gap:10px; margin-top:8px; }
.cart-item-qty button { width:28px; height:28px; border-radius:50%; border:1px solid var(--border); background:none; cursor:pointer; font-weight:700; display:flex; align-items:center; justify-content:center; }
.cart-item-remove { background:none; border:none; color:#999; cursor:pointer; font-size:0.85rem; text-decoration:underline; }
.cart-item-remove:hover { color:var(--accent-orange); }
.cart-total { padding:20px; border-top:1px solid var(--border); }
.cart-total-row { display:flex; justify-content:space-between; margin-bottom:10px; font-weight:600; }
.cart-checkout { width:100%; background:var(--accent-orange); color:#fff; border:none; padding:16px; border-radius:30px; font-weight:700; cursor:pointer; transition:background var(--transition); }
.cart-checkout:hover { background:#d65f20; }

/* ===== Modal (Quiz Result & General) ===== */
.modal-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:3000; display:none; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.show { display:flex; }
.modal-content { background:#fff; border-radius:var(--radius); max-width:600px; width:100%; max-height:90vh; overflow-y:auto; padding:40px; position:relative; }
.modal-close { position:absolute; top:15px; right:20px; background:none; border:none; font-size:1.8rem; cursor:pointer; color:var(--text-dark); line-height:1; }

/* ===== Product Detail Page ===== */
.breadcrumb { padding:120px 0 20px; font-size:0.9rem; color:var(--text-muted); }
.breadcrumb a { color:var(--text-muted); }
.breadcrumb a:hover { color:var(--accent-orange); }
.product-detail-layout { display:grid; grid-template-columns:1fr 1fr; gap:50px; padding:40px 0; }
.product-gallery { position:sticky; top:100px; }
.gallery-main { width:100%; height:450px; background:#e0e0e0; border-radius:var(--radius); overflow:hidden; margin-bottom:15px; display:flex; align-items:center; justify-content:center; color:#999; font-size:1.5rem; }
.gallery-thumbs { display:grid; grid-template-columns:repeat(7,1fr); gap:10px; }
.gallery-thumbs .thumb { height:60px; background:#e0e0e0; border-radius:8px; cursor:pointer; border:2px solid transparent; transition:border-color var(--transition); display:flex; align-items:center; justify-content:center; color:#999; font-size:0.8rem; }
.gallery-thumbs .thumb.active { border-color:var(--accent-orange); }
.product-detail-info h1 { font-size:2.2rem; margin-bottom:10px; }
.product-detail-rating { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.product-detail-price { display:flex; align-items:center; gap:15px; margin-bottom:20px; flex-wrap:wrap; }
.product-detail-price .current { font-size:2.5rem; font-weight:800; color:var(--deep-forest); }
.product-detail-price .original { font-size:1.3rem; text-decoration:line-through; color:var(--text-muted); }
.product-detail-availability { display:flex; gap:20px; margin-bottom:25px; flex-wrap:wrap; }
.availability-item { display:flex; align-items:center; gap:8px; font-weight:600; font-size:0.9rem; }
.availability-item::before { content:'✓'; color:var(--natural-green); font-weight:700; }
.quantity-selector { display:flex; align-items:center; gap:15px; margin-bottom:25px; }
.quantity-selector button { width:40px; height:40px; border-radius:50%; border:1px solid var(--border); background:none; font-size:1.2rem; cursor:pointer; }
.quantity-selector input { width:50px; text-align:center; border:1px solid var(--border); border-radius:8px; padding:8px; font-size:1rem; }
.product-actions { display:flex; gap:15px; margin-bottom:25px; flex-wrap:wrap; }
.btn-buy-now { background:var(--deep-forest); color:#fff; padding:16px 40px; }
.btn-buy-now:hover { background:var(--natural-green); }
.trust-badges { display:flex; gap:20px; flex-wrap:wrap; border-top:1px solid var(--border); padding-top:25px; }
.trust-badges span { display:flex; align-items:center; gap:6px; font-size:0.85rem; color:var(--text-muted); }
.detail-section { padding:60px 0; border-top:1px solid var(--border); }
.detail-section h2 { font-size:2rem; margin-bottom:30px; }
.detail-benefits { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:25px; margin-bottom:40px; }
.benefit-card { background:var(--warm-white); border-radius:var(--radius); padding:25px; text-align:center; }
.benefit-icon { width:50px; height:50px; margin:0 auto 15px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:var(--natural-green); }
.benefit-card h4 { font-size:1.05rem; margin-bottom:6px; }
.benefit-card p { font-size:0.9rem; color:var(--text-muted); }
.specs-table { width:100%; border-collapse:collapse; }
.specs-table th, .specs-table td { padding:14px 20px; text-align:left; border-bottom:1px solid var(--border); }
.specs-table th { background:var(--warm-white); font-weight:700; width:200px; }

/* ===== Responsive ===== */
@media (max-width:1024px) {
  .hero .container { grid-template-columns:1fr; text-align:center; }
  .hero-content h1 { font-size:2.8rem; }
  .hero-image { order:-1; }
  .hero-image .placeholder { height:350px; }
  .categories-grid, .why-grid, .guide-grid { grid-template-columns:repeat(2,1fr); }
  .featured-product { grid-template-columns:1fr; }
  .product-detail-layout { grid-template-columns:1fr; }
  .product-gallery { position:static; }
}
@media (max-width:768px) {
  .nav-links { display:none; position:absolute; top:70px; left:0; right:0; background:#fff; flex-direction:column; padding:20px; box-shadow:var(--shadow-sm); gap:20px; }
  .nav-links.open { display:flex; }
  .hamburger { display:block; }
  .header-actions .icon-btn:nth-child(1), .header-actions .icon-btn:nth-child(2) { display:none; }
  .trust-grid, .categories-grid, .why-grid, .guide-grid, .footer-grid { grid-template-columns:1fr; }
  .hero-content h1 { font-size:2.2rem; }
  .section-header h2 { font-size:2rem; }
  .lifestyle-banner h2, .final-cta h2 { font-size:2rem; }
  .quiz-section { padding:30px; }
  .featured-product-img .placeholder { height:300px; }
  .cart-drawer { width:100%; right:-100%; }
  .cart-drawer.open { right:0; }
  .gallery-main { height:300px; }
  .gallery-thumbs { grid-template-columns:repeat(4,1fr); }
}
.announcement-bar {
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
}

header {
  top: 36px;
}

header.scrolled {
  top: 0;
}