.elementor-1056 .elementor-element.elementor-element-6efe58c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1056 .elementor-element.elementor-element-9788f6c{--display:flex;}/* Start custom CSS for container, class: .elementor-element-6efe58c *//* --- Cart Header (Total & Actions) --- */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.cart-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.cart-header .cart-total-price {
    color: #0071e3;
}

.cart-header .cart-actions {
    display: flex;
    gap: 10px;
}

.cart-header .cart-actions button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cart-header .pay-with-paypal {
    background-color: #0071e3;
    color: #fff;
}

.cart-header .pay-with-paypal:hover {
    background-color: #005bb5;
}

.cart-header .validate-order {
    background-color: #000;
    color: #fff;
}

.cart-header .validate-order:hover {
    background-color: #333;
}

/* --- Cart Content (Items) --- */
.cart-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item .item-image img {
    max-width: 80px;
    border-radius: 8px;
}

.cart-item .item-info {
    flex: 1;
    padding: 0 20px;
}

.cart-item .item-info h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 5px;
}

.cart-item .item-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cart-item .item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.cart-item .item-actions select {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cart-item .item-actions button {
    background-color: transparent;
    color: #0071e3;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.cart-item .item-actions button:hover {
    color: #005bb5;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .cart-header {
        flex-direction: column;
        gap: 10px;
    }

    .cart-content {
        padding: 15px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item .item-actions {
        align-items: flex-start;
    }
}/* End custom CSS */