.express-checkout-container {
    background: #1a2332;
    color: #ffffff;
    min-height: 100vh;
    padding: 40px 20px;
    font-family: 'Futura', Arial, sans-serif;
}

.express-checkout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.checkout-left {
    background: #1a2332;
}

.checkout-right {
    background: #153861;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.express-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.express-header p {
    font-size: 16px;
    color: #b8c5d1;
    margin: 0 0 20px 0;
}

.returning-customer {
    color: #f6d04e;
    text-decoration: underline;
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px;
    background: #2a3441;
    border: 1px solid #3a4651;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #f6d04e;
}

/* Billing Optional Checkbox */
.billing-optional-checkbox {
    margin-bottom: 20px;
}

.billing-optional-checkbox label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

.billing-optional-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    transform: scale(1.2);
}

/* Billing Fields - Hidden by default */
.billing-fields {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #3a4651;
}

.billing-fields.show {
    display: block;
}

/* Email verification styling */
.email-verify-note {
    font-size: 12px;
    color: #b8c5d1;
    margin-top: 5px;
}

/* Account creation note */
.account-creation-note {
    background: #153861;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 14px;
    color: #b8c5d1;
}

/* WooCommerce Payment Methods Styling */
.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.wc_payment_method {
    margin-bottom: 15px;
    border: 2px solid #3a4651;
    border-radius: 4px;
    overflow: hidden;
}

.wc_payment_method input[type="radio"] {
    display: none;
}

.wc_payment_method label {
    display: block;
    padding: 15px 20px;
    background: #2a3441;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    color: #ffffff;
}

.wc_payment_method:has(input[type="radio"]:checked) {
    border-color: #f6d04e;
}

.wc_payment_method:has(input[type="radio"]:checked) label {
    background: #3a4651;
}

.payment_box {
    padding: 20px;
    background: #1a2332;
    border-top: 1px solid #3a4651;
}

.payment_box input,
.payment_box select {
    background: #2a3441 !important;
    border: 1px solid #3a4651 !important;
    color: #ffffff !important;
    padding: 12px !important;
    border-radius: 4px !important;
}

.payment_box label {
    color: #ffffff !important;
    font-size: 14px !important;
}

/* Order Summary */
.order-summary h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 30px 0;
    color: #ffffff;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a3441;
}

.order-item-details h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.order-item-details p {
    font-size: 14px;
    color: #b8c5d1;
    margin: 0;
}

.order-item-price {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.order-totals {
    margin-top: 30px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.total-row.final {
    font-size: 20px;
    font-weight: bold;
    padding-top: 15px;
    border-top: 1px solid #2a3441;
    margin-top: 20px;
}

.place-order-button {
    width: 100%;
    background: #f6d04e;
    color: #1a2332;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 30px;
}

.place-order-button:hover {
    background: #f4c842;
}

.security-badges {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #b8c5d1;
}

@media (max-width: 768px) {
    .express-checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-right {
        position: static;
    }
}

/* Hide default WooCommerce styling */
.woocommerce-checkout {
    background: transparent !important;
}

.woocommerce .col2-set {
    display: none;
}

.woocommerce-checkout-review-order {
    display: none;
}