        /* FONT FAMILY CORRECTIONS */
        body {
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            background-color: #fafbfc;
            color: #2b2b2b;
        }

        .text-serif {
            font-family: 'Playfair Display', serif !important;
        }

        .text-crimson {
            color: #990000;
        }

        .text-xs {
            font-size: 0.7rem;
        }

        .text-sm {
            font-size: 0.85rem;
        }

        /* NAVIGATION BAR */
        .logo-box {
            background-color: #0d1b2a;
            color: #ffffff;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            border-radius: 4px;
        }

        .tracking-wide {
            letter-spacing: 1px;
        }

        .tracking-widest {
            letter-spacing: 2px;
        }

        .search-container {
            width: 100%;
            max-width: 380px;
            position: relative;
        }

        .badge-cart {
            position: absolute;
            top: -8px;
            right: 2px;
            background-color: #990000;
            color: white;
            font-size: 0.65rem;
            padding: 2px 5px;
            border-radius: 50%;
        }

        .btn-account {
            border-color: #eaeaea;
            color: #333;
            font-weight: 500;
        }

        .btn-account:hover {
            background-color: #990000;
            border-color: #990000;
            color: #fff;
        }

        /* HERO & CSS ART BACKGROUND (Replaces missing image file) */
        .hero-section {
            background: #ffffff;
            min-height: 380px;
            position: relative;
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            color: #0d1b2a;
        }

        .title-underline {
            width: 45px;
            height: 4px;
            background-color: #990000;
        }

        /* Pure CSS Graphic mimicking the right side layout background element */
        .hero-bg-graphic {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 450px;
            height: 320px;
            pointer-events: none;
        }

        .graphic-circle {
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
            right: 40px;
            top: 20px;
            z-index: 1;
        }

        .graphic-dots {
            position: absolute;
            background-image: radial-gradient(#e5e7eb 2px, transparent 2px);
            background-size: 16px 16px;
            width: 160px;
            height: 160px;
            left: 20px;
            bottom: 10px;
            z-index: 2;
        }

        /* CATEGORY CARDS */
        .category-card {
            border-radius: 20px !important;
            background-color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.06) !important;
        }

        .icon-wrapper {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .circle-orange {
            background-color: #fff5f5;
        }

        .arrow-btn {
            width: 40px;
            height: 40px;
            background-color: #990000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .arrow-btn:hover {
            color: #fff;
            opacity: 0.9;
        }

        .category-card .card-title {
            font-weight: 700;
            font-size: 1.75rem;
            color: #0d1b2a;
        }

        .card-underline {
            width: 30px;
            height: 3px;
            background-color: #990000;
        }

        /* Custom list style bullets */
        .genre-list li {
            font-size: 0.9rem;
            color: #4a5568;
            margin-bottom: 0.7rem;
            position: relative;
            padding-left: 15px;
        }

        .genre-list li::before {
            content: "•";
            color: #990000;
            font-weight: bold;
            display: inline-block;
            width: 15px;
            margin-left: -15px;
        }

        .border-dashed {
            border-top: 1px dashed #e2e8f0;
            opacity: 1;
        }

        .btn-view-more {
            border: 1px solid #ffcccc;
            color: #990000;
            padding: 10px 32px;
            font-weight: 600;
            font-size: 0.85rem;
            background-color: #fff;
            transition: all 0.2s;
        }

        .btn-view-more:hover {
            background-color: #990000;
            color: #fff;
            border-color: #990000;
        }

        /* VALUE PROPOSITION BAR */
        .container-features {
            border-radius: 16px;
            background-color: #fff;
        }

        .feature-icon {
            width: 55px;
            height: 55px;
            flex-shrink: 0;
            background-color: #fff5f5 !important;
        }

        .feature-box h5 {
            font-size: 1.05rem;
            color: #0d1b2a;
        }

        @media(max-width: 991px) {
            .search-container {
                max-width: 100%;
            }
            .hero-bg-graphic {
                display: none;
            }
        }
