.elementor-18 .elementor-element.elementor-element-66caaff > .elementor-container{max-width:1320px;min-height:450px;}.elementor-18 .elementor-element.elementor-element-66caaff{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-18 .elementor-element.elementor-element-66caaff > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-18 .elementor-element.elementor-element-909e994{--update-cart-automatically-display:none;--sections-title-color:var( --e-global-color-primary );--links-normal-color:var( --e-global-color-primary );--links-hover-color:var( --e-global-color-secondary );}/* Start custom CSS for woocommerce-cart, class: .elementor-element-909e994 *//* ==========================================================================
   BloomPicks Glassmorphism Cart Design
   Brand: #002059 (Deep Navy) | #E66C01 (Orange)
   Style: Premium Glassmorphism
   ========================================================================== */

/* --- 1. Container & Glass Backgrounds --- */
.woocommerce-cart .woocommerce {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #ffffff;
    position: relative;
}

/* Global Table Reset */
.woocommerce-cart table.shop_table {
    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 20px !important; /* Spacing between floating glass cards */
    background: transparent !important;
    margin: 0 0 40px 0 !important;
    width: 100%;
}

/* Table Headers */
.woocommerce-cart table.shop_table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0, 32, 89, 0.8); /* Navy opacity */
    font-weight: 700;
    padding: 0 25px 10px 25px;
    border: none !important;
}

/* --- 2. Cart Items: The Glass Cards --- */
.woocommerce-cart table.shop_table tbody tr.cart_item {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 32, 89, 0.15);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td {
    background: rgba(255, 255, 255, 0.75); /* Semi-transparent white for glass effect */
    border-top: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
    vertical-align: middle;
    padding: 25px 15px;
}

/* Rounded Glass Edges for Rows */
.woocommerce-cart table.shop_table tbody tr.cart_item td:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.6) !important;
    padding-left: 30px;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.6) !important;
    padding-right: 30px;
}

/* Hover Float Effect */
.woocommerce-cart table.shop_table tbody tr.cart_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(0, 32, 89, 0.2);
}
.woocommerce-cart table.shop_table tbody tr.cart_item:hover td {
    background: rgba(255, 255, 255, 0.9); /* Less transparent on hover */
}

/* --- 3. Product Elements Styling --- */

/* Remove (X) Icon */
.woocommerce-cart table.shop_table a.remove {
    color: rgba(0, 32, 89, 0.4) !important;
    background: transparent !important;
    font-size: 22px;
    transition: all 0.3s ease;
}
.woocommerce-cart table.shop_table a.remove:hover {
    color: #E66C01 !important;
    transform: rotate(90deg);
    background: rgba(230, 108, 1, 0.1) !important;
    border-radius: 50%;
}

/* Thumbnail Image */
.woocommerce-cart table.shop_table .product-thumbnail img {
    border-radius: 15px;
    width: 90px !important;
    height: 90px !important;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}
.woocommerce-cart table.shop_table tr.cart_item:hover .product-thumbnail img {
    border-color: #E66C01;
    transform: scale(1.05);
}

/* Product Name */
.woocommerce-cart table.shop_table .product-name a {
    color: #002059;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.woocommerce-cart table.shop_table .product-name a:hover {
    color: #E66C01;
}

/* Prices */
.woocommerce-cart table.shop_table .product-price .amount, 
.woocommerce-cart table.shop_table .product-subtotal .amount {
    color: #002059;
    font-weight: 600;
    font-size: 16px;
}

/* Quantity Input - Glass Pill */
.woocommerce-cart .quantity {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 32, 89, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(4px);
}
.woocommerce-cart .quantity .qty {
    width: 50px;
    background: transparent;
    border: none !important;
    text-align: center;
    color: #002059;
    font-weight: 800;
    padding: 6px 0;
    -moz-appearance: textfield;
}
.woocommerce-cart .quantity .qty:focus {
    color: #E66C01;
    outline: none;
}

/* --- 4. Actions (Coupon & Update) --- */
.woocommerce-cart table.shop_table tr td.actions {
    background: transparent !important;
    border: none !important;
    padding: 30px 0 !important;
    backdrop-filter: none;
    box-shadow: none;
}
.woocommerce-cart table.shop_table tr td.actions .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Coupon Input */
.woocommerce-cart table.shop_table tr td.actions .coupon .input-text {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 32, 89, 0.1) !important;
    border-radius: 30px !important;
    padding: 15px 25px !important;
    min-width: 220px;
    color: #002059;
    backdrop-filter: blur(5px);
    font-size: 14px;
    transition: all 0.3s ease;
}
.woocommerce-cart table.shop_table tr td.actions .coupon .input-text:focus {
    background: #fff;
    border-color: #E66C01 !important;
    box-shadow: 0 0 15px rgba(230, 108, 1, 0.2);
}

/* Buttons (Glassmorphism Style) */
.woocommerce-cart .button,
.woocommerce-cart input.button,
.woocommerce-cart button.button {
    background: linear-gradient(135deg, #002059 0%, #003380 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 30px !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 32, 89, 0.3);
    transition: all 0.3s ease !important;
    backdrop-filter: blur(4px);
}

.woocommerce-cart .button:hover,
.woocommerce-cart input.button:hover,
.woocommerce-cart button.button:hover {
    background: linear-gradient(135deg, #E66C01 0%, #ff8c24 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 108, 1, 0.4);
    border-color: rgba(255,255,255,0.3) !important;
}

/* Ghost Button for 'Update Cart' */
.woocommerce-cart button[name="update_cart"] {
    background: rgba(255,255,255,0.5) !important;
    color: #002059 !important;
    border: 1px solid #002059 !important;
    box-shadow: none;
}
.woocommerce-cart button[name="update_cart"]:hover {
    background: #002059 !important;
    color: #fff !important;
}

/* --- 5. Cart Totals (Floating Glass Panel) --- */
.cart-collaterals {
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
}

.cart-collaterals .cart_totals {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.85); /* Milky glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 32, 89, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cart-collaterals .cart_totals h2 {
    font-size: 24px;
    color: #002059;
    border-bottom: 2px solid rgba(0, 32, 89, 0.1);
    padding-bottom: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.cart-collaterals .cart_totals table.shop_table {
    margin: 0 !important;
    border-collapse: collapse !important;
}

.cart-collaterals .cart_totals table.shop_table tr th,
.cart-collaterals .cart_totals table.shop_table tr td {
    background: transparent !important;
    border-top: 1px solid rgba(0, 32, 89, 0.05) !important;
    padding: 20px 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cart-collaterals .cart_totals table.shop_table tr th {
    color: #002059;
    font-weight: 600;
    text-align: left;
}

.cart-collaterals .cart_totals table.shop_table tr td {
    text-align: right;
    color: #555;
}

.cart-collaterals .cart_totals .order-total .amount {
    font-size: 28px;
    color: #E66C01;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(230, 108, 1, 0.2);
}

/* Checkout Button - Premium Gradient */
.wc-proceed-to-checkout {
    margin-top: 30px;
}
.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #002059 0%, #004ec2 100%) !important;
    font-size: 18px !important;
    padding: 20px !important;
    border-radius: 50px !important;
}
.wc-proceed-to-checkout .checkout-button:hover {
    background: linear-gradient(135deg, #E66C01 0%, #ff8c24 100%) !important;
    box-shadow: 0 15px 30px rgba(230, 108, 1, 0.4);
}

/* --- 6. Responsive Design (Mobile) --- */
@media screen and (max-width: 768px) {
    .woocommerce-cart table.shop_table thead { display: none; }

    /* Mobile Glass Cards */
    .woocommerce-cart table.shop_table tbody tr.cart_item {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255,255,255,0.5);
        margin-bottom: 25px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .woocommerce-cart table.shop_table tbody tr.cart_item td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none !important;
        padding: 8px 0;
        background: transparent !important;
        width: 100%;
        text-align: right;
    }
    
    .woocommerce-cart table.shop_table tbody tr.cart_item td:first-child,
    .woocommerce-cart table.shop_table tbody tr.cart_item td:last-child {
        padding: 8px 0;
        border-radius: 0;
        border: none !important;
    }

    /* Data Labels */
    .woocommerce-cart table.shop_table tbody tr.cart_item td::before {
        content: attr(data-title);
        font-weight: 700;
        color: #002059;
        float: left;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* Mobile Adjustments */
    .woocommerce-cart table.shop_table .product-thumbnail {
        justify-content: center;
        margin-bottom: 15px;
    }
    .woocommerce-cart table.shop_table .product-thumbnail::before { display: none; }
    
    .woocommerce-cart table.shop_table .product-remove {
        position: absolute;
        top: 15px;
        right: 15px;
        width: auto !important;
    }
    .woocommerce-cart table.shop_table .product-remove::before { display: none; }

    .woocommerce-cart table.shop_table tr td.actions {
        flex-direction: column;
        gap: 15px;
    }
    .woocommerce-cart table.shop_table tr td.actions .coupon {
        width: 100%;
        flex-direction: column;
    }
    .woocommerce-cart table.shop_table tr td.actions .coupon .input-text {
        width: 100%;
    }
    .woocommerce-cart .button {
        width: 100%;
    }
}/* End custom CSS */