:root {
            --cb-yellow: #ff6a00; /* Brighter, C&B specific yellow */
            --cb-black: #111111;
            --cb-gray-light: #f4f4f4;
            --cb-text: #212529;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--cb-text);
            background-color: #fff;
        }

        /* Typography overrides */
        h1, h2, h3, h4, .navbar-brand, .btn {
            font-family: 'Chakra Petch', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Utilities */
        .bg-yellow { background-color: var(--cb-yellow); }
        .text-yellow { color: var(--cb-yellow); }
        .fw-800 { font-weight: 800; }
        
        /* Squared aesthetics (Cars & Bids style) */
        .btn, .card, .form-control, .img-wrapper {
            border-radius: 0 !important; 
        }

        /* Header & Nav */
        .announcement-bar {
            background-color: var(--cb-black);
            color: #fff;
            font-size: 12px;
            padding: 8px 0;
            font-weight: 700;
            letter-spacing: 1px;
        }
        .navbar {
            padding: 20px 0;
            background: #fff;
            border-bottom: 2px solid var(--cb-black);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--cb-black);
        }
        .nav-link {
            font-weight: 500;
            color: var(--cb-black);
            font-size: 0.9rem;
            text-transform: uppercase;
            margin: 0 10px;
        }
        .nav-link:hover { text-decoration: underline; }

        /* Hero */
        .hero {
            background-color: var(--cb-gray-light);
            padding: 80px 0;
            border-bottom: 1px solid #ddd;
            position: relative;
            overflow: hidden;
        }
        .hero-badge {
            background-color: var(--cb-yellow);
            color: var(--cb-black);
            padding: 5px 15px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Product Card - Shopify Style */
        .product-card {
            position: relative;
            cursor: pointer;
            margin-bottom: 40px;
        }
        .img-container {
            position: relative;
            background-color: #f0f0f0;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            margin-bottom: 15px;
        }
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        /* Zoom effect */
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        
        /* "Quick Add" Button hidden by default */
        .quick-add-btn {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--cb-black);
            color: white;
            border: none;
            padding: 12px;
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        .product-card:hover .quick-add-btn {
            transform: translateY(0);
        }

        .product-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--cb-black);
            text-decoration: none;
            display: block;
        }
        .product-price {
            font-family: 'Roboto', sans-serif;
            color: #555;
            font-size: 0.95rem;
        }

        /* Filter Tabs */
        .filter-tabs {
            border-bottom: 1px solid #eee;
            margin-bottom: 40px;
        }
        .filter-link {
            display: inline-block;
            padding: 15px 20px;
            color: #777;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            border-bottom: 3px solid transparent;
        }
        .filter-link.active {
            color: var(--cb-black);
            border-bottom: 3px solid var(--cb-yellow);
        }

        /* Newsletter */
        .newsletter-section {
            background-color: var(--cb-black);
            color: #fff;
            padding: 60px 0;
            text-align: center;
        }
        .newsletter-input {
            border: 2px solid #fff;
            background: transparent;
            color: #fff;
            padding: 12px;
        }
        .newsletter-input::placeholder { color: #aaa; }
        .btn-subscribe {
            background-color: var(--cb-yellow);
            color: var(--cb-black);
            border: 2px solid var(--cb-yellow);
            font-weight: 700;
            padding: 12px 30px;
        }
        .btn-subscribe:hover {
            background-color: #fff;
            border-color: #fff;
        }