/* ============================================
   Block 1 — original <head> styles (lines 47-796)
   ============================================ */
        /* ============================================
           INDEX V2 / LANDING PAGE
           Red Beard Peptides - Redesign
           Same design system as demo-redesign.html
           ============================================ */

        /* ========== HERO SECTION ========== */
        .hero {
            position: relative;
            padding: 80px 24px 90px;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(192, 57, 43, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 760px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-label {
            display: inline-block;
            background: rgba(192, 57, 43, 0.12);
            border: 1px solid rgba(192, 57, 43, 0.25);
            color: var(--primary-light);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--primary-light);
        }

        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .hero-logo-container {
            display: flex;
            justify-content: center;
            margin-bottom: 28px;
        }

        .hero-logo {
            max-width: 200px;
            width: 100%;
            border-radius: 15px;
            filter: drop-shadow(0 0 20px rgba(192, 57, 43, 0.5)) drop-shadow(0 0 60px rgba(192, 57, 43, 0.25));
            animation: logoFloat 5s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
            50% { transform: translateY(-20px) rotateX(4deg) rotateY(2deg); }
        }

        .btn-lg {
            padding: 16px 36px;
            font-size: 16px;
        }

        /* ========== TRUST BADGES ========== */
        .trust-section {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 28px 24px;
            background: var(--bg-card);
        }

        .trust-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
        }

        .trust-icon {
            width: 44px;
            height: 44px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .trust-item h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .trust-item p {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ========== SECTION LAYOUT ========== */
        .section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 56px 24px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }

        .section-header h2 {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .section-header a {
            color: var(--primary-light);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s;
        }

        .section-header a:hover {
            color: var(--primary);
        }

        /* ========== WHY RED BEARD SECTION ========== */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .info-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: border-color 0.2s;
        }

        .info-card:hover {
            border-color: var(--border-hover);
        }

        .info-card-icon {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .info-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .info-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .info-card a {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--primary-light);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            margin-top: 12px;
        }

        .info-card a:hover {
            color: var(--primary);
        }

        /* ========== HOW IT WORKS ========== */
        .how-it-works {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: center;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }

        .step-number {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(192, 57, 43, 0.12);
            border: 2px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: var(--primary-light);
        }

        .step-item h3 {
            font-size: 16px;
            font-weight: 700;
        }

        .step-item p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 280px;
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
        }

        .review-stars {
            color: var(--gold);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }

        .review-author {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .review-label {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--success);
            background: rgba(39, 174, 96, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            margin-top: 6px;
        }

        .review-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            padding: 60px 24px;
            text-align: center;
        }

        .cta-banner-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-banner h2 {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: white;
        }

        .cta-banner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 28px;
        }

        .btn-white {
            background: white;
            color: var(--primary-dark);
            padding: 14px 36px;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-white:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* ========== REWARDS BANNER ========== */
        .rewards-banner {
            border-top: 1px solid rgba(212, 168, 67, 0.2);
            border-bottom: 1px solid rgba(212, 168, 67, 0.2);
            background: linear-gradient(135deg, rgba(212, 168, 67, 0.06) 0%, rgba(26, 26, 26, 0) 60%);
            padding: 48px 24px;
        }

        .rewards-banner-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .rewards-badge {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(212, 168, 67, 0.1);
            border: 2px solid rgba(212, 168, 67, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
        }

        .rewards-banner-text {
            flex: 1;
        }

        .rewards-banner-text h3 {
            font-size: 22px;
            font-weight: 800;
            color: #d4a843;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }

        .rewards-banner-text p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 560px;
        }

        .rewards-banner-text p strong {
            color: #d4a843;
        }

        .rewards-banner-cta {
            flex-shrink: 0;
        }

        .btn-rewards {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 168, 67, 0.12);
            color: #d4a843;
            border: 1px solid rgba(212, 168, 67, 0.3);
            padding: 12px 28px;
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .btn-rewards:hover {
            background: rgba(212, 168, 67, 0.2);
            border-color: rgba(212, 168, 67, 0.5);
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .rewards-banner-inner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .rewards-badge {
                width: 64px;
                height: 64px;
                font-size: 28px;
            }

            .rewards-banner-text p {
                max-width: none;
            }
        }

        /* ========== PRODUCT OF THE WEEK ========== */
        .potw-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 56px 24px;
        }

        .potw-section .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }

        .potw-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .potw-card:hover {
            border-color: var(--border-hover);
        }

        .potw-info {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .potw-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(192, 57, 43, 0.1);
            border: 1px solid rgba(192, 57, 43, 0.25);
            color: var(--primary-light);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 6px 12px;
            border-radius: 20px;
            width: fit-content;
            margin-bottom: 20px;
        }

        .potw-name {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            margin-bottom: 8px;
        }

        .potw-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .potw-tag {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            background: var(--bg-surface);
            text-transform: capitalize;
        }

        .potw-description {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .potw-price {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .potw-price .price-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .potw-price .price-unit {
            color: var(--text-muted);
            font-size: 14px;
        }

        .potw-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .potw-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .potw-btn-primary {
            background: var(--primary);
            color: white;
            border: none;
        }

        .potw-btn-primary:hover {
            background: var(--primary-dark);
        }

        .potw-btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        .potw-btn-secondary:hover {
            color: var(--text-primary);
            border-color: var(--border-hover);
            background: var(--bg-surface);
        }

        .potw-details {
            background: var(--bg-surface);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
            border-left: 1px solid var(--border);
        }

        .potw-details-header {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .potw-details-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }


        .potw-loading {
            text-align: center;
            padding: 40px;
            color: var(--text-muted);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .info-grid,
            .reviews-grid,
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .potw-card {
                grid-template-columns: 1fr;
            }

            .potw-details {
                border-left: none;
                border-top: 1px solid var(--border);
            }

        }

        @media (max-width: 768px) {
            .header-main {
                padding: 10px 12px;
                gap: 8px;
            }

            .header-logo {
                flex-shrink: 1;
                min-width: 0;
                gap: 8px;
            }

            .header-logo img {
                display: none;
            }

            .hero {
                padding: 50px 16px 60px;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero p {
                font-size: 15px;
            }

            .hero-logo {
                max-width: 160px;
            }

            .hero-logo-container {
                margin-bottom: 20px;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .potw-info {
                padding: 24px;
            }

            .potw-details {
                padding: 24px;
            }

            .potw-name {
                font-size: 22px;
            }

            .potw-section {
                padding: 40px 16px;
            }

            .section-header h2 {
                font-size: 20px;
            }

            .cta-banner h2 {
                font-size: 24px;
            }

            .cta-banner p {
                font-size: 14px;
            }

            .steps-grid {
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 26px;
            }

            .hero-logo {
                max-width: 150px;
            }
        }

/* ============================================
   Block 2 — May Sale Promo (was inline at line 852, in <body>)
   ============================================ */
            .may-sale-promo {
                background: linear-gradient(135deg, #1a0a0a 0%, #2a0d0d 50%, #1a0a0a 100%);
                border-top: 1px solid rgba(212, 175, 55, 0.35);
                border-bottom: 1px solid rgba(212, 175, 55, 0.35);
                color: #f5f0e8;
                padding: 28px 20px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
            .may-sale-promo::before {
                content: "";
                position: absolute;
                inset: 0;
                background:
                    radial-gradient(circle at 15% 50%, rgba(180, 30, 30, 0.25), transparent 55%),
                    radial-gradient(circle at 85% 50%, rgba(212, 175, 55, 0.15), transparent 55%);
                pointer-events: none;
            }
            .may-sale-inner {
                position: relative;
                max-width: 1100px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .may-sale-eyebrow {
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 3px;
                color: #d4af37;
                text-transform: uppercase;
            }
            .may-sale-headline {
                font-size: 30px;
                font-weight: 800;
                letter-spacing: 1px;
                margin: 0;
                color: #fff;
                text-transform: uppercase;
                text-shadow: 0 2px 8px rgba(0,0,0,0.6);
            }
            .may-sale-headline .pct {
                color: #d4af37;
            }
            .may-sale-sub {
                font-size: 14px;
                color: #d8c9b0;
                margin: 0;
            }
            .may-sale-divider {
                width: 60px;
                height: 1px;
                background: linear-gradient(90deg, transparent, #d4af37, transparent);
                margin: 6px 0;
            }
            .may-sale-giveaway {
                font-size: 18px;
                font-weight: 700;
                color: #ff4444;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                margin: 0;
            }
            .may-sale-rules {
                font-size: 12px;
                color: #b8a888;
                letter-spacing: 0.4px;
                margin: 0;
            }
            .may-sale-rules .dot {
                color: #d4af37;
                margin: 0 8px;
            }
            .may-sale-cta {
                display: inline-block;
                margin-top: 8px;
                background: #b41e1e;
                color: #fff;
                padding: 11px 28px;
                border-radius: 4px;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 1.2px;
                text-transform: uppercase;
                text-decoration: none;
                border: 1px solid #d4af37;
                transition: all 0.2s ease;
            }
            .may-sale-cta:hover {
                background: #d4af37;
                color: #1a0a0a;
            }
            @media (max-width: 600px) {
                .may-sale-promo { padding: 22px 16px; }
                .may-sale-headline { font-size: 21px; letter-spacing: 0.5px; }
                .may-sale-giveaway { font-size: 15px; }
                .may-sale-sub { font-size: 12px; }
                .may-sale-rules { font-size: 11px; }
                .may-sale-rules .dot { margin: 0 5px; }
            }
