/* استایل‌های صفحه تسویه حساب یکپارچه */
.woocommerce-integrated-checkout {
    padding: 30px 0;
}

.cart-items-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.cart-items-container h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
}

.cart-item-price {
    color: #666;
    margin-bottom: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.quantity-control button {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 4px;
}

.cart-item-subtotal {
    font-weight: 600;
    margin: 0 15px;
}

.cart-item-remove a {
    color: #e74c3c;
    font-size: 20px;
    text-decoration: none;
}

.cart-totals {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

.cart-totals > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-total {
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.coupon-form {
    display: flex;
    margin-top: 20px;
}

.coupon-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.coupon-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* استایل‌های واکنش‌گرا */
@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item-details {
        width: calc(100% - 95px);
    }
    
    .cart-item-subtotal {
        margin-top: 10px;
        width: 100%;
    }
    
    .cart-item-remove {
        position: absolute;
        right: 15px;
        top: 15px;
    }
}