/* Simplified Cart Styles */
.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form__contents th,
.woocommerce-cart-form__contents td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.woocommerce-cart-form__contents th {
    background-color: #f8f8f8;
    font-weight: 600;
}

.product-remove {
    width: 60px;
    text-align: center;
}

.product-thumbnail {
    width: 120px;
    text-align: center;
}

.product-thumbnail img {
    max-width: 80px;
    height: auto;
    border-radius: 4px;
}

.product-name {
    width: auto;
}

.product-name a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.product-name a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.remove {
    color: #dc3545;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border: 1px solid #dc3545;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.remove:hover {
    background-color: #dc3545;
    color: white;
    transform: scale(1.1);
}

/* Cart collaterals (totals section) */
.cart-collaterals {
    margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .woocommerce-cart-form__contents,
    .woocommerce-cart-form__contents thead,
    .woocommerce-cart-form__contents tbody,
    .woocommerce-cart-form__contents th,
    .woocommerce-cart-form__contents td,
    .woocommerce-cart-form__contents tr {
        display: block;
    }
    
    .woocommerce-cart-form__contents thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .woocommerce-cart-form__contents tr {
        border: 1px solid #ddd;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 5px;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .woocommerce-cart-form__contents td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .woocommerce-cart-form__contents td:last-child {
        border-bottom: none;
    }
    
    .woocommerce-cart-form__contents td:before {
        content: attr(data-title) ": ";
        font-weight: bold;
        color: #666;
        flex: 0 0 40%;
    }
    
    .product-remove:before {
        content: "Remove: ";
    }
    
    .product-thumbnail:before {
        content: "Image: ";
    }
    
    .product-name:before {
        content: "Product: ";
    }
}

@media (max-width: 480px) {
    .woocommerce-cart-form__contents td {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .woocommerce-cart-form__contents td:before {
        margin-bottom: 5px;
    }
    
    .product-thumbnail img {
        max-width: 60px;
    }
}