.svelta-shop-body .service-card__footer {
    display: grid;
    grid-template-columns: minmax(116px, .42fr) minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
}

.svelta-shop-body .service-price-glass,
.svelta-shop-body .service-checkout-glass,
.svelta-shop-body .service-precheck-link {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 16px;
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
}

.svelta-shop-body .service-price-glass {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 58px;
    padding: 9px 14px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .92), transparent 58%),
        linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(226, 238, 246, .5));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        inset 0 -1px 0 rgba(14, 79, 131, .08),
        0 13px 28px rgba(22, 55, 79, .12);
}

.svelta-shop-body .service-price-glass > span {
    color: #5d6e7d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
}

.svelta-shop-body .service-price-glass .service-price {
    color: #102f4a;
    font-size: clamp(18px, 1.65vw, 23px);
    font-weight: 850;
    line-height: 1.1;
}

.svelta-shop-body .service-card__actions {
    display: grid;
    grid-template-columns: minmax(112px, 1fr) minmax(116px, auto);
    gap: 9px;
    align-items: stretch;
}

.svelta-shop-body .service-checkout-glass,
.svelta-shop-body .service-precheck-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.svelta-shop-body .service-checkout-glass {
    color: #fff;
    background:
        radial-gradient(circle at 28% 0%, rgba(255, 255, 255, .48), transparent 46%),
        linear-gradient(135deg, rgba(12, 101, 158, .97), rgba(5, 74, 121, .88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .82),
        inset 0 -1px 0 rgba(5, 31, 54, .28),
        0 16px 32px rgba(14, 79, 131, .24);
    text-shadow: 0 1px 1px rgba(5, 31, 54, .28);
}

.svelta-shop-body .service-precheck-link {
    border-color: rgba(14, 79, 131, .18);
    color: #0e4f83;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .9), transparent 56%),
        linear-gradient(145deg, rgba(255, 255, 255, .7), rgba(235, 243, 248, .46));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        0 12px 26px rgba(22, 55, 79, .1);
}

.svelta-shop-body .service-checkout-glass:hover,
.svelta-shop-body .service-precheck-link:hover {
    transform: translateY(-2px);
}

.svelta-shop-body .service-card--unavailable .service-card__actions {
    grid-template-columns: minmax(112px, 1fr) minmax(116px, auto);
}

@media (max-width: 720px) {
    .svelta-shop-body .service-card__footer {
        grid-template-columns: 1fr;
    }

    .svelta-shop-body .service-price-glass {
        align-items: center;
        text-align: center;
    }

    .svelta-shop-body .service-card__actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 420px) {
    .svelta-shop-body .service-card__actions {
        grid-template-columns: 1fr;
    }
}
