.custom-checkout img{
    width: 20%;
}

.custom-checkout h2{
    text-align: center;
}

.custom-checkout .product-details, .custom-checkout .bump{
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.woocommerce-page.woocommerce-checkout form #order_review td.product-name{
    max-width: 100% !important;
    padding: 5px;
}

.woocommerce-js .woocommerce table.shop_table {
    margin-bottom: 0px !important;
}

.thwcfd-field-country, .cart-subtotal{
    display: none !important;
}

   .custom-checkout {
        max-width: 800px;
        margin: 0 auto;
        font-family: Arial, sans-serif;
        font-size: 14px;
    }
    
    .products-container {
        margin-bottom: 5px;
    }
    
    .product-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 5px;
        margin-bottom: 10px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .product-header {
        display: flex;
        margin-bottom: 15px;
        justify-content: space-between;
    }
    
    .product-image {
        width: 24%;
    }
    
    .product-image img {
        width: 80px;
        height: 100px;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 15px;
        min-width: 80px;
    }
    
    .product-info {
        flex-grow: 1;
    }
    
    .product-info .container-name-btn{
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .product-info h3 {
        margin: 0 0 5px 0;
        font-size: 18px;
    }
    
    .product-prices {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
    }
    
    .product-unit label{
        font-size: 16px;
        font-weight: 600;
        width: 7%;
    }
    
    .regular-price {
        text-decoration: line-through;
        color: #999;
        margin-right: 10px;
    }
    
    .sale-price {
        font-weight: bold;
        color: #d32f2f;
        font-size: 18px;
    }
    
    .saving {
        display: block;
        color: #4caf50;
        font-size: 14px;
    }
    
    
    .checkbox-container {
        display: block;
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        user-select: none;
    }
    
    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    
    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #eee;
        border-radius: 4px;
    }
    
    .checkbox-container:hover input ~ .checkmark {
        background-color: #ccc;
    }
    
    .checkbox-container input:checked ~ .checkmark {
        background-color: #2196F3;
    }
    
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    
    .checkbox-container input:checked ~ .checkmark:after {
        display: block;
    }
    
    .checkbox-container .checkmark:after {
        left: 9px;
        top: 5px;
        width: 7px;
        height: 12px;
        border: solid white;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }
    
    .selector-label {
        font-weight: bold;
    }
    
    .product-attributes {
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    .attribute-group {
        margin-bottom: 15px;
        padding: 5px;
    }
    
    .attribute-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }
    
    .attribute-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .attribute-option input[type="radio"] {
        display: none;
    }
    
    .attribute-option label {
        display: block;
        padding: 8px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .attribute-option input[type="radio"]:checked + label {
        background: #2196F3;
        color: white;
        border-color: #2196F3;
    }
    
    .variation-attribute {
        background: #f9f9f9;
        padding: 5px;
        border-radius: 4px;
    }
    
    .order-summary {
      background: #f9f9f9;
      padding: 5px;
      border-radius: 8px;
      margin-top: 5px;
    }
    
    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .summary-row.total {
        font-weight: bold;
        font-size: 15px;
        border-bottom: none;
    }
    
    .summary-row.saving {
        color: #4CAF50;
        font-weight: bold;
    }
    
    #summary-shipping {
        color: #4CAF50;
        font-weight: bold;
    }
    
    .checkout-button {
        width: 100%;
        background: #4CAF50;
        color: white;
        border: none;
        padding: 15px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 4px;
        cursor: pointer;
        margin-top: 20px;
        transition: background 0.3s;
    }
    
    .checkout-button:hover {
        background: #3d8b40;
    }
    
    .swal2-container {
        z-index: 999999 !important;
    }