.elementor-83 .elementor-element.elementor-element-3ac015cc{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS *//* --- 1. GLOBAL CART CONTAINER --- */
/* Force the background to Navy if not already set */
.woocommerce-cart {
    background-color: #1A2B4C;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

/* --- 2. THE PRODUCT TABLE (GLASS EFFECT) --- */
.woocommerce-cart-form__contents {
    border-collapse: separate !important;
    border-spacing: 0 15px !important; /* Spacing between rows */
    border: none !important;
}

/* Style each Row as a floating glass card */
.woocommerce-cart-form__contents tbody tr.cart_item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-cart-form__contents tbody tr.cart_item:hover {
    transform: translateX(10px); /* Slide right slightly on hover */
    background: rgba(255, 255, 255, 0.06);
    border-color: #D4AF37; /* Gold Border Glow */
}

/* Remove default table borders */
.woocommerce-cart-form__contents td, 
.woocommerce-cart-form__contents th {
    border: none !important;
    padding: 20px !important;
    vertical-align: middle;
}

/* Header Text (Product, Price, etc.) */
.woocommerce-cart-form__contents th {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #D4AF37; /* Gold Headers */
}

/* --- 3. PRODUCT DETAILS --- */
/* Product Name */
.product-name a {
    color: #ffffff !important;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.product-name a:hover {
    color: #D4AF37 !important;
}

/* Price & Subtotal */
.product-price .amount, 
.product-subtotal .amount {
    color: #2E8B57 !important; /* Emerald for Money */
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

/* Remove Item (X) Button */
a.remove {
    color: #ff4444 !important;
    background: transparent !important;
    font-size: 20px !important;
    font-weight: 300 !important;
}
a.remove:hover {
    background: transparent !important;
    color: #ffffff !important;
    transform: scale(1.2);
}

/* --- 4. QUANTITY INPUT (Futuristic Pill) --- */
.woocommerce .quantity .qty {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 50px !important;
    width: 60px !important;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce .quantity .qty:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* --- 5. CART TOTALS PANEL (The Floating Box) --- */
.cart-collaterals .cart_totals {
    background: rgba(26, 43, 76, 0.8) !important; /* Darker Navy */
    backdrop-filter: blur(20px);
    border: 1px solid #D4AF37; /* Gold Border */
    padding: 30px !important;
    border-radius: 0px !important; /* Sharp industrial corners */
    width: 100% !important;
    float: none !important; /* Stack nicely */
    margin-top: 30px;
    position: relative;
}

.cart-collaterals h2 {
    color: #D4AF37 !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Totals Text */
.cart-collaterals table th {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.cart-collaterals table td .amount {
    color: #D4AF37 !important;
    font-size: 22px;
    font-weight: bold;
}

/* --- 6. BUTTONS (The "Update" and "Checkout") --- */

/* "Proceed to Checkout" - The Hero Button */
.checkout-button {
    background-color: #D4AF37 !important;
    color: #1A2B4C !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 20px 40px !important;
    border-radius: 0 !important;
    transition: all 0.4s ease !important;
    width: 100%;
    margin-top: 20px;
}

.checkout-button:hover {
    background-color: #ffffff !important;
    color: #1A2B4C !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); /* Massive Glow */
    transform: translateY(-3px);
}

/* "Update Cart" & Coupon Button - Minimalist */
button[name="update_cart"], 
button[name="apply_coupon"] {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    transition: all 0.3s;
}

button[name="update_cart"]:hover, 
button[name="apply_coupon"]:hover {
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

/* Coupon Input Field */
#coupon_code {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
    width: 150px !important;
    padding: 10px !important;
}




/* --- MOBILE CART TRANSFORMATION (App Style) --- */
@media screen and (max-width: 768px) {

    /* 1. Hide the Table Headers (Product, Price, Quantity titles) */
    .woocommerce-cart-form__contents thead {
        display: none;
    }

    /* 2. Turn the Table Row into a "Card" */
    .woocommerce-cart-form__contents tbody tr.cart_item {
        display: grid;
        grid-template-columns: 80px 1fr; /* Image (Left) | Details (Right) */
        grid-template-areas: 
            "image title"
            "image price"
            "image quantity";
        gap: 10px 20px;
        padding: 20px !important;
        margin-bottom: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px;
        position: relative; /* For positioning the X button */
        background: rgba(255, 255, 255, 0.03); /* Maintain Glass Effect */
    }

    /* 3. Assign Grid Areas to Elements */
    
    /* Product Image */
    .woocommerce-cart-form__contents td.product-thumbnail {
        grid-area: image;
        display: block !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .product-thumbnail img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    /* Product Name */
    .woocommerce-cart-form__contents td.product-name {
        grid-area: title;
        display: block !important;
        padding: 0 !important;
    }
    .product-name a {
        font-size: 16px !important; /* Readable size */
        line-height: 1.2;
    }

    /* Product Price */
    .woocommerce-cart-form__contents td.product-price {
        grid-area: price;
        display: block !important;
        padding: 0 !important;
        font-size: 14px;
        opacity: 0.8;
    }

    /* Quantity Input */
    .woocommerce-cart-form__contents td.product-quantity {
        grid-area: quantity;
        display: block !important;
        padding: 0 !important;
    }
    /* Make the input easier to tap */
    .woocommerce .quantity .qty {
        width: 50px !important;
        height: 35px !important;
        font-size: 16px !important;
    }

    /* Subtotal (Hide it on mobile cards to save space, user sees total at bottom) */
    .woocommerce-cart-form__contents td.product-subtotal {
        display: none !important;
    }

    /* 4. The "Remove" (X) Button - Position Absolute */
    .woocommerce-cart-form__contents td.product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        display: block !important;
        padding: 0 !important;
        width: auto !important;
    }
    a.remove {
        font-size: 24px !important;
        line-height: 1 !important;
    }

    /* 5. Fix the "Update Cart" & Coupon Section */
    .actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

    .coupon {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    #coupon_code {
        width: 100% !important; /* Full width input */
        padding: 15px !important;
        text-align: center;
    }

    button[name="apply_coupon"], 
    button[name="update_cart"] {
        width: 100% !important; /* Full width buttons */
        padding: 15px !important;
    }

    /* 6. Fix the Cart Totals Box */
    .cart-collaterals .cart_totals {
        width: 100% !important;
        padding: 20px !important;
        margin-top: 30px;
    }
    
    .checkout-button {
        font-size: 16px !important;
        padding: 18px !important;
    }
}/* End custom CSS */