* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --red: #e50000;
    --dark-red: #b30000;
    --red-glow: rgba(229,0,0,0.15);
    --black: #060606;
    --dark: #0c0c0c;
    --card: #141414;
    --card-hover: #1c1c1c;
    --border: #222;
    --border-light: #333;
    --text: #f5f5f5;
    --muted: #999;
    --white: #ffffff;
    --gold: #ffb800;
    --green: #00e676;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(0,0,0,0.6);
    --shadow-red: 0 8px 32px rgba(229,0,0,0.2);
}

body { background: var(--black); color: var(--text); font-family: 'Inter', -apple-system, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === TOP BAR === */
.top-bar { background: linear-gradient(90deg, var(--red), #c40000); color: #fff; padding: 10px 24px; font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 5px; letter-spacing: 0.5px; font-weight: 500; }
.top-bar i { margin-right: 5px; }

/* === HEADER === */
.header { background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.logo { text-decoration: none; font-size: 24px; font-weight: 900; letter-spacing: 3px; display: flex; align-items: center; gap: 10px; }
.logo-img { height: 38px; width: 38px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(229,0,0,0.5)); }
.logo-bull { color: var(--red); text-shadow: 0 0 20px rgba(229,0,0,0.3); }
.logo-energy { color: var(--white); font-weight: 400; font-size: 20px; letter-spacing: 4px; }

.nav { display: flex; gap: 32px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 13px; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1.5px; position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.3s; border-radius: 2px; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions a { color: var(--muted); font-size: 18px; text-decoration: none; transition: all 0.3s; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid transparent; }
.header-actions a:hover { color: var(--red); border-color: var(--border); background: var(--card); }
.cart-icon { position: relative; }
.cart-badge { position: absolute; top: -4px; right: -4px; background: var(--red); color: #fff; border-radius: 50%; width: 18px; height: 18px; font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; border: 2px solid var(--black); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 999; backdrop-filter: blur(4px); }

/* === HERO SLIDER === */
.slider { position: relative; width: 100%; min-height: 92vh; overflow: hidden; background: var(--black); }
.slide { display: none; position: absolute; inset: 0; width: 100%; height: 100%; }
.slide.active { display: flex; align-items: center; }

.slide-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 50px; gap: 50px; }
.slide-text { flex: 1; min-width: 300px; max-width: 580px; }
.slide-img { flex: 1; display: flex; justify-content: center; align-items: center; }
.slide-img img { max-height: 420px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 0 60px rgba(229,0,0,0.4)); animation: float 3.5s ease-in-out infinite; }

@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(1deg)} }
.slide.active .slide-text { animation: fadeSlideIn 0.8s ease forwards; }
@keyframes fadeSlideIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.hero-badge { background: linear-gradient(135deg, var(--red), #ff2020); color: #fff; padding: 8px 18px; border-radius: 30px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 22px; box-shadow: 0 4px 15px rgba(229,0,0,0.3); }
.slide-text h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 900; line-height: 1.05; text-transform: uppercase; margin-bottom: 20px; letter-spacing: -1px; }
.slide-text h1 span { color: var(--red); text-shadow: 0 0 40px rgba(229,0,0,0.3); }
.slide-text p { font-size: 16px; color: var(--muted); margin-bottom: 30px; line-height: 1.7; max-width: 480px; }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.hero-trust span { color: var(--muted); font-size: 12px; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.hero-trust span i { color: var(--green); font-size: 11px; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 10; transition: 0.3s; backdrop-filter: blur(8px); }
.slider-arrow:hover { background: var(--red); border-color: var(--red); box-shadow: var(--shadow-red); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s; border: none; }
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }

.scroll-indicator { position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%); z-index: 10; opacity: 0.5; }
.scroll-indicator .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative; }
.scroll-indicator .mouse::before { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--red); border-radius: 3px; animation: scrollDown 1.5s infinite; }
@keyframes scrollDown { 0% { opacity: 1; top: 7px; } 100% { opacity: 0; top: 20px; } }

/* === BUTTONS === */
.btn { padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 700; font-size: 13px; cursor: pointer; border: none; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1.2px; position: relative; overflow: hidden; }
.btn-red { background: linear-gradient(135deg, var(--red), #ff1a1a); color: #fff; box-shadow: 0 4px 15px rgba(229,0,0,0.25); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229,0,0,0.4); background: linear-gradient(135deg, #ff1a1a, var(--red)); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 12px; border-radius: 6px; }
.btn-full { width: 100%; text-align: center; display: flex; }
.btn-dark { background: var(--card); color: var(--muted); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--red); color: var(--white); background: var(--card-hover); }

/* === SECTIONS === */
.section { padding: 90px 0; }
.section-title { text-align: center; margin-bottom: 55px; }
.section-title h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; }
.section-title h2 span { color: var(--red); }
.section-title p { color: var(--muted); margin-top: 12px; font-size: 15px; }
.section-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--red), transparent); margin: 16px auto 0; border-radius: 3px; }

/* === BRAND BAR === */
.brand-bar { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.brand-bar-inner { display: inline-block; animation: marquee 25s linear infinite; }
.brand-bar-inner span { display: inline-block; padding: 0 35px; color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.brand-bar-inner span i { color: var(--red); margin-right: 8px; opacity: 0.7; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === FEATURES === */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { text-align: center; padding: 40px 20px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.4s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, var(--red-glow) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; }
.feature-card:hover { border-color: rgba(229,0,0,0.4); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 32px; color: var(--red); margin-bottom: 16px; position: relative; z-index: 1; }
.feature-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; position: relative; z-index: 1; }
.feature-card p { color: var(--muted); font-size: 12px; position: relative; z-index: 1; }

/* === PRODUCT CARDS === */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1); position: relative; }
.product-card:hover { border-color: rgba(229,0,0,0.4); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(229,0,0,0.1); }
.product-card a { display: block; text-decoration: none; color: inherit; }
.product-card a:hover .product-info h3 { color: var(--red); }

.product-img { height: 240px; background: linear-gradient(180deg, #0f0f0f, #1a0505); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1); }
.product-card:hover .product-img img { transform: scale(1.08) rotate(1deg); }
.product-badge { position: absolute; top: 12px; left: 12px; background: rgba(229,0,0,0.9); color: #fff; padding: 5px 12px; border-radius: 6px; font-size: 10px; font-weight: 700; z-index: 1; text-transform: uppercase; letter-spacing: 0.5px; backdrop-filter: blur(4px); }
.bestseller-badge { background: linear-gradient(135deg, #ff6600, #ff8800) !important; }
.product-new-badge { position: absolute; top: 12px; right: 12px; background: var(--green); color: #000; padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; z-index: 1; }
.product-discount-badge { position: absolute; top: 12px; right: 12px; background: var(--green); color: #000; padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: 800; z-index: 1; }
.quick-view { position: absolute; bottom: -44px; left: 0; right: 0; background: linear-gradient(180deg, transparent, rgba(229,0,0,0.95)); color: #fff; text-align: center; padding: 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: bottom 0.4s cubic-bezier(0.25,0.8,0.25,1); text-decoration: none; }
.product-card:hover .quick-view { bottom: 0; }

.product-info { padding: 20px; }
.product-info h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; transition: color 0.3s; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-info p { color: var(--muted); font-size: 12px; margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars-small { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.rating-count { color: var(--muted); font-size: 11px; }
.product-price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.product-price-row .product-price { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 0; }
.product-price { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.product-mrp { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-save { background: rgba(0,230,118,0.1); color: var(--green); padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; }

/* === WHY CHOOSE US === */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; position: relative; overflow: hidden; transition: all 0.4s; }
.why-card:hover { border-color: rgba(229,0,0,0.4); transform: translateY(-4px); box-shadow: var(--shadow-red); }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--red); transition: height 0.4s; }
.why-card:hover::before { height: 100%; }
.why-number { font-size: 48px; font-weight: 900; background: linear-gradient(180deg, rgba(229,0,0,0.2), transparent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; line-height: 1; }
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.why-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials { background: linear-gradient(180deg, var(--dark), var(--black)); padding: 90px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: 0.4s; position: relative; }
.testi-card:hover { border-color: rgba(229,0,0,0.3); transform: translateY(-4px); }
.testi-card::before { content: '"'; position: absolute; top: 20px; right: 24px; font-size: 60px; color: rgba(229,0,0,0.08); font-family: Georgia, serif; line-height: 1; }
.testi-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testi-verified { color: var(--green); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.testi-verified i { margin-right: 3px; }
.testi-product { color: var(--red); font-size: 11px; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.testi-text { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #ff4444); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.testi-author h4 { font-size: 13px; font-weight: 700; }
.testi-author p { font-size: 11px; color: var(--muted); }
.testi-date { display: block; margin-top: 14px; color: var(--muted); font-size: 11px; opacity: 0.7; }

/* === OFFER BANNER === */
.offer-banner { background: linear-gradient(135deg, #0a0000, #1a0505, #0a0a0a); padding: 80px 0; border-top: 1px solid rgba(229,0,0,0.3); border-bottom: 1px solid rgba(229,0,0,0.3); position: relative; overflow: hidden; }
.offer-banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(229,0,0,0.05), transparent 60%); }
.offer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; }
.offer-tag { background: linear-gradient(135deg, var(--red), #ff2020); color: #fff; padding: 6px 16px; border-radius: 30px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.offer-text h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; text-transform: uppercase; margin-bottom: 14px; letter-spacing: -0.5px; }
.offer-text p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.offer-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.offer-hl { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px 16px; text-align: center; transition: 0.3s; }
.offer-hl:hover { border-color: rgba(229,0,0,0.5); background: rgba(229,0,0,0.03); transform: translateY(-2px); }
.offer-hl i { display: block; color: var(--red); font-size: 22px; margin-bottom: 10px; }
.offer-hl span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }

/* === CERTIFICATIONS === */
.cert-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.cert-item { text-align: center; min-width: 90px; }
.cert-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(229,0,0,0.06); border: 1px solid rgba(229,0,0,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; transition: 0.3s; }
.cert-icon:hover { background: rgba(229,0,0,0.1); border-color: rgba(229,0,0,0.4); transform: scale(1.1); }
.cert-icon i { color: var(--red); font-size: 18px; }
.cert-item span { display: block; font-size: 12px; font-weight: 700; margin-bottom: 2px; }
.cert-item small { display: block; font-size: 9px; color: var(--muted); letter-spacing: 0.5px; }

/* === STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); transition: 0.3s; }
.stat-item:hover { border-color: rgba(229,0,0,0.3); }
.stat-number { display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--red); margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* === CART === */
.cart-section { padding: 60px 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.cart-table { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--dark); padding: 16px 20px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); border-bottom: 1px solid var(--border); }
.cart-table td { padding: 18px 20px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 56px; height: 56px; background: linear-gradient(135deg, #1a0505, #0f0f0f); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; border: 1px solid var(--border); }
.cart-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-product h4 { font-size: 13px; font-weight: 600; }
.qty-control { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 32px; height: 32px; background: var(--dark); border: 1px solid var(--border); color: var(--text); cursor: pointer; border-radius: 6px; font-size: 14px; transition: 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--red); border-color: var(--red); }
.qty-input { width: 44px; text-align: center; background: var(--card); border: 1px solid var(--border); color: var(--text); padding: 6px; border-radius: 6px; font-size: 13px; font-weight: 700; }
.delete-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 15px; transition: 0.2s; padding: 6px; border-radius: 6px; }
.delete-btn:hover { color: var(--red); background: rgba(229,0,0,0.08); }

.cart-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 80px; }
.cart-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; color: var(--muted); }
.summary-row.total { font-size: 18px; font-weight: 900; color: var(--white); border-top: 1px solid var(--border); padding-top: 16px; margin-top: 8px; }

/* === CHECKOUT === */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; margin-bottom: 22px; }
.form-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; color: var(--red); letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { background: var(--dark); border: 1px solid var(--border); color: var(--text); padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14px; transition: all 0.3s; width: 100%; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,0,0,0.08); }
.form-group select option { background: var(--dark); }

.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.payment-option { border: 2px solid var(--border); border-radius: var(--radius); padding: 20px; cursor: pointer; transition: 0.3s; text-align: center; }
.payment-option:hover, .payment-option.selected { border-color: var(--red); background: rgba(229,0,0,0.04); }
.payment-option input[type="radio"] { display: none; }
.payment-option i { font-size: 24px; color: var(--red); margin-bottom: 8px; display: block; }
.payment-option span { font-weight: 700; font-size: 12px; text-transform: uppercase; }
.upi-field { display: none; margin-top: 14px; }
.upi-field.show { display: block; }

/* === AUTH PAGES === */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow); }
.auth-card h2 { font-size: 28px; font-weight: 900; text-align: center; margin-bottom: 32px; letter-spacing: -0.5px; }
.auth-card h2 span { color: var(--red); }
.auth-link { text-align: center; margin-top: 20px; color: var(--muted); font-size: 13px; }
.auth-link a { color: var(--red); text-decoration: none; font-weight: 700; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 13px; font-weight: 500; }
.alert-error { background: rgba(229,0,0,0.08); border: 1px solid rgba(229,0,0,0.3); color: #ff6b6b; }
.alert-success { background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.3); color: var(--green); }

/* === STATIC PAGES === */
.page-hero { background: linear-gradient(135deg, var(--dark), #120505); padding: 80px 20px; text-align: center; border-bottom: 1px solid rgba(229,0,0,0.3); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(229,0,0,0.06), transparent 60%); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; text-transform: uppercase; position: relative; }
.page-hero h1 span { color: var(--red); }
.page-content { padding: 60px 20px; max-width: 850px; margin: 0 auto; }
.page-content h2 { font-size: 20px; font-weight: 800; color: var(--red); margin: 32px 0 12px; }
.page-content p { color: var(--muted); line-height: 1.9; margin-bottom: 16px; font-size: 14px; }
.page-content ul { color: var(--muted); line-height: 2.2; padding-left: 20px; margin-bottom: 16px; font-size: 14px; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; color: var(--red); }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item i { color: var(--red); font-size: 16px; margin-top: 4px; flex-shrink: 0; width: 20px; }
.contact-item p { color: var(--muted); line-height: 1.6; font-size: 14px; }

/* === ORDER SUCCESS === */
.success-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.success-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 60px 40px; max-width: 560px; width: 100%; box-shadow: var(--shadow); }
.success-icon { font-size: 70px; color: var(--green); margin-bottom: 18px; }
.success-card h1 { font-size: 32px; font-weight: 900; color: var(--red); margin-bottom: 10px; }
.success-card p { color: var(--muted); font-size: 14px; margin-bottom: 5px; }
.order-number-box { background: var(--dark); border: 1px solid rgba(229,0,0,0.3); border-radius: var(--radius-sm); padding: 16px; margin: 24px 0; font-size: 16px; font-weight: 800; color: var(--red); letter-spacing: 1px; }
.confetti { font-size: 36px; margin-bottom: 14px; }

/* === TRACKING === */
.track-steps { display: flex; justify-content: space-between; margin: 28px 0; position: relative; }
.track-steps::before { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: var(--border); z-index: 0; }
.track-step { text-align: center; flex: 1; position: relative; z-index: 1; }
.track-step-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--card); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-size: 14px; transition: 0.3s; }
.track-step.done .track-step-icon { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 12px rgba(229,0,0,0.3); }
.track-step p { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.track-step.done p { color: var(--text); }

/* === STATUS BADGES === */
.status-badge { padding: 5px 12px; border-radius: 20px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-pending { background: rgba(255,165,0,0.1); color: orange; border: 1px solid rgba(255,165,0,0.2); }
.status-confirmed { background: rgba(0,230,118,0.08); color: var(--green); border: 1px solid rgba(0,230,118,0.2); }
.status-shipped { background: rgba(0,150,255,0.08); color: #4dabf7; border: 1px solid rgba(0,150,255,0.2); }
.status-delivered { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.3); }
.status-cancelled { background: rgba(229,0,0,0.08); color: var(--red); border: 1px solid rgba(229,0,0,0.2); }

/* === FOOTER === */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 20px; font-weight: 900; }
.logo-img-footer { height: 28px; width: 28px; object-fit: contain; }
.footer-col p { color: var(--muted); font-size: 13px; line-height: 1.8; margin-bottom: 8px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 13px; transition: all 0.3s; display: inline-block; }
.footer-col ul li a:hover { color: var(--red); transform: translateX(4px); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; transition: all 0.3s; font-size: 14px; }
.social-links a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.payment-icons { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.payment-icons span { background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; color: var(--muted); font-size: 12px; }

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 54px; color: var(--border-light); margin-bottom: 18px; display: block; }
.empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; font-size: 14px; }

/* === BREADCRUMB === */
.breadcrumb { padding: 16px 0; color: var(--muted); font-size: 12px; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--white); font-weight: 600; }

/* === PRODUCTS COUNT === */
.products-count { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.products-count span { color: var(--white); font-weight: 700; }

/* === PRODUCT DETAIL === */
.product-detail-section { padding: 40px 0 80px; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-main-image { background: linear-gradient(135deg, #0f0505, #1a0808); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 440px; position: relative; overflow: hidden; }
.product-main-image::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(229,0,0,0.04), transparent 60%); }
.product-main-image img { max-width: 100%; max-height: 380px; object-fit: contain; filter: drop-shadow(0 10px 40px rgba(229,0,0,0.2)); transition: transform 0.4s; position: relative; z-index: 1; }
.product-main-image:hover img { transform: scale(1.06); }
.product-trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.trust-badge { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 8px; text-align: center; font-size: 10px; color: var(--muted); transition: 0.3s; }
.trust-badge:hover { border-color: rgba(229,0,0,0.3); }
.trust-badge i { display: block; color: var(--red); font-size: 16px; margin-bottom: 6px; }
.trust-badge span { font-weight: 600; }

.product-detail-category { background: linear-gradient(135deg, var(--red), #ff2020); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: inline-block; margin-bottom: 14px; }
.product-detail-title { font-size: clamp(22px, 3vw, 32px); font-weight: 900; text-transform: uppercase; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.product-detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.product-detail-rating .stars { color: var(--gold); font-size: 15px; }
.product-detail-rating .rating-text { color: var(--muted); font-size: 13px; }

.product-detail-price { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.product-detail-price .price-current { font-size: 30px; font-weight: 900; color: var(--white); }
.product-detail-price .price-gst { font-size: 12px; color: var(--muted); }

.stock-warning { background: rgba(255,165,0,0.08); border: 1px solid rgba(255,165,0,0.2); color: #ff9800; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.stock-out { background: rgba(229,0,0,0.06); border: 1px solid rgba(229,0,0,0.2); color: var(--red); padding: 10px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; margin-bottom: 18px; }
.stock-available { color: var(--green); font-size: 13px; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 6px; }

.product-detail-desc { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.product-detail-desc p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }
.product-detail-desc .desc-list { list-style: none; padding: 0; margin: 12px 0; }
.product-detail-desc .desc-list li { color: var(--muted); font-size: 13px; line-height: 2; padding-left: 22px; position: relative; }
.product-detail-desc .desc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.product-detail-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-selector .qty-btn { width: 42px; height: 46px; background: var(--dark); border: none; color: var(--text); cursor: pointer; font-size: 16px; transition: 0.2s; }
.qty-selector .qty-btn:hover { background: var(--red); color: #fff; }
.qty-selector .qty-input { width: 52px; height: 46px; text-align: center; background: var(--card); border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); color: var(--text); font-size: 15px; font-weight: 700; }
.btn-add-detail { padding: 14px 36px; font-size: 14px; flex: 1; }

.product-highlights { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.product-highlights h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--white); }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlight-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.highlight-item i { color: var(--red); font-size: 13px; width: 18px; text-align: center; }

.product-delivery-info { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.delivery-row { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 12px; color: var(--muted); transition: 0.2s; }
.delivery-row:last-child { border-bottom: none; }
.delivery-row:hover { background: rgba(229,0,0,0.02); }
.delivery-row i { color: var(--red); width: 16px; text-align: center; font-size: 13px; }

/* === FLOATING ELEMENTS === */
.whatsapp-float { position: fixed; bottom: 28px; left: 28px; background: #25d366; color: #fff; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; z-index: 9998; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

.back-to-top { position: fixed; bottom: 28px; right: 28px; background: var(--card); color: var(--red); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); font-size: 14px; cursor: pointer; z-index: 9998; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-3px); }

/* === COOKIE BANNER === */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--card); border-top: 1px solid var(--border); padding: 18px 24px; z-index: 9997; box-shadow: 0 -8px 30px rgba(0,0,0,0.5); backdrop-filter: blur(12px); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-content p { color: var(--muted); font-size: 12px; flex: 1; min-width: 250px; }
.cookie-content p i { color: var(--gold); margin-right: 8px; }
.cookie-content p a { color: var(--red); text-decoration: none; font-weight: 600; }

/* === TOAST === */
.toast-notification { position: fixed; bottom: 90px; right: 28px; background: var(--card); color: var(--white); padding: 16px 24px; border-radius: var(--radius-sm); font-weight: 600; z-index: 9999; font-size: 13px; box-shadow: var(--shadow); border: 1px solid var(--border); animation: slideInToast 0.3s ease; transition: opacity 0.3s, transform 0.3s; display: flex; align-items: center; gap: 10px; border-left: 3px solid var(--green); }
.toast-notification i { font-size: 16px; color: var(--green); }
@keyframes slideInToast { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* === SCROLL ANIMATIONS === */
.product-card, .feature-card, .testi-card, .stat-item, .why-card { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.product-card.revealed, .feature-card.revealed, .testi-card.revealed, .stat-item.revealed, .why-card.revealed, .product-card.no-anim, .feature-card.no-anim, .testi-card.no-anim, .stat-item.no-anim, .why-card.no-anim { opacity: 1; transform: translateY(0); }
.product-card:nth-child(2), .feature-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3), .feature-card:nth-child(3) { transition-delay: 0.16s; }
.product-card:nth-child(4), .feature-card:nth-child(4) { transition-delay: 0.24s; }

/* === UTILITIES === */
.text-red { color: var(--red); }
.text-muted { color: var(--muted); }
.divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.nav-close { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* === PULSE === */
.cart-badge { animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.cart-badge.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.5); } }
@keyframes bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-inner { grid-template-columns: 1fr; }
    .product-detail-layout { grid-template-columns: 1fr; gap: 30px; }
    .product-main-image { min-height: 320px; }
}
@media (max-width: 992px) {
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-inner { flex-direction: column; justify-content: center; padding: 30px 20px; gap: 24px; }
    .slide-text { max-width: 100%; text-align: center; }
    .slide-text h1 { font-size: clamp(28px, 5vw, 42px); }
    .hero-trust { justify-content: center; }
    .slide-img { flex: none; width: 100%; max-height: 200px; }
    .slide-img img { max-height: 180px; }
    .slider { min-height: auto; }
    .slide { position: relative; min-height: 100vh; }
    .slide.active { display: flex; flex-direction: column; justify-content: center; }
}
@media (max-width: 768px) {
    .nav { display: none; position: fixed; top: 0; left: 0; width: 280px; height: 100vh; background: var(--dark); flex-direction: column; padding: 80px 28px 28px; gap: 20px; z-index: 1001; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); border-right: 1px solid var(--border); }
    .nav.open { display: flex; transform: translateX(0); }
    .nav-close { display: block; }
    .hamburger { display: flex; }
    .overlay.show { display: block; }
    .top-bar { font-size: 10px; justify-content: center; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feature-card { padding: 24px 14px; }
    .slide-img img { max-height: 150px; }
    .track-steps::before { display: none; }
    .cert-grid { gap: 24px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-img { height: 180px; }
    .product-info { padding: 14px; }
    .product-info h3 { font-size: 13px; }
    .product-price-row .product-price, .product-price { font-size: 16px; }
}
@media (max-width: 480px) {
    .auth-card { padding: 32px 20px; }
    .success-card { padding: 40px 20px; }
    .payment-options { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .slide-img img { max-height: 120px; }
    .hero-badge { font-size: 10px; padding: 6px 12px; }
    .hero-trust { flex-direction: column; gap: 8px; align-items: center; }
    .product-trust-badges { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .product-detail-actions { flex-direction: column; }
    .btn-add-detail { width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 16px 10px; }
    .products-grid { grid-template-columns: 1fr; }
}
