.elementor-55 .elementor-element.elementor-element-e6ce160{--display:flex;}/* Start custom CSS for container, class: .elementor-element-e6ce160 *//* ===== GENERAL LAYOUT ===== */
.woocommerce-cart {
    max-width: 1200px;
    margin: auto;
}

/* ===== TABLE STYLING ===== */
.woocommerce-cart table.shop_table {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Header */
.woocommerce-cart table.shop_table th {
    background: #f8f6f4;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Rows */
.woocommerce-cart table.shop_table td {
    border: none;
    padding: 18px 12px;
    vertical-align: middle;
}

/* Product name */
.woocommerce-cart .product-name a {
    font-weight: 500;
    color: #3a2b22;
}

/* Price */
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    font-weight: 600;
    color: #000;
}

/* Remove icon */
.woocommerce-cart .product-remove a {
    color: #b08b6a;
    font-size: 18px;
}

/* ===== QUANTITY INPUT ===== */
.woocommerce-cart input.qty {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 6px;
}

/* ===== COUPON SECTION ===== */
.coupon {
    display: flex;
    gap: 10px;
}

.coupon input {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px;
}

/* ===== BUTTONS ===== */
button,
.woocommerce a.button,
.woocommerce button.button {
    background: #6b3e2e;
    color: #fff;
    border-radius: 30px;
    padding: 12px 20px;
    transition: 0.3s ease;
}

button:hover,
.woocommerce a.button:hover {
    background: #4e2b1f;
}

/* Proceed to checkout button */
.woocommerce-cart .checkout-button {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    background: #6b3e2e;
    border-radius: 40px;
    padding: 16px;
}

/* ===== CART TOTALS BOX ===== */
.cart_totals {
    border: none;
    border-radius: 14px;
    padding: 25px;
    background: #fdfaf8;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Total text */
.cart_totals h2 {
    font-size: 20px;
    font-weight: 600;
}

/* Shipping section */
.cart_totals .woocommerce-shipping-methods label {
    font-weight: 500;
}

/* ===== SPACING ===== */
.woocommerce-cart-form {
    margin-bottom: 40px;
}

/* ===== REMOVE INNER GRID LINES ===== */
.woocommerce-cart table.shop_table td,
.woocommerce-cart table.shop_table th {
    border: none !important;
}

/* Remove row separators */
.woocommerce-cart table.shop_table tbody tr {
    border-bottom: none !important;
}

/* ===== SOFT ROW SEPARATION (premium) ===== */
.woocommerce-cart table.shop_table tbody tr {
    position: relative;
}

.woocommerce-cart table.shop_table tbody tr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: #f1ebe7;
}

/* Remove last line */
.woocommerce-cart table.shop_table tbody tr:last-child::after {
    display: none;
}

/* ===== HEADER CLEANER ===== */
.woocommerce-cart table.shop_table th {
    border-bottom: 1px solid #eee !important;
}

/* ===== RADIUS FIX (clean edges) ===== */
.woocommerce-cart table.shop_table {
    border-radius: 16px;
    overflow: hidden;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table {
        font-size: 14px;
    }

    .coupon {
        flex-direction: column;
    }

    .checkout-button {
        font-size: 14px;
    }
}/* End custom CSS */