.product-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #2d552d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}/**
 * Multi-Product Cart Widget Styles
 */

/* Container Styles */
.multi-product-cart-widget {
    background-color: #f8f4ee;
    border-radius: 20px;
    padding: 20px;
    border: 2px solid #974b22;
    font-family: sans-serif;
}

/* Product Item Styles */
.product-item {
    display: flex;
    align-items: center;
    background-color: #e9d5a9;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}

.product-image {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    background-color: #2d552d;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-info {
    flex: 1 1 auto;
    padding-right: 15px;
}

.product-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.product-price {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.product-qty {
    display: flex;
    align-items: center;
    background-color: #f0e6c9;
    border-radius: 8px;
    padding: 5px 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
    min-width: 120px;
    justify-content: space-between;
}

.product-qty label {
    margin-right: 8px;
    font-weight: 600;
    color: #5a4a2d;
    font-size: 14px;
}

.qty-control {
    border: 1px solid #c9b984;
    border-radius: 5px;
    padding: 6px 10px;
    background-color: #ffffff;
    color: #2d552d;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23557153%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 8px top 50%;
    background-size: 10px auto;
    padding-right: 25px;
    transition: all 0.2s ease-in-out;
}

.qty-control:hover, .qty-control:focus {
    border-color: #974b22;
    outline: none;
    box-shadow: 0 0 0 2px rgba(151, 75, 34, 0.2);
}

/* Total Calculation Styles */
.cart-totals {
    margin: 20px 0;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.label {
    font-weight: 500;
}

/* Checkout Button Styles */
.secure-checkout-btn {
    background-color: #e67e22;
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.secure-checkout-btn:hover {
    background-color: #d35400;
}

.secure-checkout-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-item {
        flex-wrap: wrap;
    }
    
    .product-info {
        width: calc(100% - 85px);
        margin-bottom: 10px;
        padding-right: 0;
    }
    
    .product-qty {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .product-info {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    
    .product-image {
        margin: 0 auto 10px;
    }
    
    .product-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 10px;
    }
    
    .product-qty {
        justify-content: center;
        margin-top: 12px;
        width: auto;
        display: inline-flex;
        min-width: 140px;
    }
}