.elementor-3735 .elementor-element.elementor-element-57c1f6df{--display:flex;}/* Start custom CSS for container, class: .elementor-element-57c1f6df *//* ==========================================================================
   Modern Glassmorphism Cart Overhaul (Pure CSS / No JS Required)
   ========================================================================== */

/* --- 1. Native CSS Entrance Animations --- */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideSideFade {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- 2. Layout Container (Flexbox for Desktop) --- */
@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        display: flex;
        flex-wrap: nowrap;
        gap: 3rem;
        align-items: flex-start;
    }
    
    .woocommerce-cart .woocommerce-cart-form {
        flex: 1 1 65%;
    }
    
    .woocommerce-cart .cart-collaterals {
        flex: 1 1 35%;
        width: 100%;
    }
}

/* --- 3. Table Reset & Glassmorphic Product Cards --- */
.woocommerce table.shop_table {
    border: none;
    border-collapse: separate;
    border-spacing: 0 15px; 
    background: transparent;
}

.woocommerce table.shop_table th {
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #666;
    padding: 10px 20px;
    font-weight: 600;
}

.woocommerce table.shop_table tbody tr.cart_item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    
    /* Native CSS Animation Setup */
    opacity: 0; 
    animation: slideUpFade 0.6s ease-out forwards;
}

/* Staggered animation delays for the first 6 cart items */
.woocommerce table.shop_table tbody tr.cart_item:nth-child(1) { animation-delay: 0.1s; }
.woocommerce table.shop_table tbody tr.cart_item:nth-child(2) { animation-delay: 0.2s; }
.woocommerce table.shop_table tbody tr.cart_item:nth-child(3) { animation-delay: 0.3s; }
.woocommerce table.shop_table tbody tr.cart_item:nth-child(4) { animation-delay: 0.4s; }
.woocommerce table.shop_table tbody tr.cart_item:nth-child(5) { animation-delay: 0.5s; }
.woocommerce table.shop_table tbody tr.cart_item:nth-child(n+6) { animation-delay: 0.6s; }

.woocommerce table.shop_table tbody tr.cart_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.woocommerce table.shop_table td {
    border-top: none;
    padding: 20px;
    vertical-align: middle;
}

.woocommerce table.shop_table td.product-thumbnail img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- 4. Cart Totals Box --- */
.woocommerce .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    
    /* Native CSS Animation Setup */
    opacity: 0;
    animation: slideSideFade 0.8s ease-out 0.4s forwards;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 15px;
}

/* --- 5. Modern Checkout Button --- */
.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button {
    background: linear-gradient(135deg, #7c3aed, #4f46e5); 
    border-radius: 50px;
    padding: 16px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
    background: linear-gradient(135deg, #6d28d9, #4338ca);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}/* End custom CSS */