        /* ============================================
           SUBTLE VARIATIONS - Film Grain & Atmosphere
           ============================================ */

        /* Film Grain Overlay - Cinematic texture */
        .film-grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9997;
            opacity: 0.035;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            mix-blend-mode: overlay;
        }

        /* Subtle grain animation for more organic feel */
        @keyframes grainShift {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(-1px, 1px); }
            50% { transform: translate(1px, -1px); }
            75% { transform: translate(-1px, -1px); }
        }

        .film-grain {
            animation: grainShift 0.5s steps(4) infinite;
        }

        /* Reduce grain on mobile for performance */
        @media (max-width: 768px) {
            .film-grain {
                opacity: 0.02;
                animation: none;
            }
        }

        /* Respect reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .film-grain {
                animation: none;
            }
        }
        /* Christmas Promo Bar - Warm & Genuine */
        .promo-bar {
            background: linear-gradient(135deg, #1a2f1a 0%, #0d1f0d 100%);
            border-bottom: 1px solid rgba(134, 169, 134, 0.2);
            padding: 12px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            position: relative;
            animation: promoFadeIn 0.5s ease;
        }

        @keyframes promoFadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .promo-bar-content {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .promo-bar-icon {
            font-size: 18px;
            color: var(--accent-on-light);
            opacity: 0.9;
        }

        .promo-bar-text {
            font-size: 14px;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            text-align: center;
            line-height: 1.5;
        }

        .promo-bar-highlight {
            color: var(--accent-on-light);
            font-weight: 600;
        }

        .promo-bar-subtle {
            color: var(--text-muted);
            font-size: 13px;
        }

        .promo-bar-divider {
            width: 1px;
            height: 20px;
            background: rgba(134, 169, 134, 0.3);
        }

        .promo-bar-close {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 18px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s ease;
            line-height: 1;
        }

        .promo-bar-close:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
        }

        /* Desktop/Mobile text switching */
        .promo-mobile-text {
            display: none;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .promo-bar {
                padding: 10px 40px 10px 16px;
                gap: 8px;
            }

            .promo-bar-content {
                gap: 6px;
                flex-direction: row;
            }

            .promo-bar-text {
                font-size: 12px;
            }

            .promo-bar-divider {
                display: none;
            }

            .promo-bar-icon {
                display: none;
            }

            .promo-desktop-text {
                display: none;
            }

            .promo-mobile-text {
                display: inline;
            }
        }

        /* Subtle warm glow on header */
        .site-header {
            box-shadow: 0 1px 20px rgba(180, 140, 80, 0.03);
        }

        /* Warm gold accent on category titles */
        .category-title {
            border-bottom-color: var(--text-muted) !important;
            color: var(--accent-on-light) !important;
            text-shadow: 0 0 40px rgba(210, 153, 34, 0.15);
        }

        /* Featured section warm winter glow */
        .featured-section {
            background: linear-gradient(135deg, rgba(40, 50, 40, 0.15) 0%, rgba(30, 25, 20, 0.1) 100%) !important;
            border-color: rgba(150, 130, 90, 0.2) !important;
            box-shadow: inset 0 0 60px rgba(210, 153, 34, 0.02);
        }

        .featured-title::before,
        .featured-title::after {
            background: linear-gradient(90deg, transparent, rgba(210, 153, 34, 0.25), transparent) !important;
        }

        /* Product cards - warm gold hover glow */
        .product-card {
            transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.3s ease !important;
        }

        .product-card:hover {
            box-shadow:
                0 12px 32px rgba(210, 153, 34, 0.12),
                0 0 48px rgba(210, 153, 34, 0.06),
                inset 0 0 20px rgba(255, 250, 240, 0.015) !important;
            border-color: rgba(210, 153, 34, 0.35) !important;
        }

        /* Frost shimmer on buttons */
        .btn-add-cart,
        .search-btn {
            position: relative;
            overflow: hidden;
        }

        .btn-add-cart::after,
        .search-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 40%,
                rgba(255, 255, 255, 0.03) 50%,
                transparent 60%
            );
            transform: rotate(45deg);
            animation: frostShimmer 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes frostShimmer {
            0%, 100% { transform: rotate(45deg) translateX(-100%); }
            50% { transform: rotate(45deg) translateX(100%); }
        }

        /* Gold glow on price */
        .price-current {
            text-shadow: 0 0 20px rgba(210, 153, 34, 0.25);
        }

        /* Cart button warm accent */
        .cart-btn:hover {
            box-shadow: 0 4px 15px rgba(210, 153, 34, 0.2);
        }

        /* Search input warm focus */
        .search-input:focus {
            border-color: rgba(180, 150, 100, 0.5) !important;
            box-shadow: 0 0 20px rgba(210, 153, 34, 0.08);
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .christmas-snow .flake {
                animation: none;
                opacity: 0;
            }
            .btn-add-cart::after,
            .search-btn::after {
                animation: none;
            }
        }

        /* ----------------------------------------
           Christmas Featured Title Glow
           Ethereal spotlight effect on title
           ---------------------------------------- */
        .featured-section .featured-title {
            text-shadow:
                0 0 30px rgba(255, 200, 100, 0.4),
                0 0 60px rgba(255, 180, 80, 0.2),
                0 0 100px rgba(255, 160, 60, 0.1);
            animation: titleGlow 4s ease-in-out infinite;
            position: relative;
            z-index: 5;
        }

        @keyframes titleGlow {
            0%, 100% {
                text-shadow:
                    0 0 30px rgba(255, 200, 100, 0.4),
                    0 0 60px rgba(255, 180, 80, 0.2),
                    0 0 100px rgba(255, 160, 60, 0.1);
            }
            50% {
                text-shadow:
                    0 0 40px rgba(255, 210, 120, 0.55),
                    0 0 80px rgba(255, 190, 90, 0.3),
                    0 0 120px rgba(255, 170, 70, 0.15);
            }
        }

        /* Reduce motion */
        @media (prefers-reduced-motion: reduce) {
            .featured-section .featured-title {
                animation: none;
                text-shadow:
                    0 0 30px rgba(255, 200, 100, 0.35),
                    0 0 60px rgba(255, 180, 80, 0.15);
            }
        }

        /* ----------------------------------------
           Christmas Fireplace Ambient Glow
           Subtle warm color shift like firelight
           ---------------------------------------- */
        .featured-section {
            animation: fireplaceAmbient 8s ease-in-out infinite;
        }

        @keyframes fireplaceAmbient {
            0%, 100% {
                background: linear-gradient(135deg, rgba(40, 50, 40, 0.15) 0%, rgba(30, 25, 20, 0.1) 100%);
                box-shadow: inset 0 0 80px rgba(210, 153, 34, 0.03);
            }
            25% {
                background: linear-gradient(135deg, rgba(55, 45, 38, 0.2) 0%, rgba(45, 35, 28, 0.14) 100%);
                box-shadow: inset 0 0 100px rgba(220, 160, 80, 0.06);
            }
            50% {
                background: linear-gradient(135deg, rgba(58, 48, 40, 0.18) 0%, rgba(48, 36, 28, 0.13) 100%);
                box-shadow: inset 0 0 120px rgba(255, 180, 100, 0.055);
            }
            75% {
                background: linear-gradient(135deg, rgba(50, 46, 38, 0.19) 0%, rgba(40, 30, 24, 0.13) 100%);
                box-shadow: inset 0 0 90px rgba(230, 150, 70, 0.058);
            }
        }

        /* Reduce motion */
        @media (prefers-reduced-motion: reduce) {
            .featured-section {
                animation: none;
            }
        }

        /* Body smoothing — bg/color/font come from tokens.css */
        body {
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Header styles - Industrial Terminal */
        .site-header {
            background-color: var(--bg-panel);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-container img {
            height: 40px;
            width: auto;
        }

        /* Login Dropdown Styles - EXACT from course_finder */
        .login-dropdown {
            position: relative;
            display: inline-block;
        }

        .login-button {
            background-color: transparent;
            color: var(--accent-on-light);
            border: 1px solid rgba(210, 153, 34, 0.3);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-family: inherit;
        }

        .login-button:hover {
            background-color: rgba(210, 153, 34, 0.1);
            border-color: rgba(210, 153, 34, 0.5);
            color: var(--accent-on-light);
        }

        .login-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            background-color: var(--bg-panel);
            min-width: 280px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            z-index: 1000;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        .login-dropdown-content.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-option {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            text-decoration: none;
            color: var(--text-primary);
            transition: background-color 0.2s ease;
            border-bottom: 1px solid var(--bg-elevated);
        }

        .login-option:last-child {
            border-bottom: none;
        }

        .login-option:hover {
            background-color: rgba(210, 153, 34, 0.08);
        }

        /* Primary login option (new platform) */
        .login-option.primary {
            padding: 18px 20px;
        }

        .login-option.primary .login-option-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
        }

        .login-option.primary .login-option-icon i {
            font-size: 1.4rem;
        }

        .login-option.primary .login-option-title {
            font-size: 1.05rem;
            font-weight: 700;
        }

        .login-option.primary .login-option-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Secondary login option (legacy) */
        .login-option.secondary {
            padding: 12px 20px;
            background-color: rgba(255, 255, 255, 0.02);
        }

        .login-option.secondary .login-option-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--text-faint) 0%, var(--text-muted) 100%);
        }

        .login-option.secondary .login-option-icon i {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .login-option.secondary .login-option-title {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .login-option.secondary .login-option-desc {
            font-size: 0.75rem;
            color: var(--text-faint);
        }

        .login-option.secondary:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .login-option-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .login-option-icon i {
            color: var(--text-on-accent);
            font-size: 1.2rem;
        }

        .login-option-text {
            flex: 1;
        }

        .login-option-title {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 3px;
        }

        .login-option-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.3;
        }

        /* Cart button styles - modified to match login button */
        .cart-btn {
            background-color: transparent;
            color: var(--accent-on-light);
            border: 1px solid rgba(210, 153, 34, 0.3);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cart-btn:hover {
            background: rgba(210, 153, 34, 0.1);
            border-color: rgba(210, 153, 34, 0.5);
            color: var(--accent-on-light);
        }

        .cart-count {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
            color: var(--text-on-accent);
            border-radius: 50%;
            padding: 2px 7px;
            font-size: 11px;
            font-weight: 700;
            min-width: 18px;
            text-align: center;
        }

        /* Search Bar */
        .search-section {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .search-form {
            display: flex;
            gap: 10px;
        }

        .search-input {
            flex: 1;
            padding: 12px 20px;
            background: var(--bg-panel);
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            border-radius: 8px;
            font-size: 16px;
        }

        .search-input:focus {
            outline: none;
            border-color: rgba(210, 153, 34, 0.5);
            background: var(--bg-panel);
        }

        .search-btn {
            padding: 12px 24px;
            background: transparent;
            color: var(--accent-on-light);
            border: 1px solid rgba(210, 153, 34, 0.3);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .search-btn:hover {
            background: rgba(210, 153, 34, 0.1);
            border-color: rgba(210, 153, 34, 0.5);
        }

        /* Header Search (Desktop) */
        .header-search {
            display: none;
        }

        @media (min-width: 769px) {
            .header-search {
                display: flex;
                align-items: center;
                gap: 0;
            }

            .header-search .search-input {
                width: 200px;
                padding: 8px 14px;
                font-size: 14px;
                border-radius: 6px 0 0 6px;
                border: 1px solid rgba(210, 153, 34, 0.2);
                background: var(--bg-panel);
                transition: all 0.3s ease;
            }

            .header-search .search-input:focus {
                width: 280px;
                border-color: rgba(210, 153, 34, 0.5);
                background: var(--bg-panel);
            }

            .header-search .search-btn {
                padding: 8px 14px;
                border-radius: 0 6px 6px 0;
                background: rgba(210, 153, 34, 0.15);
                border: 1px solid rgba(210, 153, 34, 0.2);
                border-left: none;
                color: var(--accent-on-light);
            }

            .header-search .search-btn:hover {
                background: rgba(210, 153, 34, 0.25);
            }

            /* Hide standalone search on desktop */
            .search-section {
                display: none;
            }
        }

        /* Product Grid */
        .products-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .category-section {
            margin-bottom: 60px;
        }

        .category-title {
            font-family: var(--font-sans);
            font-size: 26px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            color: var(--accent-on-light);
        }

        /* ============================================
           FEATURED SPOTLIGHT - Compact Horizontal Cards
           ============================================ */

        .featured-spotlight {
            background: linear-gradient(135deg, rgba(40, 50, 40, 0.12) 0%, rgba(30, 25, 20, 0.08) 100%);
            border: 1px solid rgba(210, 153, 34, 0.15);
            border-radius: 12px;
            padding: 20px 20px 20px 20px;
            margin-bottom: 28px;
            position: relative;
        }

        .featured-spotlight-header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .featured-spotlight-title {
            font-family: var(--font-sans);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-on-light);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .featured-spotlight-title::before {
            content: '';
            width: 16px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent));
        }

        .featured-spotlight-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(210, 153, 34, 0.3), transparent);
            margin-left: 12px;
        }

        .spotlight-grid {
            display: grid;
            gap: 16px;
        }

        .spotlight-grid.items-1 {
            grid-template-columns: 1fr;
        }

        .spotlight-grid.items-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .spotlight-grid.items-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        /* Horizontal card - ALWAYS | Image | Info | */
        .spotlight-card {
            background: linear-gradient(135deg, rgba(30, 28, 26, 0.95) 0%, rgba(22, 20, 18, 0.98) 100%);
            border-radius: 10px;
            border: 1px solid rgba(210, 153, 34, 0.18);
            overflow: hidden;
            display: flex;
            flex-direction: row;
            height: 140px;
            cursor: pointer;
            position: relative;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .spotlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 0% 0%, rgba(210, 153, 34, 0.05) 0%, transparent 60%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .spotlight-card:hover {
            transform: translateY(-2px);
            border-color: rgba(210, 153, 34, 0.4);
            box-shadow:
                0 12px 32px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(210, 153, 34, 0.08);
        }

        .spotlight-card:hover::before {
            opacity: 1;
        }

        /* Image - left side */
        .spotlight-image-wrap {
            width: 250px;
            min-width: 200px;
            height: 100%;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-panel);
        }

        .spotlight-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .spotlight-card:hover .spotlight-image {
            transform: scale(1.05);
        }

        .spotlight-image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-panel) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spotlight-image-placeholder i {
            font-size: 28px;
            color: var(--border-strong);
        }

        /* Info - right side */
        .spotlight-content {
            flex: 1;
            padding: 10px 16px 10px 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 0;
            position: relative;
        }

        .spotlight-label {
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--accent-on-light);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .spotlight-label::before {
            content: '';
            width: 8px;
            height: 1px;
            background: var(--accent);
        }

        .spotlight-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 4px 0;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .spotlight-description {
            font-size: 11px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.4;
            overflow: hidden;
            flex: 1;
            -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
        }

        .spotlight-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }

        .spotlight-price {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .spotlight-price-current {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent-on-light);
        }

        .spotlight-price-original {
            font-size: 11px;
            color: var(--text-faint);
            text-decoration: line-through;
        }

        .spotlight-cta {
            padding: 5px 12px;
            background: rgba(210, 153, 34, 0.12);
            border: 1px solid rgba(210, 153, 34, 0.25);
            border-radius: 5px;
            color: var(--accent-on-light);
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }

        .spotlight-cta:hover {
            background: rgba(210, 153, 34, 0.2);
            border-color: rgba(210, 153, 34, 0.4);
        }

        /* Spotlight Badges */
        .spotlight-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
            color: var(--text-on-accent);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .spotlight-coupon {
            position: absolute;
            top: 8px;
            right: 8px;
            background: linear-gradient(135deg, var(--danger) 0%, var(--danger) 100%);
            color: #fff;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            z-index: 2;
        }

        /* Spotlight responsive */
        @media (max-width: 1100px) {
            .spotlight-grid.items-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* Mobile: 2 columns, vertical cards like regular products */
            .spotlight-grid.items-1,
            .spotlight-grid.items-2,
            .spotlight-grid.items-3 {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            /* Single item spans full width */
            .spotlight-grid.items-1 {
                grid-template-columns: 1fr;
            }

            /* Odd item (3rd) spans full width */
            .spotlight-grid.items-3 .spotlight-card:last-child {
                grid-column: span 2;
            }

            /* Vertical card layout */
            .spotlight-card {
                height: auto;
                flex-direction: column;
            }

            .spotlight-image-wrap {
                width: 100%;
                height: auto;
                aspect-ratio: 16/9;
                min-width: unset;
                max-width: unset;
            }

            .spotlight-image {
                object-fit: contain;
            }

            .spotlight-content {
                padding: 10px;
            }

            .spotlight-label {
                font-size: 8px;
                margin-bottom: 4px;
            }

            .spotlight-name {
                font-size: 12px;
                margin-bottom: 4px;
            }

            .spotlight-description {
                display: none;
            }

            .spotlight-footer {
                padding-top: 0;
            }

            .spotlight-price-current {
                font-size: 14px;
            }

            .spotlight-price-original {
                font-size: 10px;
            }

            .spotlight-cta {
                padding: 5px 10px;
                font-size: 10px;
            }
        }

        /* Regular products grid - 4 columns */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        /* Featured section styling */
        .featured-section {
            background: linear-gradient(135deg, rgba(210, 153, 34, 0.08) 0%, rgba(166, 133, 35, 0.04) 100%);
            border-radius: 12px;
            padding: 30px 30px 6px 30px;
            margin-bottom: 28px;
            border: 1px solid rgba(210, 153, 34, 0.2);
        }

        .featured-title {
            font-family: var(--font-sans);
            font-size: 26px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: var(--text-primary);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            position: relative;
        }

        .featured-title::before,
        .featured-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(210, 153, 34, 0.3), transparent);
            max-width: 150px;
        }

        .new-badge-large {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
            color: var(--text-on-accent);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: subtle-pulse 3s infinite;
        }

        @keyframes subtle-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.85; }
        }

        /* Override Bootstrap and force cursor pointer on all product cards */
        .product-card,
        .product-card *,
        .product-card button,
        .product-card .btn-view-details,
        .product-card .btn-add-cart {
            cursor: pointer !important;
        }

        .product-card {
            background: var(--bg-panel);
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(210, 153, 34, 0.12);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            transform: translateY(0);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow:
                0 16px 40px rgba(0, 0, 0, 0.35),
                0 8px 24px rgba(210, 153, 34, 0.12),
                0 0 48px rgba(210, 153, 34, 0.06);
            border-color: rgba(210, 153, 34, 0.35);
            background: var(--bg-panel);
        }

        /* Subtle image zoom on hover */
        .product-card .product-image {
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card:hover .product-image {
            transform: scale(1.03);
        }

        .clickable-area {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-image {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: contain;
            background: var(--bg-elevated);
        }

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

        .product-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .product-description {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 12px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .price-current {
            font-size: 20px;
            font-weight: bold;
            color: var(--accent-on-light);
        }

        .price-original {
            font-size: 16px;
            color: var(--text-faint);
            text-decoration: line-through;
        }

        .product-actions {
            display: flex;
            gap: 8px;
            padding: 0 16px 16px 16px;
        }

        .btn-view-details {
            flex: 1;
            padding: 8px 10px;
            background: var(--bg-elevated);
            color: var(--text-primary);
            border: 1px solid var(--border-strong);
            border-radius: 6px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 14px;
            cursor: pointer !important;
        }

        .btn-view-details:hover {
            background: var(--border-subtle);
            color: var(--accent-on-light);
            border-color: var(--accent-on-light);
            cursor: pointer !important;
        }

        .btn-add-cart {
            flex: 1;
            padding: 8px 10px;
            background: transparent;
            color: var(--accent-on-light);
            border: 1px solid rgba(210, 153, 34, 0.3);
            border-radius: 6px;
            cursor: pointer !important;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }

        .btn-add-cart:hover {
            background: rgba(210, 153, 34, 0.1);
            border-color: rgba(210, 153, 34, 0.5);
        }

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

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
        }

        .empty-icon {
            font-size: 64px;
            color: var(--text-faint);
            margin-bottom: 20px;
        }

        .empty-title {
            font-size: 24px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .empty-text {
            color: var(--text-faint);
        }

        /* Subscription Badge */
        .subscription-badge {
            background: #f59e0b;
            color: #fff;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 10px;
        }

        /* Reason Why Badge - Top-left promotional reason */
        .reason-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #fff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            z-index: 10;
        }

        /* Extension Badge - Subtle urgency variant */
        .reason-badge.extension-urgency,
        .spotlight-badge.extension-urgency {
            background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-bright) 100%);
            letter-spacing: 0.6px;
        }

        /* Coupon Badge - Slim tag aesthetic */
        .coupon-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(150deg, var(--danger) 0%, var(--danger) 100%);
            color: #fff;
            padding: 6px 12px 5px 12px;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transform: rotate(10deg);
            transform-origin: top right;
            box-shadow: 0 3px 10px rgba(185, 28, 28, 0.4);
            z-index: 10;
            border-radius: 1px 1px 1px 4px;
            margin-top: 7px;
            margin-right: -17px;
            border: none;
            border-left: 2px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            line-height: 1.3;
            min-width: 72px;
        }

        .coupon-badge > div:first-child {
            font-size: 7px;
            letter-spacing: 0.18em;
            opacity: 0.7;
            margin-bottom: 0;
            font-weight: 500;
        }

        .coupon-badge > div:nth-child(2) {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-bottom: 2px;
        }

        /* Coupon availability */
        .coupon-availability {
            font-size: 8px;
            color: #fef08a;
            text-align: center;
            margin-top: 2px;
            margin-bottom: 0;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        /* Coupon timer */
        .coupon-timer {
            font-size: 7px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            margin-top: 3px;
            padding-top: 3px;
            font-weight: 500;
            min-height: 10px;
            letter-spacing: 0.01em;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-variant-numeric: tabular-nums;
        }

        .coupon-timer.expired {
            color: #fef08a;
            font-weight: 600;
        }

        /* Enhanced price display for products with coupons */
        .enhanced-price-display {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .price-breakdown {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .price-offer-crossed {
            font-size: 16px;
            color: var(--text-muted);
            text-decoration: line-through;
            opacity: 0.7;
        }

        .coupon-discount {
            background: var(--danger-bg);
            color: var(--danger);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .price-final {
            font-size: 22px;
            font-weight: bold;
            color: var(--accent-on-light);
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .price-final-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: normal;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Adjust product card for coupon badge */
        .product-card.has-coupon {
            overflow: visible;
        }

        /* Toast Notification */
        .toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .toast {
            background: var(--bg-panel);
            border: 1px solid rgba(210, 153, 34, 0.4);
            color: var(--text-primary);
        }

        /* Cart Dropdown Styles */
        .cart-dropdown-container {
            position: relative;
            display: inline-block;
        }

        .cart-dropdown-content {
            display: none;
            position: fixed;
            right: 20px;
            top: 70px;
            background-color: var(--bg-panel);
            min-width: 320px;
            max-width: 380px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            z-index: 1001;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        /* When dropdown is being hidden, prevent hover from showing it */
        .cart-dropdown-container.hiding .cart-dropdown-content {
            display: none !important;
        }

        .cart-dropdown-content.show {
            display: block;
            animation: cartDropdownFadeIn 0.25s ease;
        }

        @keyframes cartDropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-8px) scale(0.97);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes cartDropdownFadeOut {
            from {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            to {
                opacity: 0;
                transform: translateY(-8px) scale(0.97);
            }
        }

        .cart-dropdown-content.fade-out {
            animation: cartDropdownFadeOut 0.2s ease forwards;
        }

        /* Desktop-only hover behavior */
        @media (hover: hover) and (pointer: fine) {
            .cart-dropdown-container:hover .cart-dropdown-content {
                display: block;
                animation: cartDropdownFadeIn 0.25s ease;
            }
        }

        .cart-dropdown-header {
            padding: 15px 18px;
            border-bottom: 1px solid var(--border-subtle);
            font-weight: 600;
            font-size: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-dropdown-count {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 13px;
        }

        .cart-dropdown-items {
            max-height: 280px;
            overflow-y: auto;
            padding: 10px 0;
        }

        .cart-dropdown-items::-webkit-scrollbar {
            width: 6px;
        }

        .cart-dropdown-items::-webkit-scrollbar-track {
            background: var(--bg-elevated);
        }

        .cart-dropdown-items::-webkit-scrollbar-thumb {
            background: var(--border-strong);
            border-radius: 3px;
        }

        .cart-dropdown-empty {
            padding: 30px 18px;
            text-align: center;
            color: var(--text-faint);
            font-size: 14px;
        }

        .cart-dropdown-item {
            display: flex;
            align-items: center;
            padding: 12px 18px;
            gap: 12px;
            transition: background-color 0.2s ease;
        }

        .cart-dropdown-item:hover {
            background-color: rgba(210, 153, 34, 0.08);
        }

        .cart-dropdown-item-image {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            object-fit: cover;
            background: var(--bg-elevated);
            flex-shrink: 0;
        }

        .cart-dropdown-item-image-placeholder {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cart-dropdown-item-image-placeholder i {
            color: var(--text-muted);
            font-size: 20px;
        }

        .cart-dropdown-item-info {
            flex: 1;
            min-width: 0;
        }

        .cart-dropdown-item-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .cart-dropdown-item-details {
            font-size: 12px;
            color: var(--text-muted);
        }

        .cart-dropdown-item-price {
            font-weight: 600;
            color: var(--accent-on-light);
            font-size: 14px;
            white-space: nowrap;
        }

        .cart-dropdown-footer {
            padding: 15px 18px;
            border-top: 1px solid var(--border-subtle);
            background: rgba(0, 0, 0, 0.2);
        }

        .cart-dropdown-subtotal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .cart-dropdown-subtotal span:last-child {
            font-weight: 700;
            color: var(--accent-on-light);
            font-size: 17px;
        }

        .cart-dropdown-checkout-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
            color: var(--text-on-accent);
            text-align: center;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
            margin-bottom: 8px;
        }

        .cart-dropdown-checkout-btn:hover {
            background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
            color: var(--text-on-accent);
        }

        .cart-dropdown-continue-btn {
            display: block;
            width: 100%;
            padding: 10px;
            background: transparent;
            color: var(--text-muted);
            text-align: center;
            border: 1px solid var(--border-strong);
            border-radius: 8px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .cart-dropdown-continue-btn:hover {
            background: var(--bg-elevated);
            color: var(--text-primary);
            border-color: var(--text-muted);
        }

        /* Cart button animation when item added */
        @keyframes cartBounce {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-4px); }
            50% { transform: translateY(0); }
            75% { transform: translateY(-2px); }
        }

        .cart-btn.bounce {
            animation: cartBounce 0.4s ease;
        }

        /* Cart count pulse animation */
        @keyframes countPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        .cart-count.pulse {
            animation: countPulse 0.3s ease;
        }

        /* Footer - Now using includes/footer.html */

        /* Responsive */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            .featured-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            /* Force 2 columns on mobile */
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .featured-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .category-title {
                font-size: 18px;
                margin-bottom: 16px;
            }

            .featured-title {
                font-size: 26px;
            }

            .header-right {
                flex-direction: row;
                gap: 10px;
            }

            /* Compact product cards for mobile */
            .product-card .product-info {
                padding: 10px;
            }

            .product-card .product-name {
                font-size: 12px;
                margin-bottom: 6px;
            }

            .product-card .product-description {
                display: none;
            }

            .product-card .product-price {
                margin-bottom: 8px;
            }

            .product-card .price-current {
                font-size: 14px;
            }

            .product-card .price-original {
                font-size: 11px;
            }

            .product-card .product-actions {
                padding: 0 10px 10px 10px;
                gap: 6px;
            }

            .product-card .btn-view-details,
            .product-card .btn-add-cart {
                padding: 6px 8px;
                font-size: 11px;
            }

            /* Simplify cart button to icon only on mobile */
            .product-card .btn-add-cart {
                flex: 0 0 auto;
                padding: 6px 10px;
            }
        }

        /* FINAL OVERRIDE - Must be last to override Bootstrap */
        .product-card,
        .product-card *,
        .product-card:hover,
        .product-card:hover *,
        .product-card button,
        .product-card button:hover,
        .product-card button:focus,
        .product-card button:active,
        .product-card .btn-view-details,
        .product-card .btn-view-details:hover,
        .product-card .btn-view-details:focus,
        .product-card .btn-add-cart,
        .product-card .btn-add-cart:hover,
        .product-card .btn-add-cart:focus {
            cursor: pointer !important;
        }

        @keyframes promoFadeOut {
            from { opacity: 1; transform: translateY(0); }
            to { opacity: 0; transform: translateY(-10px); }
        }

/* ============================================
   Hoisted from inline style="" attributes
   (storefront.html modularization, 2026-05-04)
   ============================================ */

/* Login dropdown chevron sizing */
.cc-login-chevron {
    margin-left: 5px;
    font-size: 0.8em;
}

/* Search results — "back to all products" link */
.cc-search-back-wrap {
    text-align: center;
    margin-top: 20px;
}

.cc-search-back-link {
    color: var(--accent-on-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Product image placeholder (no image_url) */
.product-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-empty-icon {
    font-size: 48px;
    color: var(--text-faint);
}

/* Single full-width view-details button (linked products) */
.btn-view-details-full {
    width: 100%;
}

/* Empty-state CTA (no products / no search results) */
.empty-state-action-wrap {
    margin-top: 30px;
}

.empty-state-action {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
    color: var(--text-on-accent);
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}
