/* Cart Summary Styles */
    .cart-summary-section {
        background: linear-gradient(135deg, #2C2B29 0%, #1a1918 100%);
        border: 2px solid #D0993D;
        border-radius: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
        overflow: hidden;
        animation: slideIn 0.3s ease;
    }

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

    .cart-summary-header {
        background: linear-gradient(135deg, rgba(208, 153, 61, 0.3), rgba(255, 215, 0, 0.2));
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(208, 153, 61, 0.3);
    }

    .cart-summary-header h5 {
        margin: 0;
        color: #FFD700;
        font-weight: 600;
    }

    .cart-summary-header .btn-clear-cart {
        background: transparent;
        border: 1px solid #dc3545;
        color: #dc3545;
        padding: 5px 12px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 12px;
        transition: all 0.3s;
    }

    .cart-summary-header .btn-clear-cart:hover {
        background: #dc3545;
        color: #fff;
    }

    .cart-summary-body {
        padding: 20px;
    }

    #cart-items-list {
        max-height: 300px;
        overflow-y: auto;
        margin-bottom: 15px;
    }

    .cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin-bottom: 10px;
        transition: all 0.3s;
    }

    .cart-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .cart-item .item-info {
        flex: 1;
    }

    .cart-item .item-name {
        color: #fff;
        font-weight: 500;
        font-size: 14px;
    }

    .cart-item .item-price {
        color: #aaa;
        font-size: 12px;
    }

    .cart-item .item-quantity {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cart-item .item-qty-badge {
        background: linear-gradient(135deg, #D0993D, #FFD700);
        color: #000;
        padding: 2px 10px;
        border-radius: 15px;
        font-weight: bold;
        font-size: 12px;
    }

    .cart-item .item-subtotal {
        color: #FFD700;
        font-weight: bold;
        font-size: 14px;
        min-width: 80px;
        text-align: right;
    }

    .cart-item .btn-remove-item {
        background: transparent;
        border: none;
        color: #dc3545;
        cursor: pointer;
        padding: 5px;
        margin-left: 10px;
        transition: all 0.3s;
    }

    .cart-item .btn-remove-item:hover {
        color: #ff6b6b;
        transform: scale(1.2);
    }

    .cart-summary-totals {
        border-top: 1px solid rgba(208, 153, 61, 0.3);
        padding-top: 15px;
    }

    .cart-summary-totals .summary-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        color: #ddd;
    }

    .cart-summary-totals .summary-row.total {
        border-top: 2px solid #FFD700;
        margin-top: 10px;
        padding-top: 15px;
        font-size: 18px;
        font-weight: bold;
        color: #FFD700;
    }

    .cart-summary-footer {
        padding: 0 20px 15px;
    }

    /* Scrollbar for cart items */
    #cart-items-list::-webkit-scrollbar {
        width: 6px;
    }

    #cart-items-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    #cart-items-list::-webkit-scrollbar-thumb {
        background: rgba(208, 153, 61, 0.5);
        border-radius: 10px;
    }

    #cart-items-list::-webkit-scrollbar-thumb:hover {
        background: rgba(208, 153, 61, 0.8);
    }