        /* Cart Sidebar Styles */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: #fff;
            z-index: 99999;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            padding: 20px;
        }

        .cart-sidebar.open {
            right: 0;
        }

        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99998;
            display: none;
            transition: all 0.3s;
        }

        .cart-overlay.open {
            display: block;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .cart-header h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
        }

        .close-cart-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 0 10px;
        }

        .cart-body {
            flex-grow: 1;
            overflow-y: auto;
        }

        .clear-cart-text {
            font-size: 14px;
            color: #888;
            margin-bottom: 15px;
            cursor: pointer;
            text-decoration: underline;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .cart-item-image img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-details h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .cart-item-details .price {
            font-size: 14px;
            color: #e63946;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .cart-meta p {
            font-size: 12px;
            color: #666;
            margin-bottom: 2px;
        }

        .qty-control {
            border: 1px solid #ddd;
            border-radius: 4px;
            display: flex;
            align-items: center;
            width: fit-content;
        }

        .qty-control button {
            background: none;
            border: none;
            padding: 2px 10px;
            font-size: 16px;
            cursor: pointer;
        }

        .qty-control span {
            padding: 0 5px;
            font-size: 14px;
            font-weight: 600;
        }

        .remove-btn {
            font-size: 12px;
            color: #888;
            text-decoration: underline;
            cursor: pointer;
            background: none;
            border: none;
        }

        .cart-separator {
            border: 0;
            border-top: 1px solid #eee;
            margin: 15px 0;
        }

        .cart-footer {
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: auto;
        }

        .subtotal {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .checkout-btn {
            background-color: #E3000F;
            color: white;
            border-radius: 4px;
            font-weight: 700;
            display: block;
            text-align: center;
            padding: 12px;
            text-decoration: none;
        }

        .checkout-btn:hover {
            color: white;
            background-color: #c0000a;
        }

        .view-cart-btn {
            display: block;
            text-align: center;
            color: #333;
            text-decoration: underline;
            font-weight: 600;
            margin-top: 10px;
        }

        @media (max-width: 450px) {
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
        }

        @media (max-width: 1199px) {

            /* Mobile Header Optimization */
            .header-main {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            /* Left: Hamburger */
            .mobile-header-left {
                order: 1;
                justify-content: flex-start !important;
                width: auto;
            }

            /* Center: Logo */
            .mean__menu-wrapper {
                order: 2;
                flex-grow: 1;
                display: flex;
                justify-content: center;
                width: auto;
            }

            .main-menu .logo {
                margin: 0;
            }

            /* Right: Cart */
            .mobile-header-right {
                order: 3;
                width: auto;
                justify-content: flex-end !important;
            }

            /* Remove margins that might affect centering */
            .header-right {
                margin: 0 !important;
            }
        }


        /* FONTS */

        @font-face {
    font-family: 'Domaine Display';
    src: url('../assets/fonts/TestDomaineDisplayCondensed-Regular-BF66174a213eae4.woff') format('woff'),
         url('../assets/fonts/TestDomaineDisplayCondensed-RegularItalic-BF66174a20c5ca7.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

