:root {
            --primary-color: #982121;
            --primary-light: rgba(152, 33, 33, 0.1);
            --secondary-color: #f8f9fa;
            --dark-color: #212529;
            --light-color: #ffffff;
            --border-color: #e9ecef;
            --text-muted: #6c757d;
            --playfair: 'Playfair Display', serif;
            --poppins: 'Poppins', sans-serif;
        }
        
        body {
            font-family: var(--poppins);
            background-color: #fafafa;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--playfair);
            font-weight: 600;
        }
        
        .cart-header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px 8px 0 0 !important;
        }
        
        .cart-container {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .cart-item {
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item:hover {
            background-color: var(--primary-light);
        }
        
        .cart-item-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cart-item-details {
            flex: 1;
            padding: 0 1.5rem;
        }
        
        .cart-item-title {
            font-family: var(--playfair);
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            font-size: 1.1rem;
        }
        
        .cart-item-price {
            font-weight: 500;
            color: var(--primary-color);
            font-size: 1rem;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin: 0.5rem 0;
        }
        
        .quantity-btn {
            width: 32px;
            height: 32px;
            border: 1px solid var(--border-color);
            background: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.2s;
        }
        
        .quantity-btn:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .quantity-input {
            width: 100px;
            text-align: center;
            margin: 0 5px;
            border: 1px solid var(--border-color);
            height: 32px;
            font-weight: 500;
        }
        
        .summary-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .summary-header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px 8px 0 0;
        }
        
        .btn-checkout {
            background-color: var(--primary-color);
            color: white;
            font-weight: 500;
            padding: 12px;
            letter-spacing: 0.5px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .btn-checkout:hover {
            background-color: #7a1a1a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(152, 33, 33, 0.3);
        }
        
        .btn-outline-secondary {
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .btn-outline-secondary:hover {
            transform: translateY(-2px);
        }
        
        .empty-cart {
            padding: 3rem;
            text-align: center;
        }
        
        .empty-cart-icon {
            font-size: 5rem;
            color: var(--text-muted);
            opacity: 0.3;
            margin-bottom: 1.5rem;
        }
        
        .empty-cart-text {
            font-family: var(--playfair);
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        
        .cart-total-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px dashed var(--border-color);
        }
        
        .cart-total-item:last-child {
            border-bottom: none;
        }
        
        .grand-total {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .remove-item {
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s;
            font-size: 1.1rem;
        }
        
        .remove-item:hover {
            color: var(--primary-color);
            transform: scale(1.1);
        }
        
        .free-delivery {
            color: #28a745;
            font-weight: 500;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            font-size: 0.9rem;
        }
        
        .breadcrumb-item.active {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .alert-info {
            background-color: rgba(13, 110, 253, 0.1);
            border: none;
            border-radius: 6px;
        }
        
        @media (max-width: 768px) {
            .cart-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.25rem;
            }
            
            .cart-item-img {
                width: 100%;
                height: auto;
                max-height: 200px;
                margin-bottom: 1rem;
            }
            
            .cart-item-details {
                padding: 0;
                width: 100%;
            }
            
            .quantity-selector {
                justify-content: space-between;
                width: 100%;
                margin: 1rem 0;
            }
            
            .mobile-flex {
                display: flex;
                justify-content: space-between;
                width: 100%;
                align-items: center;
            }
        }