.woocommerce{ width: 100%; }
.woocommerce-checkout .col2-set {
    display: flex;
    gap: 20px;
    flex-direction: row;
}
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    width: 100% !important;
}
.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 50% !important;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select{
    padding: 12px;
}
.select2-container .select2-selection--single{
    height: 44px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 44px !important;
}
.woocommerce-info{
    border-color: #e4ad52 !important;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background-color: #e4ad52;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 220px;
    justify-content: center;
    text-transform: capitalize;
}
@media(min-width: 768px) {
    .woocommerce-checkout .col-1,
    .woocommerce-checkout .col-2 {
        width: 48%;
    }
}

input:focus, select:focus, textarea:focus {
    border-color: #E4AD52;
    box-shadow: 0 0 0 1px #E4AD52;
}
.woocommerce-checkout h3 {
    color: #1a1a1a;
    font-weight: 600;
}
button.button.alt {
    background-color: #E4AD52;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
    transition: background 0.3s ease;
}
button.button.alt:hover {
    background-color: #c99030;
}
.woocommerce-checkout-review-order-table {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}