#ontik-express-checkout-wrapper {
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    clip-path: inset(0 round 8px);
    background: transparent;
}

#ontik-express-checkout-header {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    text-align: center;
}

#ontik-express-checkout-header span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
} 

#ontik-express-checkout-container {
    position: relative;
    padding: 16px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
}

#ontik-express-checkout-wallets {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    gap: 12px;
}

#ontik-express-wallet-googlepay,
#ontik-express-wallet-applepay {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 48px;
}

#ontik-express-wallet-googlepay:empty,
#ontik-express-wallet-applepay:empty {
    display: none;
}

#ontik-express-wallet-googlepay > *,
#ontik-express-wallet-applepay > * {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
}

#ontik-express-wallet-googlepay > [hidden] {
    display: none !important;
}

#ontik-express-wallet-googlepay .gpay-card-info-container,
#ontik-express-wallet-applepay .adyen-checkout__applepay__button {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
}

#ontik-express-checkout-readiness-overlay {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: block;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    touch-action: manipulation;
}

#ontik-express-checkout-readiness-overlay[hidden] {
    display: none;
}

#ontik-express-checkout-container.ontik-express-checkout-busy #ontik-express-checkout-wallets {
    opacity: 0.08;
    pointer-events: none;
}

#ontik-express-checkout-loading {
    position: absolute;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4b5563;
    font-size: 14px;
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.94);
    cursor: progress;
    pointer-events: auto;
}

#ontik-express-checkout-container.ontik-express-checkout-busy #ontik-express-checkout-loading {
    display: flex !important;
}

.ontik-express-checkout-spinner {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 2px solid #d1d5db;
    border-top-color: #111827;
    border-radius: 50%;
    animation: ontik-express-spin 700ms linear infinite;
}

@keyframes ontik-express-spin {
    to {
        transform: rotate(360deg);
    }
}

#ontik-express-checkout-error {
    color: #a00;
    font-size: 13px;
    padding: 12px 16px;
    background: #fff5f5;
    border-top: 1px solid #fcc;
}

#ontik-express-checkout-divider {
    position: relative;
    text-align: center;
    padding: 16px 0;
    background: transparent;
    border-top: 1px solid #e0e0e0;
}

#ontik-express-checkout-divider span {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0 16px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    #ontik-express-checkout-wallets {
        flex-direction: column;
        gap: 10px;
    }

    #ontik-express-wallet-googlepay,
    #ontik-express-wallet-applepay {
        flex: 0 0 48px;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ontik-express-checkout-spinner {
        animation-duration: 1400ms;
    }
}
