/* ============================================
   91mobile — Main Stylesheet
   Mobile-first | White premium | Inter font
   ============================================ */

:root {
    --white: #FFFFFF;
    --bg: #F8F9FA;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --accent: #0066FF;
    --accent-hover: #0052CC;
    --accent-light: #E8F0FE;
    --green: #22c55e;
    --red: #ef4444;
    --orange: #f59e0b;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --header-height: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-num {
    color: var(--accent);
    font-weight: 800;
}

.logo-text {
    color: var(--text-primary);
    font-weight: 700;
}

.menu-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.search-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

/* Search Bar */
.search-bar {
    display: none;
    padding: 8px 16px 12px;
    background: var(--white);
}

.search-bar.active { display: block; }

.search-bar form {
    display: flex;
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.search-bar input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    background: none;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.search-bar button {
    padding: 10px 14px;
    color: var(--text-secondary);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active { left: 0; }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.nav-close {
    font-size: 28px;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    list-style: none;
    padding: 8px 0;
}

.nav-links li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: background 0.2s;
}

.nav-links li a:hover { background: var(--bg); }
.nav-divider { border-bottom: 1px solid var(--border); margin: 8px 0; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
}

.nav-overlay.active { display: block; }

/* ============ MAIN CONTENT ============ */
.main-content {
    min-height: 60vh;
    padding-bottom: 60px; /* Space for sticky ad */
}

/* ============ TRENDING STRIP ============ */
.trending-strip {
    background: var(--text-primary);
    overflow: hidden;
    padding: 10px 0;
}

.trending-inner {
    overflow: hidden;
    position: relative;
}

.trending-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.trending-item {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ CATEGORY NAV ============ */
.category-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px 16px;
    background: var(--white);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-chip {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--bg);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.2s;
    white-space: nowrap;
}

.category-chip:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ============ QUIZ CTA ============ */
.quiz-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 16px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius);
    color: var(--white);
}

.quiz-icon { font-size: 28px; }

.quiz-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.quiz-text strong { font-size: 14px; }

.quiz-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    transition: background 0.2s;
}

.quiz-btn:hover { background: rgba(255,255,255,0.3); color: var(--white); }

/* ============ PRODUCT SECTIONS ============ */
.product-section {
    padding: 20px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 12px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

/* Product Scroll Row */
.product-scroll-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.product-scroll-row::-webkit-scrollbar { display: none; }

/* Product Card */
.product-card {
    flex-shrink: 0;
    width: 160px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--white);
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-info {
    padding: 10px 12px 14px;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.product-brand {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.product-mrp {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.rating-stars {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    background: #FFF7E6;
    padding: 1px 6px;
    border-radius: 4px;
}

.rating-count {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============ TABS ============ */
.tabs {
    display: flex;
    gap: 0;
    padding: 0 16px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.view-all-link {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

/* ============ AD CONTAINER (Lazy Load) ============ */
.ad-container {
    margin: 12px 16px;
    min-height: 100px;
}

.ad-container.ad-between-sections {
    margin: 16px 16px;
}

.ad-wrapper {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-height: 90px;
    border: 1px solid var(--border-light);
}

.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    background: var(--bg);
}

.ad-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ COMPARISON LINKS ============ */
.comparison-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
}

.compare-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.compare-link-card:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.vs-badge {
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============ RECENT PURCHASE POPUP (FOMO) ============ */
.recent-purchase-popup {
    position: fixed;
    bottom: 70px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 16px;
    z-index: 900;
    animation: slideUp 0.4s ease;
    border-left: 4px solid var(--green);
}

.purchase-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.purchase-icon { font-size: 20px; }
.purchase-content small { color: var(--text-muted); }

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============ FOMO BADGES ============ */
.fomo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.fomo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.fomo-viewers { background: #FFF3E0; color: #E65100; }
.fomo-stock { background: #FFF8E1; color: #F57F17; }
.fomo-timer { background: #E3F2FD; color: #1565C0; }

.fomo-icon { font-size: 16px; }

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    padding: 12px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 12px;
}

.breadcrumb-item { color: var(--text-muted); }
.breadcrumb-item a { color: var(--text-secondary); }
.breadcrumb-item:not(:last-child)::after { content: ' ›'; margin-left: 4px; color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text-primary); font-weight: 500; }

/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail {
    background: var(--white);
}

.product-gallery {
    position: relative;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-image {
    flex-shrink: 0;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    scroll-snap-align: start;
    background: var(--white);
}

.gallery-image img {
    max-height: 100%;
    object-fit: contain;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s;
}

.gallery-dot.active { background: var(--accent); }

.product-detail-info {
    padding: 16px;
}

.product-detail-brand {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.product-detail-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-detail-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.detail-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.detail-mrp {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.detail-discount {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
}

.detail-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #F0FFF0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--green);
    margin-bottom: 16px;
}

/* Key Features */
.key-features {
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius);
    margin: 16px;
}

.key-features h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-icon {
    color: var(--accent);
    font-size: 14px;
    margin-top: 3px;
}

/* Buy Now CTA */
.buy-cta-section {
    padding: 16px;
    position: sticky;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 100;
}

.buy-now-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    animation: pulse 2s ease infinite;
}

.buy-now-btn:hover {
    background: var(--accent-hover);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,102,255,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0,102,255,0); }
}

/* Specs Table */
.specs-section {
    padding: 16px;
}

.specs-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr { border-bottom: 1px solid var(--border-light); }
.specs-table td {
    padding: 10px 0;
    font-size: 13px;
    vertical-align: top;
}

.specs-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    width: 40%;
    padding-right: 12px;
}

.specs-table td:last-child {
    font-weight: 500;
    color: var(--text-primary);
}

/* Description Section */
.description-section {
    padding: 16px;
    border-top: 8px solid var(--bg);
}

.description-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.description-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.description-content p { margin-bottom: 12px; }

/* FAQ Section */
.faq-section {
    padding: 16px;
    border-top: 8px solid var(--bg);
}

.faq-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.faq-question {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    font-size: 13px;
    color: var(--text-secondary);
    padding-top: 8px;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer { display: block; }

/* YouTube Embed */
.video-section {
    padding: 16px;
    border-top: 8px solid var(--bg);
}

.video-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.youtube-lite {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--text-primary);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.youtube-lite::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 42px;
    background: #FF0000;
    border-radius: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-play::after {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
}

.youtube-lite iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Silo Links */
.silo-links {
    padding: 16px;
    border-top: 8px solid var(--bg);
}

.silo-section { margin-bottom: 16px; }

.silo-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.silo-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.silo-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background 0.2s;
}

.silo-link:hover { background: var(--accent-light); color: var(--accent); }

.silo-cat {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Related Products */
.related-section {
    padding: 20px 0;
    border-top: 8px solid var(--bg);
}

/* ============ CHECKOUT PAGES ============ */
.checkout-page {
    padding: 0 16px;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 0;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: var(--bg);
    color: var(--text-muted);
    border: 2px solid var(--border);
}

.progress-step.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.progress-step.completed {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.progress-line {
    width: 24px;
    height: 2px;
    background: var(--border);
}

.progress-line.completed { background: var(--green); }

.checkout-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.checkout-card h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.checkout-product-summary {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.checkout-product-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.checkout-product-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.checkout-product-info .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

/* CPC Content Block */
.cpc-content-block {
    background: var(--accent-light);
    border: 1px solid #b3d4ff;
    border-radius: var(--radius);
    padding: 16px;
    margin: 16px 0;
}

.cpc-content-block h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent);
}

.cpc-content-block p,
.cpc-content-block div {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Form Styles */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: #FFFDE7;
    border-radius: var(--radius-sm);
    font-size: 12px;
    line-height: 1.5;
    border: 1px solid #FFF9C4;
}

.consent-group input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.checkout-next-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    transition: background 0.2s;
    margin-top: 8px;
}

.checkout-next-btn:hover { background: var(--accent-hover); }

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s;
}

.payment-option:hover { border-color: var(--accent); }
.payment-option input[type="radio"] { accent-color: var(--accent); }
.payment-option .payment-label { font-size: 14px; font-weight: 600; }

/* Order Confirmation */
.order-confirmed-card {
    text-align: center;
    padding: 24px;
}

.confirmed-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.order-number {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.order-number strong {
    color: var(--accent);
}

/* ============ STATIC PAGES ============ */
.static-page {
    padding: 16px;
}

.static-page-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 16px;
}

.static-page h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.static-page-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.static-page-content p { margin-bottom: 14px; }
.static-page-content h2 { font-size: 18px; margin: 20px 0 10px; color: var(--text-primary); }
.static-page-content h3 { font-size: 16px; margin: 16px 0 8px; color: var(--text-primary); }
.static-page-content ul { padding-left: 20px; margin-bottom: 14px; }
.static-page-content li { margin-bottom: 6px; }

/* ============ COMPARE PAGE ============ */
.compare-page {
    padding: 16px;
}

.compare-header {
    text-align: center;
    margin-bottom: 16px;
}

.compare-header h1 {
    font-size: 18px;
    font-weight: 700;
}

.compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid var(--border-light);
}

.compare-table th {
    background: var(--bg);
    font-weight: 600;
    color: var(--text-secondary);
}

.compare-table td:first-child {
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg);
    width: 30%;
}

.compare-table .winner { color: var(--green); font-weight: 700; }

/* ============ QUIZ PAGES ============ */
.quiz-page {
    padding: 16px;
}

.quiz-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.quiz-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-option {
    display: block;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.2s;
}

.quiz-option:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}

/* ============ EXIT INTENT ============ */
.exit-intent-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    align-items: flex-end;
    justify-content: center;
}

.exit-intent-overlay.active { display: flex; }

.exit-intent-sheet {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 24px 20px 32px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: sheetSlideUp 0.3s ease;
    position: relative;
}

@keyframes sheetSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.exit-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: var(--text-muted);
}

.exit-icon { font-size: 40px; margin-bottom: 12px; }

.exit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.exit-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.exit-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}

.exit-cta:hover { background: var(--accent-hover); color: var(--white); }

.exit-dismiss {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
}

/* ============ STICKY BOTTOM AD ============ */
.sticky-bottom-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 4px;
    z-index: 800;
}

.sticky-ad-close {
    position: absolute;
    top: -24px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

/* ============ PRODUCT LISTING PAGE ============ */
.listing-page {
    padding: 0;
}

.listing-header {
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.listing-header h1 {
    font-size: 20px;
    font-weight: 700;
}

.listing-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px;
}

.listing-grid .product-card {
    width: 100%;
    flex-shrink: unset;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 32px 16px 24px;
    margin-bottom: 50px; /* Space for sticky ad */
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .logo { margin-bottom: 8px; }
.footer-brand .logo .logo-num { color: #6ea8fe; }
.footer-brand .logo .logo-text { color: var(--white); }

.footer-brand p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #9ca3af;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

/* ============ CONTACT FORM ============ */
.contact-form {
    margin-top: 20px;
}

.contact-form .form-group { margin-bottom: 14px; }
.contact-form textarea.form-control { min-height: 120px; resize: vertical; }
.contact-submit {
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
}
