        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f5f5f7;
            color: #1d1d1f;
            line-height: 1.5;
        }
        
        /* Nav */
        nav {
            background: #fff;
            border-bottom: 1px solid #e5e5e5;
            padding: 16px 24px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            text-decoration: none;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1d1d1f;
            padding: 4px 8px;
        }
        nav .nav-links {
            display: flex;
            gap: 20px;
        }
        nav .nav-links a {
            color: #6e6e73;
            text-decoration: none;
            font-size: 0.85rem;
            white-space: nowrap;
        }
        nav .nav-links a:hover { color: #1d1d1f; }
        
        /* Hero */
        .hero {
            background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
            color: white;
            padding: 64px 24px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .hero p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Main */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        
        .section-header {
            text-align: center;
            margin: 48px 0 32px;
        }
        .section-header h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1d1d1f;
        }
        .section-header p {
            color: #6e6e73;
            margin-top: 4px;
        }
        
        /* Product Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin-bottom: 48px;
        }
        
        /* Product Card — the ENTIRE card is a link */
        .product-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }
        
        .card-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .card-image {
            background: #fafafa;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }
        .card-image img {
            max-width: 100%;
            max-height: 180px;
            object-fit: contain;
        }
        
        .card-body {
            padding: 16px 16px 8px;
            flex: 1;
        }
        .card-body h3 {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 8px;
            color: #1d1d1f;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        /* Weirdness dots */
        .weirdness-bar { display: flex; gap: 3px; }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e5e5e5;
        }
        .dot.filled { background: #a855f7; }
        
        /* Amazon rating */
        .amazon-rating {
            font-size: 0.8rem;
            color: #b45309;
        }
        .amazon-stars { letter-spacing: -1px; }
        .rating-num { font-weight: 600; }
        
        .description {
            font-size: 0.85rem;
            color: #6e6e73;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* Card Footer — price + CTA */
        .card-footer {
            padding: 12px 16px;
            border-top: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fafafa;
            flex-wrap: nowrap;
            gap: 8px;
        }
        .price {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1d1d1f;
            white-space: nowrap;
        }
        .cta {
            font-size: 0.82rem;
            font-weight: 600;
            color: #6366f1;
            transition: color 0.2s;
            white-space: nowrap;
            text-align: right;
        }
        .product-card:hover .cta { color: #4f46e5; }
        
        /* ======== PRODUCT PAGE STYLES ======== */
        
        /* Old product page structure (legacy) */
        .product-page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 24px;
        }
        
        .product-detail {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            display: flex;
            gap: 48px;
            align-items: flex-start;
        }
        
        .product-image {
            flex-shrink: 0;
        }
        
        .product-image img {
            max-width: 400px;
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            background: #fafafa;
            padding: 16px;
        }
        
        .product-info h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
            color: #1d1d1f;
        }
        
        .weirdness-rating {
            font-size: 0.95rem;
            color: #6e6e73;
            margin-bottom: 12px;
        }
        
        .amazon-rating {
            font-size: 0.9rem;
            color: #b45309;
            margin-bottom: 16px;
        }
        
        .product-info .price {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 16px;
        }
        
        .product-info .description {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a4a4f;
            margin-bottom: 24px;
        }
        
        .amazon-disclosure {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #e5e5e5;
            font-size: 0.85rem;
            color: #6e6e73;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background: #fff;
            padding: 12px 24px;
            font-size: 0.85rem;
            color: #6e6e73;
            border-bottom: 1px solid #e5e5e5;
        }
        .breadcrumb a {
            color: #6366f1;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        
        /* Product Hero Section */
        .product-hero {
            background: #fff;
            max-width: 1000px;
            margin: 32px auto;
            padding: 40px;
            border-radius: 16px;
            display: flex;
            gap: 48px;
            align-items: flex-start;
        }
        
        .product-hero-img {
            max-width: 400px;
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            background: #fafafa;
            padding: 16px;
        }
        
        .product-info {
            flex: 1;
            min-width: 0;
        }
        
        .product-info h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
            color: #1d1d1f;
        }
        
        .weirdness {
            font-size: 0.95rem;
            color: #6e6e73;
            margin-bottom: 8px;
        }
        
        .product-info .price {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 16px;
        }
        
        .desc {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a4a4f;
            margin-bottom: 16px;
        }
        
        .tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        
        .tag {
            background: #f0f0f0;
            color: #6e6e73;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #6366f1, #a855f7);
            color: white;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
        }
        
        /* Product Page Sections */
        .section {
            max-width: 1000px;
            margin: 0 auto 48px;
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            line-height: 1.7;
        }
        
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 16px;
        }
        
        .section p {
            margin-bottom: 16px;
            color: #4a4a4f;
            font-size: 1rem;
        }
        
        .why-picked {
            background: linear-gradient(135deg, #f0f9ff, #fef3ff);
            border-left: 4px solid #a855f7;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 8px;
        }
        
        .why-picked h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1d1d1f;
        }
        
        .why-picked p {
            margin-bottom: 0;
            color: #4a4a4f;
        }
        
        /* Disclosure */
        .disclosure {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            margin: 32px 0 48px;
            font-size: 0.8rem;
            color: #6e6e73;
            line-height: 1.5;
        }
        
        /* Footer */
        footer {
            background: #fff;
            border-top: 1px solid #e5e5e5;
            padding: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #6e6e73;
        }
        footer a { color: #6e6e73; text-decoration: none; }
        footer a:hover { color: #1d1d1f; }
        
        /* Mobile */
        @media (max-width: 640px) {
            .menu-toggle { display: block; }
            nav .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 12px 24px 16px;
                border-bottom: 1px solid #e5e5e5;
                box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            }
            nav .nav-links.open { display: flex; }
            nav .nav-links a { padding: 8px 0; font-size: 1rem; }
            nav .container { position: relative; }
            .card-footer { flex-direction: column; align-items: flex-start; gap: 4px; }
            .cta { font-size: 0.9rem; }
            .hero h1 { font-size: 1.6rem; }
            .hero { padding: 40px 16px; }
            .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
            .card-image { min-height: 140px; padding: 12px; }
            .card-image img { max-height: 120px; }
            .card-body { padding: 12px 12px 6px; }
            .card-body h3 { font-size: 0.9rem; }
            .card-footer { padding: 10px 12px; }
            .price { font-size: 1rem; }
            
            /* Product page mobile */
            .product-hero {
                flex-direction: column;
                padding: 24px 16px;
                margin: 16px;
                gap: 24px;
            }
            .product-hero-img {
                max-width: 100%;
                max-height: 280px;
            }
            .product-detail {
                flex-direction: column;
                padding: 24px 16px;
                gap: 24px;
            }
            .product-image img {
                max-width: 100%;
                max-height: 280px;
            }
            .product-page {
                padding: 16px;
            }
            .product-info h1 {
                font-size: 1.5rem;
            }
            .product-info .price {
                font-size: 1.4rem;
            }
            .section {
                margin: 0 16px 24px;
                padding: 24px 16px;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .btn {
                display: block;
                text-align: center;
                width: 100%;
            }
        }


/* ═══════════════════════════════════════════════════════════════════════════
   Daneel Chat Widget
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Bubble trigger ─────────────────────────────────────────────────────── */
#daneel-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#daneel-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1d1d1f;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    letter-spacing: 0.01em;
}

#daneel-bubble:hover {
    background: #2d2d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

#daneel-bubble:active {
    transform: translateY(0);
}

.daneel-bubble-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.daneel-bubble-label {
    white-space: nowrap;
}

/* ── Chat window ────────────────────────────────────────────────────────── */
#daneel-window {
    position: fixed;
    bottom: 84px;
    right: 24px;
    width: 340px;
    max-height: 520px;
    background: #111;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9001;
    border: 1px solid rgba(255,255,255,0.08);
}

#daneel-window[hidden] {
    display: none !important;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
#daneel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.daneel-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.daneel-avatar {
    font-size: 1.4rem;
    line-height: 1;
}

.daneel-header-info strong {
    display: block;
    color: #f5f5f7;
    font-size: 0.9rem;
    font-weight: 700;
}

.daneel-subtitle {
    color: #888;
    font-size: 0.72rem;
    display: block;
}

#daneel-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    line-height: 1;
    transition: color 0.1s, background 0.1s;
}

#daneel-close:hover {
    color: #ccc;
    background: rgba(255,255,255,0.08);
}

/* ── Messages ───────────────────────────────────────────────────────────── */
#daneel-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

#daneel-messages::-webkit-scrollbar {
    width: 4px;
}

#daneel-messages::-webkit-scrollbar-track {
    background: transparent;
}

#daneel-messages::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
}

.daneel-msg {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    max-width: 100%;
}

.daneel-msg-user {
    flex-direction: row-reverse;
}

.daneel-msg-avatar {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-bottom: 2px;
}

.daneel-msg-bubble {
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 82%;
    word-wrap: break-word;
}

/* Daneel (assistant) messages */
.daneel-msg-assistant .daneel-msg-bubble {
    background: #1e1e1e;
    color: #e8e8ed;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255,255,255,0.07);
}

/* Visitor (user) messages */
.daneel-msg-user .daneel-msg-bubble {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

/* ── Typing indicator ───────────────────────────────────────────────────── */
.daneel-dots {
    display: inline-flex;
    gap: 3px;
    align-items: center;
    padding: 2px 0;
}

.daneel-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #666;
    animation: daneel-bounce 1.2s infinite;
}

.daneel-dots span:nth-child(2) { animation-delay: 0.2s; }
.daneel-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes daneel-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-4px); opacity: 1; }
}

/* ── Exhausted / limit message ──────────────────────────────────────────── */
.daneel-exhausted {
    text-align: center;
    font-size: 0.78rem;
    color: #666;
    padding: 10px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-style: italic;
}

/* ── Privacy notice ─────────────────────────────────────────────────────── */
#daneel-notice {
    padding: 6px 14px;
    font-size: 0.68rem;
    color: #555;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: #0d0d0d;
}

/* ── Input area ─────────────────────────────────────────────────────────── */
#daneel-input-area {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 10px 12px;
    background: #161616;
    border-top: 1px solid rgba(255,255,255,0.07);
}

#daneel-input {
    flex: 1;
    background: #222;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px 11px;
    color: #e8e8ed;
    font-size: 0.85rem;
    font-family: inherit;
    resize: none;
    line-height: 1.4;
    transition: border-color 0.15s;
    min-height: 36px;
    max-height: 100px;
}

#daneel-input:focus {
    outline: none;
    border-color: rgba(99,102,241,0.6);
}

#daneel-input::placeholder {
    color: #555;
}

#daneel-input:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#daneel-send {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s, transform 0.1s;
    letter-spacing: 0.01em;
    min-height: 36px;
}

#daneel-send:hover:not(:disabled) {
    opacity: 0.88;
    transform: translateY(-1px);
}

#daneel-send:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* ── Exchange counter ───────────────────────────────────────────────────── */
#daneel-counter {
    font-size: 0.68rem;
    color: #555;
    text-align: right;
    padding: 0 14px 6px;
    background: #161616;
    min-height: 18px;
}

.daneel-counter-warn {
    color: #a0522d !important;
}

/* ── Mobile responsive ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
    #daneel-window {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 70vh;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
    }

    #daneel-bubble {
        bottom: 16px;
        right: 16px;
    }

    #daneel-widget {
        bottom: 16px;
        right: 16px;
    }
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #e94560;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}
.newsletter-signup h3 {
    color: #e94560;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}
.newsletter-signup p {
    color: #ccc;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
    padding: 0.6rem 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0f0f23;
    color: #fff;
    font-size: 1rem;
    min-width: 250px;
    flex: 1;
    max-width: 350px;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #e94560;
}
.newsletter-form input[type="email"]::placeholder {
    color: #666;
}
.newsletter-form button {
    padding: 0.6rem 1.5rem;
    background: #e94560;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: #d63851;
}
.newsletter-form button:disabled {
    background: #666;
    cursor: not-allowed;
}
.newsletter-msg {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    min-height: 1.2em;
}
.newsletter-msg.success { color: #4ecca3; }
.newsletter-msg.error { color: #e94560; }
/* Honeypot - visually hidden but accessible to bots */
.newsletter-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
