.elementor-9 .elementor-element.elementor-element-25d26a{--display:flex;--margin-top:60px;--margin-bottom:60px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );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 );}body.elementor-page-9:not(.elementor-motion-effects-element-type-background), body.elementor-page-9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-color_6835b91020881 );}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS *//* ==============================================
   WOOCOMMERCE CART PAGE STYLING
   ============================================== */

/* Body & General Layout */
.woocommerce-cart .woocommerce {
    background-color: #f5f2ea;
    padding: 40px 20px;
}

.rey-cartPage-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .rey-cartPage-inner {
        grid-template-columns: 2fr 1fr;
    }
}

/* Cart Form Container */
.woocommerce-cart-formWrapper {
    background: #ffffff;
    border: 1px solid #cdc3b8;
    border-radius: 8px;
    padding: 30px;
}

/* Cart Table */
.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.shop_table thead th {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    padding: 15px 10px;
    border-bottom: 2px solid #cdc3b8;
    text-align: left;
    font-weight: 600;
}

.shop_table tbody tr {
    border-bottom: 1px solid #cdc3b8;
}

.shop_table tbody td {
    padding: 20px 10px;
    vertical-align: middle;
}

/* Product Name & Thumbnail */
.woocommerce-cart-form__cart-name {
    display: flex;
    gap: 15px;
    align-items: center;
}

.woocommerce-cart-form__cart-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #cdc3b8;
}

.woocommerce-mini-cart-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

/* Remove Button */
.remove {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    text-transform: uppercase;
    color: #80003b;
    text-decoration: none;
    margin-top: 10px;
}

.remove:hover {
    opacity: 0.7;
}

.remove svg {
    width: 14px;
    height: 14px;
}

/* Price */
.product-price,
.product-subtotal {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Quantity Controls */
.quantity {
    display: inline-block;
}

.rey-qtyField {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #cdc3b8;
    border-radius: 50px;
    padding: 5px;
    background: #fff;
}

.cartBtnQty-control {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f2ea;
    border: 1px solid #cdc3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cartBtnQty-control:not(.--disabled):hover {
    background: #80003b;
    border-color: #80003b;
    color: #fff;
}

.cartBtnQty-control.--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cartBtnQty-control svg {
    width: 14px;
    height: 14px;
}

.qty {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
}

/* Cart Actions */
.woocommerce-cart-form__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #cdc3b8;
}

.coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
}

.coupon label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #666;
}

.coupon input {
    flex: 1;
    max-width: 200px;
    padding: 12px 16px;
    border: 1px solid #cdc3b8;
    border-radius: 50px;
    font-size: 14px;
}

.coupon input:focus {
    outline: none;
    border-color: #80003b;
}

/* Buttons */
.button,
button[type="submit"] {
    padding: 12px 30px;
    background-color: #80003b;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.button:hover,
button[type="submit"]:hover {
    background-color: #660030;
    color: #ffffff;
}

.button:disabled,
button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Cart Totals */
.cart-collaterals {
    background: #ffffff;
    border: 1px solid #cdc3b8;
    border-radius: 8px;
    padding: 30px;
}

.cart_totals h2 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #cdc3b8;
}

.cart_totals .shop_table {
    margin-bottom: 20px;
}

.cart_totals .shop_table th {
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 0;
    font-weight: 600;
    color: #666;
}

.cart_totals .shop_table td {
    padding: 12px 0;
    text-align: right;
}

.cart_totals tr {
    border-bottom: 1px solid #cdc3b8;
}

.order-total th,
.order-total td {
    font-size: 16px;
    font-weight: 700;
    padding: 20px 0 !important;
}

/* Shipping Selection */
.woocommerce-shipping-methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-shipping-methods li {
    margin-bottom: 10px;
}

.woocommerce-shipping-methods label {
    font-size: 14px;
}

/* Pickup Location */
.pickup-location-address {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    padding: 10px;
    background: #f5f2ea;
    border-radius: 8px;
    border: 1px solid #cdc3b8;
}

.pickup-location-lookup {
    width: 100%;
    margin-top: 10px;
}

.woocommerce-shipping-contents small {
    font-size: 12px;
    color: #666;
}

/* Proceed to Checkout */
.wc-proceed-to-checkout {
    margin-top: 20px;
}

.checkout-button {
    width: 100%;
    text-align: center;
    padding: 16px 30px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop_table thead {
        display: none;
    }
    
    .shop_table tbody tr {
        display: block;
        margin-bottom: 20px;
        padding: 15px;
        background: #f5f2ea;
        border-radius: 8px;
    }
    
    .shop_table tbody td {
        display: block;
        text-align: left;
        padding: 10px 0;
        border: none;
    }
    
    .shop_table tbody td:before {
        content: attr(data-title) ": ";
        font-weight: 600;
        text-transform: uppercase;
        font-size: 12px;
        color: #666;
    }
    
    .product-name:before {
        display: none;
    }
    
    .woocommerce-cart-form__actions {
        flex-direction: column;
    }
    
    .coupon {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .coupon input {
        max-width: 100%;
    }
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    left: -9999px;
}/* End custom CSS */