
.dl-checkout-shell,
.dl-checkout-shell * {
    box-sizing: border-box;
}

.dl-checkout-shell {
    width: 100%;
    padding: 40px 18px;
    font-family: Inter, Arial, sans-serif;
    color: #102132;
}

.dl-checkout-card {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: clamp(26px, 5vw, 48px);
    background: #fff;
    border: 1px solid rgba(16, 33, 50, .12);
    border-radius: 22px;
    box-shadow: 0 18px 60px rgba(16, 33, 50, .09);
}

.dl-checkout-intro,
.dl-result-card {
    text-align: center;
}

.dl-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #008080;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.dl-checkout-card h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.12;
    font-weight: 700;
}

.dl-checkout-card p {
    margin: 0;
    line-height: 1.7;
}

.dl-order-summary {
    margin: 30px 0;
    padding: 20px;
    background: #f4f9f8;
    border: 1px solid rgba(0, 128, 128, .18);
    border-radius: 15px;
}

.dl-order-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dl-order-summary strong {
    font-size: 25px;
}

.dl-order-summary small {
    display: block;
    margin-top: 7px;
    color: #607080;
}

.dl-checkout-form {
    display: grid;
    gap: 18px;
}

.dl-checkout-form label > span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.dl-checkout-form input[type="text"],
.dl-checkout-form input[type="email"],
.dl-checkout-form input[type="tel"] {
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    color: #102132;
    background: #fff;
    border: 1px solid #cbd5dc;
    border-radius: 10px;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.dl-checkout-form input:focus {
    border-color: #008080;
    box-shadow: 0 0 0 3px rgba(0, 128, 128, .12);
}

.dl-consent {
    display: grid !important;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    font-size: 13px;
    line-height: 1.55;
}

.dl-consent input {
    margin-top: 4px;
}

.dl-consent span {
    margin: 0 !important;
    font-weight: 400 !important;
}

.dl-checkout-form button,
.dl-primary-link {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    color: #fff !important;
    background: #008080;
    border: 0;
    border-radius: 11px;
    font: inherit;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

.dl-checkout-form button:hover,
.dl-primary-link:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.dl-secure-note {
    color: #667784;
    font-size: 12px;
    text-align: center;
}

.dl-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.dl-alert {
    width: min(100%, 680px);
    margin: 20px auto;
    padding: 15px 17px;
    border-radius: 10px;
    line-height: 1.6;
}

.dl-alert-error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}

.dl-alert-warning {
    color: #664d03;
    background: #fff3cd;
    border: 1px solid #ffecb5;
}

.dl-result-card {
    display: grid;
    justify-items: center;
    gap: 16px;
}

.dl-result-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: #fff;
    background: #198754;
    border-radius: 50%;
    font-size: 34px;
    font-weight: 700;
}

.dl-result-icon-failed {
    background: #b42318;
}

.dl-payment-details {
    width: 100%;
    margin: 10px 0;
    border-top: 1px solid #e2e8ec;
}

.dl-payment-details > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8ec;
    text-align: left;
}

.dl-payment-details dt {
    color: #667784;
}

.dl-payment-details dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}

.dl-reference {
    color: #667784;
    font-size: 13px;
}

@media (max-width: 560px) {
    .dl-checkout-shell {
        padding: 20px 12px;
    }

    .dl-checkout-card {
        padding: 26px 18px;
        border-radius: 15px;
    }

    .dl-order-summary > div {
        align-items: flex-start;
    }

    .dl-payment-details > div {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: center;
    }

    .dl-payment-details dd {
        text-align: center;
    }
}
