/* Homepage discount voucher carousel (Eidiya-style) */
.nova-discount-vouchers {
    padding: 1.25rem 0 1.5rem;
    background: #fff;
    width: 100%;
}

.nova-discount-vouchers__nav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.nova-discount-vouchers__track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.25rem 1rem 0.5rem;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}

.nova-discount-vouchers__item {
    flex: 0 0 auto;
    width: 118px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.nova-discount-vouchers__item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.nova-discount-vouchers__card {
    --dv-card-bg: #0d5563;
    --dv-accent: #f4c430;
    background: var(--dv-card-bg);
    border-radius: 4px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0.35rem 0.4rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 85, 99, 0.25);
}

.nova-discount-vouchers__headline {
    font-size: 0.72rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 0.15rem;
    letter-spacing: 0.02em;
}

.nova-discount-vouchers__label {
    font-size: 0.7rem;
    opacity: 0.95;
    margin-bottom: 0.1rem;
}

.nova-discount-vouchers__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.12rem;
    line-height: 1;
    margin: 0.05rem 0;
}

.nova-discount-vouchers__value {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--dv-accent);
    letter-spacing: -0.02em;
}

.nova-discount-vouchers__currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dv-accent);
}

.nova-discount-vouchers__terms {
    font-size: 0.48rem;
    line-height: 1.2;
    opacity: 0.88;
    margin-top: 0.2rem;
    max-width: 100%;
}

.nova-discount-vouchers__caption {
    margin-top: 0.45rem;
    font-size: 0.72rem;
    line-height: 1.35;
    text-align: center;
    color: #1a1a1a;
    font-weight: 500;
}

@media (min-width: 768px) {
    .nova-discount-vouchers__item {
        width: 132px;
    }

    .nova-discount-vouchers__value {
        font-size: 1.85rem;
    }
}

body.mobile-app-preview-mode .nova-discount-vouchers__track {
    padding-inline: 0.5rem;
}

body.mobile-app-preview-mode .nova-discount-vouchers__item {
    width: 108px;
}
