        /* ============================================
           RED BEARD PEPTIDES - Order Page
           Redesigned to match demo layout
           ============================================ */

        html {
            -webkit-overflow-scrolling: touch;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            overflow-x: hidden;
            width: 100%;
            min-height: 100vh;
        }

        .cart-btn svg {
            width: 18px;
            height: 18px;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            width: 32px;
            height: 32px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 0;
            right: 0;
            width: 200px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 0 0 var(--radius-md, 8px) var(--radius-md, 8px);
            padding: 8px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            z-index: 999;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 10px 20px;
            border-bottom: 1px solid var(--border);
            transition: color 0.2s ease;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--text-primary);
        }

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

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

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

        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
            line-height: 1.15;
        }

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

        .hero p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== PRODUCT SEARCH (below filters) ========== */
        .product-search {
            margin-bottom: 20px;
        }

        .product-search-wrap {
            position: relative;
            max-width: 500px;
        }

        .product-search-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 14px;
            pointer-events: none;
            opacity: 0.5;
        }

        .product-search-input {
            width: 100%;
            padding: 10px 16px 10px 40px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.2s;
            box-sizing: border-box;
        }

        .product-search-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .product-search-input::placeholder {
            color: var(--text-muted);
        }

        /* ========== ADD TO CART BUTTON ========== */
        .add-to-cart-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            padding: 6px 12px;
            font-size: 11px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .add-to-cart-btn:hover:not(:disabled) {
            background: var(--primary-dark);
        }

        .add-to-cart-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .add-to-cart-btn.added {
            background: var(--success);
        }

        /* ========== PRODUCT HIGHLIGHT PULSE ========== */
        @keyframes highlightPulse {
            0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.6); }
            50% { box-shadow: 0 0 20px 8px rgba(192, 57, 43, 0.3); }
            100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
        }

        .product-item.highlight-pulse {
            border-color: var(--primary);
            animation: highlightPulse 0.8s ease-in-out 3;
        }

        /* ========== TRUST BADGES ========== */
        .trust-section {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 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: 40px;
            height: 40px;
            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: 48px 24px;
        }

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

        .section-header h2 {
            font-size: 24px;
            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);
        }

        /* ========== CATEGORY PILLS ========== */
        .category-filters {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .filter-btn {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid var(--border);
            background: var(--bg-surface);
            color: var(--text-secondary);
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--primary);
            color: var(--primary-light);
            background: rgba(192, 57, 43, 0.1);
        }

        /* Keep colored active states for category-specific buttons */
        .filter-btn.all { color: var(--primary-light); border-color: var(--primary-light); }
        .filter-btn.all.active { background: rgba(192, 57, 43, 0.15); }
        .filter-btn.weight-loss.active { color: #eab308; border-color: #eab308; background: rgba(234, 179, 8, 0.1); }
        .filter-btn.metabolic.active { color: #22c55e; border-color: #22c55e; background: rgba(34, 197, 94, 0.1); }
        .filter-btn.healing.active { color: #3b82f6; border-color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
        .filter-btn.recovery.active { color: #f97316; border-color: #f97316; background: rgba(249, 115, 22, 0.1); }
        .filter-btn.performance.active { color: #a855f7; border-color: #a855f7; background: rgba(168, 85, 247, 0.1); }
        .filter-btn.anti-aging.active { color: #ec4899; border-color: #ec4899; background: rgba(236, 72, 153, 0.1); }
        .filter-btn.longevity.active { color: #06b6d4; border-color: #06b6d4; background: rgba(6, 182, 212, 0.1); }
        .filter-btn.fat-loss.active { color: #ef4444; border-color: #ef4444; background: rgba(239, 68, 68, 0.1); }
        .filter-btn.hormone.active { color: #8b5cf6; border-color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }
        .filter-btn.immune-support.active { color: #10b981; border-color: #10b981; background: rgba(16, 185, 129, 0.1); }
        .filter-btn.sleep.active { color: #6366f1; border-color: #6366f1; background: rgba(99, 102, 241, 0.1); }
        .filter-btn.sexual-health.active { color: #f43f5e; border-color: #f43f5e; background: rgba(244, 63, 94, 0.1); }
        .filter-btn.bioregulator.active { color: #7c3aed; border-color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
        .filter-btn.other.active { color: #64748b; border-color: #64748b; background: rgba(100, 116, 139, 0.1); }
        .filter-btn.energy.active { color: #ff00ff; border-color: #ff00ff; background: rgba(255, 0, 255, 0.1); }
        .filter-btn.glp-1.active { color: #ffd700; border-color: #ffd700; background: rgba(255, 215, 0, 0.1); }
        .filter-btn.tanning.active { color: #a0522d; border-color: #a0522d; background: rgba(160, 82, 45, 0.1); }
        .filter-btn.anti-inflammatory.active { color: #00ff00; border-color: #00ff00; background: rgba(0, 255, 0, 0.1); }
        .filter-btn.appetite.active { color: #eab308; border-color: #eab308; background: rgba(234, 179, 8, 0.1); }
        .filter-btn.cardio.active { color: #ef4444; border-color: #ef4444; background: rgba(239, 68, 68, 0.1); }
        .filter-btn.cognitive.active { color: #8b5cf6; border-color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }
        .filter-btn.cosmetic.active { color: #f43f5e; border-color: #f43f5e; background: rgba(244, 63, 94, 0.1); }
        .filter-btn.gut-health.active { color: #f59e0b; border-color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
        .filter-btn.hair-growth.active { color: #166534; border-color: #166534; background: rgba(22, 101, 52, 0.1); }
        .filter-btn.joint-support.active { color: #d1d5db; border-color: #d1d5db; background: rgba(209, 213, 219, 0.1); }
        .filter-btn.mitochondrial.active { color: #10b981; border-color: #10b981; background: rgba(16, 185, 129, 0.1); }
        .filter-btn.muscle-growth.active { color: #dc2626; border-color: #dc2626; background: rgba(220, 38, 38, 0.1); }
        .filter-btn.neuroprotection.active { color: #6366f1; border-color: #6366f1; background: rgba(99, 102, 241, 0.1); }
        .filter-btn.reconstitution-solution.active { color: #e6e6fa; border-color: #e6e6fa; background: rgba(230, 230, 250, 0.1); }
        .filter-btn.senolytic.active { color: #06b6d4; border-color: #06b6d4; background: rgba(6, 182, 212, 0.1); }
        .filter-btn.skin.active { color: #ffdb58; border-color: #ffdb58; background: rgba(255, 219, 88, 0.1); }
        .filter-btn.telomere.active { color: #ec4899; border-color: #ec4899; background: rgba(236, 72, 153, 0.1); }

        /* ========== PRODUCT GRID ========== */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin-bottom: 24px;
            padding-top: 8px;
        }

        /* ========== PRODUCT CARDS (styled to match demo product-card) ========== */
        .product-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .product-item:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .product-item.selected {
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(192, 57, 43, 0.25);
        }

        .product-item.hidden {
            display: none;
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-item:hover .product-image img {
            transform: scale(1.05);
        }

        /* Status chip styled as colored badge */
        .status-chip {
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex-shrink: 0;
        }

        .status-chip.instock {
            background: rgba(39, 174, 96, 0.15);
            color: #4ade80;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .status-chip.preorder {
            background: rgba(192, 57, 43, 0.15);
            color: var(--primary-light);
            border: 1px solid rgba(192, 57, 43, 0.3);
        }

        .status-chip.out {
            background: rgba(192, 57, 43, 0.15);
            color: var(--primary-light);
            border: 1px solid rgba(192, 57, 43, 0.3);
        }

        .product-info {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .product-title-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
        }

        .product-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            line-height: 1.3;
            margin: 0;
        }

        /* ========== CATEGORY TAGS ========== */
        .product-tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 2px;
            margin-bottom: 4px;
        }

        .product-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }

        /* ========== STOCK INFO ========== */
        .stock-info {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
            font-weight: 500;
        }

        .stock-info.in-stock {
            color: #4ade80;
        }

        .stock-info.out-of-stock {
            color: var(--primary-light);
            font-weight: 600;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .stock-status-text {
            display: block;
        }

        /* ========== NEW PRODUCT CARDS (pcard) ========== */
        .pcard { overflow: visible; position: relative; }
        .pcard.qa-active { z-index: 50; }

        .pcard-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .pcard-img {
            aspect-ratio: 1;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            padding: 8px;
        }
        .pcard-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .pcard:hover .pcard-img img { transform: scale(1.06); }

        .pcard-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .pcard:hover .pcard-overlay { opacity: 1; }
        .pcard-overlay span {
            color: white;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 20px;
            border: 2px solid white;
            border-radius: var(--radius-sm);
        }

        .pcard-preorder-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 3;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: var(--primary);
            color: white;
        }

        .pcard-body {
            padding: 14px 14px 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .pcard-price {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary-light);
        }

        /* Mobile tap hint (visible only on touch devices) */
        .pcard-tap-hint {
            display: none;
            font-size: 10px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        @media (hover: none) {
            .pcard-tap-hint { display: block; }
            .pcard-overlay { display: none; }
        }

        .pcard-sizes { display:flex; gap:4px; flex-wrap:wrap; margin-top:2px; }
        .pcard-size-chip {
            padding:1px 6px; background:var(--bg-surface); border:1px solid var(--border);
            border-radius:3px; font-size:9px; font-weight:600; color:var(--text-muted);
        }

        .pcard-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-top: 2px;
        }
        .pcard-price-row .pcard-price { margin: 0; }

        .pcard-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            padding: 8px 14px 12px;
            border-top: 1px solid rgba(255,255,255,0.04);
        }
        .pcard-tag {
            font-size: 9px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 3px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .pcard-footer {
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        .qa-btn {
            height: 34px;
            border-radius: var(--radius-sm);
            background: var(--primary);
            border: none;
            color: white;
            font-size: 11px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.2s;
            padding: 0 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
        }
        .qa-btn:hover { background: var(--primary-dark); }
        .qa-btn .qa-btn-icon { font-size: 14px; }

        .qa-btn-preorder {
            background: var(--bg-surface);
            border: 1px solid var(--primary);
            color: var(--primary-light);
        }
        .qa-btn-preorder:hover { background: rgba(192,57,43,0.1); }

        .qa-dropdown {
            position: absolute;
            right: 14px;
            bottom: auto;
            top: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border-hover);
            border-radius: var(--radius-md);
            box-shadow: 0 12px 32px rgba(0,0,0,0.6);
            opacity: 0;
            transform: translateY(6px);
            pointer-events: none;
            transition: all 0.2s ease;
            z-index: 999;
            min-width: 180px;
            overflow: hidden;
        }
        .qa-dropdown.open {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .qa-header {
            padding: 8px 14px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
            background: var(--bg-surface);
        }

        .qa-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-primary);
            cursor: pointer;
            transition: background 0.15s;
            border-bottom: 1px solid var(--border);
            white-space: nowrap;
            gap: 12px;
        }
        .qa-option:last-child { border-bottom: none; }
        .qa-option:hover { background: var(--bg-surface); }
        .qa-option .qa-label { color: var(--text-secondary); }
        .qa-option .qa-price { font-weight: 700; color: var(--primary-light); }
        .qa-option.disabled { opacity: 0.35; cursor: not-allowed; }
        .qa-option.disabled:hover { background: transparent; }
        .qa-option.disabled .qa-price::after { content: ' (out)'; font-size: 10px; color: var(--text-muted); font-weight: 500; }

        /* ========== QUANTITY SELECTORS (legacy, kept for compatibility) ========== */
        .quantity-selector-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: auto;
            padding: 10px 16px 14px;
            border-top: 1px solid var(--border);
        }

        .bundle-type-selector {
            display: flex;
            gap: 4px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 3px;
            cursor: pointer;
            padding: 5px 8px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--bg-surface);
            transition: all 0.2s ease;
            white-space: nowrap;
            font-size: 11px;
            flex: 1;
            justify-content: center;
            min-width: 0;
        }

        .radio-option:has(input:checked),
        .radio-option.is-checked {
            border-color: var(--primary);
            background: rgba(192, 57, 43, 0.1);
        }

        .radio-option:has(input:disabled),
        .radio-option.is-disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .radio-option input[type="radio"] {
            position: absolute; width: 1px; height: 1px;
            overflow: hidden; clip: rect(0,0,0,0);
            white-space: nowrap; border: 0;
        }

        .radio-option span {
            color: var(--text-primary);
            font-size: 11px;
            font-weight: 500;
        }

        .quantity-input-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
        }

        .quantity-input-wrapper label {
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 600;
            margin: 0;
        }

        .quantity-input {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 80px !important;
            min-width: 80px !important;
            max-width: 80px !important;
            height: 38px !important;
            padding: 8px 28px 8px 12px !important;
            background-color: var(--bg-surface) !important;
            border: 1px solid var(--border) !important;
            color: var(--text-primary) !important;
            border-radius: var(--radius-sm) !important;
            cursor: pointer !important;
            font-size: 14px !important;
            font-family: 'Inter', sans-serif !important;
            transition: all 0.2s ease;
            box-sizing: border-box !important;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a3a8' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
            background-repeat: no-repeat !important;
            background-position: right 8px center !important;
        }

        .quantity-input:hover:not(:disabled) {
            border-color: var(--primary) !important;
        }

        .quantity-input:focus {
            outline: none;
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.2) !important;
        }

        .quantity-input:disabled {
            opacity: 0.4;
            cursor: not-allowed !important;
        }

        .quantity-label {
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 600;
        }

        /* ========== NOTIFY BUTTON ========== */
        .notify-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

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

        /* Skeleton & shimmer styles now in shared.css */

        .loading-spinner {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid var(--border);
            border-top: 2px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-left: 8px;
        }

        /* ========== COLLAPSIBLE SECTIONS ========== */
        .collapsible-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
            padding: 8px 0;
            transition: all 0.2s ease;
        }

        .collapsible-header:hover {
            opacity: 0.8;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title .section-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--success);
            flex-shrink: 0;
        }

        .section-title .section-dot.preorder {
            background: var(--primary-light);
        }

        .section-title .section-note {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 400;
            margin-left: 8px;
        }

        .collapse-toggle {
            font-size: 20px;
            color: var(--text-muted);
            transition: transform 0.3s ease;
            font-weight: bold;
        }

        .collapse-toggle.collapsed {
            transform: rotate(-90deg);
        }

        .collapsible-content {
            max-height: none;
            overflow: visible;
            transition: max-height 0.5s ease;
        }

        .collapsible-content.collapsed {
            max-height: 0;
            overflow: hidden;
        }

        .collapsible-header.preorder-collapsed-header {
            background: rgba(192, 57, 43, 0.08);
            border: 1px solid rgba(192, 57, 43, 0.25);
            border-radius: var(--radius-md);
            padding: 14px 20px;
            margin-top: 24px !important;
        }

        .collapsible-header.preorder-collapsed-header:hover {
            background: rgba(192, 57, 43, 0.14);
            border-color: rgba(192, 57, 43, 0.4);
        }

        .preorder-hint {
            font-size: 12px;
            color: var(--primary-light);
            font-weight: 600;
            margin-left: 10px;
            animation: pulse-hint 2s ease-in-out infinite;
        }

        @keyframes pulse-hint {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* ========== PREORDER WARNING ========== */
        .preorder-warning {
            background: rgba(192, 57, 43, 0.08);
            padding: 12px 20px;
            margin: 12px 0;
            border-radius: var(--radius-md);
            border: 1px solid rgba(192, 57, 43, 0.25);
            text-align: center;
        }

        .preorder-warning p {
            color: var(--primary-light);
            font-size: 13px;
            font-weight: 600;
            margin: 0;
            letter-spacing: 0.3px;
        }

        /* ========== CART SUMMARY BAR ========== */
        #cartSummaryBar {
            background: var(--bg-card);
            padding: 20px 24px;
            border-radius: var(--radius-lg);
            margin-bottom: 24px;
            border: 1px solid var(--primary);
        }

        #cartSummaryBar .cart-summary-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        #cartSummaryBar .cart-summary-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .proceed-to-checkout-btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            transition: all 0.2s ease;
            font-size: 15px;
        }

        .proceed-to-checkout-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
        }

        #emptyCartMessage {
            background: var(--bg-card);
            padding: 40px 24px;
            border-radius: var(--radius-lg);
            margin-bottom: 24px;
            border: 1px solid var(--border);
            text-align: center;
        }

        #emptyCartMessage p {
            color: var(--text-secondary);
            font-size: 15px;
            margin: 0;
        }

        /* ========== FLOATING CHECKOUT BUTTON ========== */
        .floating-checkout {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9998;
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(192, 57, 43, 0.5);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            transform: translateY(100px);
            pointer-events: none;
            font-family: 'Inter', sans-serif;
        }

        .floating-checkout.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .floating-checkout:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(192, 57, 43, 0.6);
        }

        /* ========== FLOATING CART BUTTON ========== */
        .floating-cart {
            position: fixed;
            top: 80px;
            right: 20px;
            z-index: 9999;
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 18px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(192, 57, 43, 0.5);
            transition: all 0.3s ease;
            display: none;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
        }

        .floating-cart.visible {
            display: flex;
        }

        .floating-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(192, 57, 43, 0.6);
        }

        .floating-cart-badge {
            background: white;
            color: var(--primary);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 12px;
        }

        .floating-cart-total {
            color: #4ade80;
            font-weight: 600;
        }

        /* ========== CONTACT MODAL ========== */
        .contact-modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .contact-modal.show {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-modal-content {
            background: var(--bg-card);
            padding: 36px;
            border-radius: var(--radius-lg);
            max-width: 500px;
            width: 90%;
            position: relative;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease;
        }

        .contact-close {
            position: absolute;
            right: 20px;
            top: 12px;
            font-size: 32px;
            font-weight: bold;
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .contact-close:hover {
            color: var(--primary-light);
        }

        .contact-form-group {
            margin-bottom: 18px;
        }

        .contact-form-group label {
            display: block;
            margin-bottom: 6px;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 13px;
        }

        .contact-form-group input,
        .contact-form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: all 0.2s ease;
        }

        .contact-form-group input:focus,
        .contact-form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
        }

        .contact-form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-submit-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .contact-submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
        }

        .contact-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* ========== NOTIFY MODAL ========== */
        .notify-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }

        .notify-modal.show {
            display: flex;
        }

        .notify-modal-content {
            background: var(--bg-card);
            padding: 30px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            max-width: 400px;
            width: 90%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .notify-modal h2 {
            color: var(--primary-light);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .notify-modal p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 14px;
        }

        .notify-modal .product-name-display {
            color: var(--text-primary);
            font-weight: bold;
        }

        .notify-modal input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            color: var(--text-primary);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-family: 'Inter', sans-serif;
        }

        .notify-modal input[type="email"]:focus {
            border-color: var(--primary);
            outline: none;
        }

        .notify-modal-buttons {
            display: flex;
            gap: 10px;
        }

        .notify-modal button[type="submit"] {
            flex: 1;
            padding: 12px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }

        .notify-modal button[type="submit"]:hover {
            background: var(--primary-dark);
        }

        .notify-modal .cancel-btn {
            padding: 12px 20px;
            background: var(--bg-surface);
            color: var(--text-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }

        .notify-modal .cancel-btn:hover {
            background: var(--bg-elevated);
        }

        #notifyStatus {
            margin-top: 10px;
            text-align: center;
        }

        /* ========== SUCCESS MODAL ========== */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius-lg);
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.5s ease;
        }

        .success-icon {
            width: 72px;
            height: 72px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 40px;
            color: white;
            animation: scaleIn 0.5s ease 0.2s both;
        }

        .order-summary {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius-md);
            margin: 20px 0;
        }

        .order-summary p {
            margin: 10px 0;
            font-size: 15px;
            color: var(--text-primary);
        }

        .modal-close-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .modal-close-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        /* Confetti Animation */
        .celebration-animation {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            top: -10px;
            animation: confettiFall 3s linear infinite;
        }

        .confetti:nth-child(1) { left: 10%; animation-delay: 0s; background: var(--primary); }
        .confetti:nth-child(2) { left: 30%; animation-delay: 0.5s; background: #4ade80; }
        .confetti:nth-child(3) { left: 50%; animation-delay: 1s; background: var(--gold); }
        .confetti:nth-child(4) { left: 70%; animation-delay: 1.5s; background: #60a5fa; }
        .confetti:nth-child(5) { left: 90%; animation-delay: 2s; background: #c084fc; }

        @keyframes confettiFall {
            to { transform: translateY(600px) rotate(360deg); opacity: 0; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        /* ========== CART SAVED INDICATOR ========== */
        .cart-saved-indicator {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background: var(--bg-card);
            color: #4ade80;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            font-size: 13px;
            font-weight: 600;
            z-index: 9999;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            pointer-events: none;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .cart-saved-indicator.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== TOAST NOTIFICATIONS ========== */
        .toast-notification {
            position: fixed;
            top: 80px;
            right: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-primary);
            padding: 14px 20px;
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 500;
            z-index: 10001;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.3s ease;
            max-width: 350px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .toast-notification.show {
            opacity: 1;
            transform: translateX(0);
        }

        .toast-notification.success {
            border-color: rgba(39, 174, 96, 0.3);
        }

        .toast-notification.error {
            border-color: rgba(192, 57, 43, 0.3);
        }

        /* ========== INFO CARDS ROW ========== */
        .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;
        }

        /* ========== REVIEWS SECTION ========== */
        .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-date {
            font-size: 12px;
            color: var(--text-muted);
        }

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

        }

        @media (max-width: 768px) {
            .header-main { padding: 10px 12px; gap: 8px; }
            .header-logo img { width: 32px; height: 32px; }
            .cart-btn { padding: 6px 10px; font-size: 13px; gap: 4px; }
            .cart-btn svg { width: 15px; height: 15px; }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 40px 16px;
            }

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

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

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

            .section {
                padding: 32px 12px;
            }

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

            .product-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .product-item {
                border-radius: var(--radius-md);
            }

            .product-info {
                padding: 10px;
                gap: 3px;
            }

            .product-name {
                font-size: 12px;
                line-height: 1.2;
            }

            .status-chip {
                padding: 2px 5px;
                font-size: 8px;
            }

            .stock-info {
                font-size: 10px;
            }

            .product-tag {
                padding: 1px 4px;
                font-size: 7px;
            }

            .product-tags-container {
                gap: 2px;
                margin-top: 1px;
                margin-bottom: 2px;
            }

            .quantity-selector-group {
                gap: 4px;
                padding-top: 5px;
            }

            .radio-option {
                padding: 3px 5px;
                font-size: 9px;
            }

            .radio-option span {
                font-size: 9px;
            }

            .quantity-input {
                width: 50px !important;
                min-width: 50px !important;
                max-width: 50px !important;
                height: 28px !important;
                padding: 4px !important;
                font-size: 11px !important;
            }

            .quantity-input-wrapper label {
                font-size: 9px;
            }

            .add-to-cart-btn {
                padding: 4px 8px;
                font-size: 9px;
            }

            /* New card mobile styles */
            .pcard-body { padding: 10px 10px 0; }
            .pcard-price { font-size: 13px; }
            .pcard-footer { padding: 8px 10px 10px; }
            .qa-btn { font-size: 10px; height: 32px; padding: 0 10px; min-height: 44px; }
            .qa-dropdown { right: 10px; bottom: 46px; min-width: 160px; }
            .pcard-preorder-badge { font-size: 8px; padding: 2px 6px; }

            .product-search-input {
                padding: 8px 14px 8px 36px;
                font-size: 13px;
            }

            .product-search-icon {
                font-size: 13px;
                left: 12px;
            }

            .category-filters {
                gap: 5px;
            }

            .filter-btn {
                padding: 4px 10px;
                font-size: 10px;
            }

            .floating-checkout {
                padding: 12px 18px;
                font-size: 13px;
                bottom: 15px;
                right: 15px;
            }

            .floating-cart {
                padding: 10px 14px;
                font-size: 12px;
                top: 70px;
                right: 15px;
            }

            .floating-cart-badge {
                width: 18px;
                height: 18px;
                font-size: 10px;
            }

            .preorder-warning p {
                font-size: 11px;
            }

            .section-title {
                font-size: 16px;
            }

            .section-title .section-note {
                font-size: 10px;
            }
        }

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

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

            .product-info {
                padding: 8px;
            }

            .product-name {
                font-size: 11px;
                line-height: 1.1;
            }

            .status-chip {
                padding: 2px 4px;
                font-size: 7px;
                letter-spacing: 0.3px;
            }

            .stock-info {
                font-size: 9px;
            }

            .product-tag {
                font-size: 6px;
                padding: 1px 3px;
            }

            .category-filters {
                gap: 3px;
            }

            .filter-btn {
                padding: 3px 8px;
                font-size: 9px;
            }

            .section-title {
                font-size: 14px;
            }

            .quantity-input {
                width: 50px !important;
                min-width: 50px !important;
                max-width: 50px !important;
                height: 26px !important;
                font-size: 10px !important;
                padding: 3px !important;
            }

            .radio-option {
                padding: 2px 4px;
                font-size: 8px;
            }

            .radio-option span {
                font-size: 8px;
            }

            .quantity-input-wrapper label {
                font-size: 8px;
            }

            .add-to-cart-btn {
                padding: 3px 6px;
                font-size: 8px;
            }

            .product-search-input {
                padding: 7px 12px 7px 32px;
                font-size: 12px;
            }

            .floating-checkout {
                padding: 10px 14px;
                font-size: 12px;
                bottom: 10px;
                right: 10px;
            }

            .floating-cart {
                padding: 8px 12px;
                font-size: 11px;
                top: 60px;
                right: 10px;
                gap: 6px;
            }

            .floating-cart-badge {
                width: 16px;
                height: 16px;
                font-size: 9px;
            }

            .preorder-warning {
                padding: 8px 12px;
            }

            .preorder-warning p {
                font-size: 10px;
            }
        }

        /* ========== PRODUCT REVIEW STARS (on cards) ========== */
        .product-review-stars {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 2px;
            padding: 2px 0;
        }
        .stars-display {
            display: flex;
            gap: 1px;
        }
        .star {
            font-size: 14px;
            line-height: 1;
        }
        .star.filled {
            color: #fbbf24;
        }
        .star.half-filled {
            color: #fbbf24;
            opacity: 0.6;
        }
        .star.empty {
            color: #555;
        }
        .review-count-label {
            font-size: 11px;
            color: #888;
            font-weight: 500;
        }

        /* ========== PRODUCT REVIEW MODAL ========== */
        .product-review-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .product-review-modal.show {
            display: flex;
        }
        .product-review-modal-content {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            max-width: 600px;
            width: 100%;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        .product-review-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid #333;
            flex-shrink: 0;
        }
        .product-review-modal-header h2 {
            font-size: 18px;
            color: #f0f0f0;
            margin: 0;
        }
        .product-review-close-btn {
            background: none;
            border: none;
            color: #888;
            font-size: 28px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
        }
        .product-review-close-btn:hover {
            color: #f0f0f0;
        }
        .product-review-modal-body {
            overflow-y: auto;
            padding: 24px;
        }

        /* Review Summary */
        .pr-summary-row {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #333;
        }
        .pr-summary-avg {
            text-align: center;
            min-width: 100px;
        }
        .pr-avg-number {
            font-size: 36px;
            font-weight: 700;
            color: #f0f0f0;
            display: block;
            line-height: 1;
        }
        .pr-avg-stars {
            margin: 6px 0;
        }
        .pr-avg-stars .star {
            font-size: 16px;
        }
        .pr-avg-count {
            font-size: 12px;
            color: #888;
        }
        .pr-summary-bars {
            flex: 1;
        }
        .pr-bar-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }
        .pr-bar-label {
            font-size: 12px;
            color: #888;
            width: 12px;
            text-align: right;
        }
        .pr-bar-track {
            flex: 1;
            height: 8px;
            background: #2a2a2a;
            border-radius: 4px;
            overflow: hidden;
        }
        .pr-bar-fill {
            height: 100%;
            background: #fbbf24;
            border-radius: 4px;
            transition: width 0.3s;
        }
        .pr-bar-count {
            font-size: 11px;
            color: #666;
            width: 20px;
        }

        /* Review List */
        .product-review-list {
            margin-bottom: 24px;
        }
        .product-review-item {
            padding: 16px 0;
            border-bottom: 1px solid #2a2a2a;
        }
        .product-review-item:last-child {
            border-bottom: none;
        }
        .pr-item-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }
        .pr-item-stars .star {
            font-size: 14px;
        }
        .pr-item-title {
            font-weight: 600;
            color: #f0f0f0;
            font-size: 14px;
        }
        .pr-item-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 12px;
            color: #888;
        }
        .pr-item-author {
            font-weight: 600;
            color: #ccc;
        }
        .pr-verified-badge {
            background: rgba(39, 174, 96, 0.15);
            color: #4ade80;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .pr-item-text {
            color: #bbb;
            font-size: 13px;
            line-height: 1.6;
        }
        .product-review-loading,
        .product-review-empty {
            text-align: center;
            padding: 24px;
            color: #888;
            font-size: 14px;
        }

        /* Review Form */
        .product-review-form-section {
            border-top: 1px solid #333;
            padding-top: 24px;
        }
        .product-review-form-section h3 {
            color: #ff4444;
            font-size: 16px;
            margin-bottom: 16px;
            margin-top: 0;
        }
        .pr-form-row {
            margin-bottom: 14px;
        }
        .pr-form-row label {
            display: block;
            color: #ccc;
            font-size: 13px;
            margin-bottom: 6px;
            font-weight: 600;
        }
        .pr-form-row input[type="text"],
        .pr-form-row input[type="email"],
        .pr-form-row textarea {
            width: 100%;
            padding: 10px 12px;
            background: #0a0a0a;
            border: 1px solid #333;
            color: #f0f0f0;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }
        .pr-form-row input:focus,
        .pr-form-row textarea:focus {
            border-color: #ff4444;
            outline: none;
        }
        .pr-form-hint {
            display: block;
            font-size: 11px;
            color: #666;
            margin-top: 4px;
        }
        .pr-star-picker {
            display: flex;
            gap: 4px;
        }
        .pr-picker-star {
            font-size: 28px;
            cursor: pointer;
            color: #555;
            transition: color 0.15s;
            user-select: none;
        }
        .pr-picker-star.active {
            color: #fbbf24;
        }
        .pr-submit-btn {
            width: 100%;
            padding: 12px;
            background: #ff4444;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            margin-top: 8px;
        }
        .pr-submit-btn:hover {
            background: #cc0000;
        }
        .pr-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .pr-form-error {
            color: #ff4444;
            font-size: 13px;
            margin: 8px 0;
        }
        .pr-form-success {
            color: #4ade80;
            font-size: 13px;
            margin: 8px 0;
        }

        @media (max-width: 480px) {
            .product-review-modal-content {
                max-height: 90vh;
                border-radius: 10px;
            }
            .product-review-modal-body {
                padding: 16px;
            }
            .pr-summary-row {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            .pr-summary-bars {
                width: 100%;
            }
        }
