.gift-voucher-page {
    margin-top: 100px;
    padding: 120px 0 80px;
    background: #ffffff;
}

.gift-voucher-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 42px;
    align-items: center;
    margin-bottom: 44px;
}

.gift-voucher-copy small,
.gift-voucher-label {
    color: #0f6fb8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gift-voucher-copy h1 {
    max-width: 760px;
    margin: 12px 0 18px;
    color: #06298b;
    font-size: 56px;
    line-height: 1.04;
}

.gift-voucher-copy p,
.gift-voucher-info p,
.gift-voucher-card p {
    color: #475569;
    line-height: 1.7;
}

.gift-voucher-hero img {
    width: 100%;
    display: block;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(6, 41, 139, .12);
}

.gift-voucher-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gift-voucher-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.gift-voucher-card h2 {
    margin: 10px 0 10px;
    color: #0f172a;
    font-size: 24px;
}

.gift-voucher-card > strong {
    color: #06298b;
    font-size: 36px;
    line-height: 1;
}

.gift-voucher-net-price {
    display: block;
    margin-top: -14px;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.gift-voucher-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.gift-voucher-actions button {
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: #06298b;
    color: #fff;
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

.gift-voucher-actions button:disabled {
    opacity: .65;
    cursor: wait;
}

.quantity.compact {
    height: 44px;
    display: inline-grid;
    grid-template-columns: 38px 54px 38px;
    align-items: center;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.quantity.compact button {
    min-height: 42px;
    padding: 0;
    border-radius: 0;
    background: #eff6ff;
    color: #06298b;
}

.quantity.compact input {
    width: 54px;
    height: 42px;
    border: 0;
    text-align: center;
    color: #0f172a;
    font-weight: 800;
}

.gift-voucher-info {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
    gap: 32px;
    margin-top: 36px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.gift-voucher-info h2 {
    margin-bottom: 10px;
    color: #06298b;
    font-size: 30px;
}

.gift-voucher-info ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.gift-voucher-info li {
    position: relative;
    padding-left: 26px;
    color: #334155;
}

.gift-voucher-info li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #0f6fb8;
}

.gift-voucher-empty {
    grid-column: 1 / -1;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    text-align: center;
}

@media (max-width: 992px) {
    .gift-voucher-hero,
    .gift-voucher-info {
        grid-template-columns: 1fr;
    }

    .gift-voucher-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .gift-voucher-page {
        padding-top: 90px;
    }

    .gift-voucher-copy h1 {
        font-size: 40px;
    }

    .gift-voucher-grid {
        grid-template-columns: 1fr;
    }

    .gift-voucher-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .quantity.compact {
        width: 100%;
        grid-template-columns: 44px 1fr 44px;
    }

    .quantity.compact input {
        width: 100%;
    }
}
