.woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #F5F5F5, #FFFFFF);
    font-family: 'Poppins', sans-serif;
    color: #000000;
}
.woocommerce-checkout h3,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #800080;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.woocommerce-checkout .form-row {
    margin-bottom: 1rem;
}
.woocommerce-checkout label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.woocommerce-checkout input[type='text'],
.woocommerce-checkout input[type='email'],
.woocommerce-checkout input[type='tel'],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #000000;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce-checkout input[type='text']:focus,
.woocommerce-checkout input[type='email']:focus,
.woocommerce-checkout input[type='tel']:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    outline: none;
}
.woocommerce-checkout .select2-container .select2-selection--single {
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    height: 42px;
    display: flex;
    align-items: center;
}
.woocommerce-checkout .select2-container .select2-selection__rendered {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #000000;
    padding: 0.75rem;
}
.woocommerce-checkout #place_order {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFEC8B);
    color: #000000;
    border: 2px solid #800080;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.woocommerce-checkout #place_order:hover {
    background: #800080;
    color: #FFD700;
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(128, 0, 128, 0.2);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: #FFFFFF;
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #000000;
    text-align: left;
    border-bottom: 1px solid #F5F5F5;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table th {
    font-weight: 600;
    color: #800080;
    background-color: #F5F5F5;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    font-weight: 500;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
    font-weight: 600;
    color: #800080;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    font-weight: 700;
    color: #800080;
}
.woocommerce-checkout .woocommerce-checkout-payment {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.woocommerce-checkout .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.woocommerce-checkout .payment_method label {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.woocommerce-checkout .payment_method input[type='radio'] {
    margin-right: 0.5rem;
}
.woocommerce-checkout .payment_box {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #000000;
    background-color: #F5F5F5;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.woocommerce-checkout .woocommerce-error {
    background-color: rgba(128, 0, 128, 0.15);
    color: #800080;
    border-left: 4px solid #800080;
}
.woocommerce-checkout .woocommerce-info {
    background-color: rgba(0, 0, 0, 0.15);
    color: #000000;
    border-left: 4px solid #000000;
}
.woocommerce-checkout .woocommerce-message {
    background-color: rgba(128, 0, 128, 0.15);
    color: #800080;
    border-left: 4px solid #800080;
}
.woocommerce-checkout .mini-trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    justify-content: center;
}
.woocommerce-checkout .mini-trust-badges span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFD700;
    background-color: #800080;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFD700;
    transition: transform 0.2s ease;
}
.woocommerce-checkout .mini-trust-badges span:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(128, 0, 128, 0.2);
}
@media (max-width: 768px) {
    .woocommerce-checkout {
        padding: 2rem 1rem;
    }
    .woocommerce-checkout h3,
    .woocommerce-checkout .woocommerce-billing-fields h3,
    .woocommerce-checkout .woocommerce-shipping-fields h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 1.5rem;
    }
    .woocommerce-checkout input[type='text'],
    .woocommerce-checkout input[type='email'],
    .woocommerce-checkout input[type='tel'],
    .woocommerce-checkout select,
    .woocommerce-checkout textarea {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    .woocommerce-checkout #place_order {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    .woocommerce-checkout .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table td {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    .woocommerce-checkout .mini-trust-badges span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}