/**
* Theme Name: Blonwe Child
* Description: This is a child theme of Blonwe, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
* Template: blonwe
* Version: 1.2.3
*/
/* Checkout Layout Styles */
.checkout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-error-notice {
    background-color: #fff2f2;
    border: 1px solid #ffcaca;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    color: #d63031;
    display: flex;
    align-items: center;
}

.error-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #d63031;
    border-radius: 50%;
    border: 2px solid currentColor;
    position: relative;
}

.error-icon:before {
    content: "!";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.cart-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}


#customer_details {
    flex: 0 0 calc(50% - 10px);
    min-width: 320px;
}


.order-review-wrapper {
    flex: 0 0 calc(50% - 10px); 
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}


.contact-section h2, 
.shipping-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-toggle {
    font-size: 14px;
}

.toggle-link {
    color: #333;
    text-decoration: none;
}

.shipping-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}


.order-review-items {
    margin-bottom: 25px;
}

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

.item-image {
    position: relative;
    margin-right: 20px;
    width: 70px;
}

.item-quantity {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #333;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.item-details {
    flex: 1;
    padding-right: 15px;
}

.item-name {
    font-size: 16px;
}

.item-price {
    font-weight: bold;
    font-size: 16px;
}


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

.coupon-form input {
    flex: 1;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 15px;
}

.apply-coupon {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-left: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 15px;
}

.tax-notice, .invoice-notice {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    text-align: right;
}


.order-totals {
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

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

.total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
}

.currency {
    font-size: 14px;
    color: #666;
    margin-right: 5px;
}


.gift-fields {
    margin: 25px 0;
}

.gift-note textarea, 
.sender-name input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 15px;
}


.checkout-button-wrap {
    margin-top: 25px;
}

.checkout-button {
    width: 100%;
    padding: 16px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.checkout-button:hover {
    background-color: #eaeaea;
}


#order_review_heading {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}


@media screen and (max-width: 991px) {
    .cart-wrapper {
        flex-direction: column;
    }
    
    #customer_details,
    .order-review-wrapper {
        flex: 1 0 100%;
        width: 100%;
    }
}


@media screen and (max-width: 480px) {
    .item-image {
        width: 60px;
    }
    
    .coupon-form input {
        padding: 12px;
    }
    
    .coupon-form button {
        padding: 0 15px;
    }
    
    .cart-item {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
}