/* MyVouchers.ie unified site styles */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');
:root {
    --brand-red: #e30613;
    --brand-red-dark: #b8050f;
    --brand-red-glow: rgba(227, 6, 19, 0.18);
    --brand-red-soft: #fff5f5;
    --brand-red-muted: rgba(227, 6, 19, 0.07);
    --brand-red-light: rgba(227, 6, 19, 0.12);
    --text-primary: #1a1a1a;
    --text-muted: #64748b;
    --surface: #ffffff;
    --surface-muted: #f8fafc;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-pill: 999px;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.auth-page {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-muted);
}

.auth-page__bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.auth-page__bg-shape {
    position: absolute;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    opacity: 0.06;
    transform: rotate(-8deg);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
}

.auth-page__bg-shape--1 {
    width: 240px;
    height: 100px;
    top: 10%;
    left: -30px;
}

.auth-page__bg-shape--2 {
    width: 180px;
    height: 76px;
    bottom: 15%;
    right: -20px;
}

.auth-page__wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
}

.auth-page__logo-link {
    display: inline-block;
    margin-bottom: 1.75rem;
    filter: drop-shadow(0 12px 40px rgba(227, 6, 19, 0.15));
}

.auth-page__logo {
    display: block;
    width: min(320px, 80vw);
    height: auto;
}

.auth-page__card {
    width: 100%;
    max-width: 440px;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.auth-page__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}

.auth-page__subtitle {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    text-align: center;
    color: var(--text-muted);
}

.auth-page__field {
    margin-bottom: 1rem;
}

.auth-page__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.auth-page__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--surface-muted);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-page__input:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px var(--brand-red-glow);
}

.auth-page__input.is-invalid {
    border-color: #dc2626;
}

.auth-page__error {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: #dc2626;
}

.auth-page__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--brand-red-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.auth-page__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--brand-red-glow);
}

.auth-page__btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
    box-shadow: none;
}

.auth-page__turnstile {
    margin-bottom: 1.25rem;
}

.auth-page__alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border-radius: 10px;
}

.auth-page__alert--success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.auth-page__alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.auth-page__footer {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.auth-page__footer a {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: none;
}

.auth-page__footer a:hover {
    text-decoration: underline;
}

.auth-page__footer-muted {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.auth-page__back {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-page__back a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
}

.auth-page__back a:hover {
    color: var(--brand-red);
}

/* --- Coming soon --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.coming-soon {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-muted);
    overflow-x: hidden;
}

.coming-soon__bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.coming-soon__bg-shape {
    position: absolute;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    opacity: 0.06;
    transform: rotate(-8deg);
}

.coming-soon__bg-shape--1 {
    width: 280px;
    height: 120px;
    top: 8%;
    left: -40px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    animation: float 8s ease-in-out infinite;
}

.coming-soon__bg-shape--2 {
    width: 200px;
    height: 86px;
    top: 55%;
    right: -30px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    animation: float 10s ease-in-out infinite reverse;
}

.coming-soon__bg-shape--3 {
    width: 140px;
    height: 60px;
    bottom: 12%;
    left: 12%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    animation: float 12s ease-in-out infinite;
    opacity: 0.04;
}

.coming-soon__bg-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-red);
    opacity: 0.12;
}

.coming-soon__bg-dot--1 { top: 22%; right: 18%; }
.coming-soon__bg-dot--2 { top: 70%; left: 8%; }
.coming-soon__bg-dot--3 { bottom: 28%; right: 32%; }

@keyframes float {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-18px); }
}

.coming-soon__page {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.25rem 2rem;
}

.coming-soon__hero {
    width: 100%;
    max-width: 680px;
    text-align: center;
    animation: fadeUp 0.7s ease both;
}

.coming-soon__logo-wrap {
    display: inline-block;
    margin-bottom: 2rem;
    filter: drop-shadow(var(--shadow-tag));
    animation: fadeUp 0.7s ease 0.1s both;
}

.coming-soon__logo {
    display: block;
    width: min(420px, 88vw);
    height: auto;
}

.coming-soon__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-red);
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.15);
    border-radius: var(--radius-pill);
    animation: fadeUp 0.7s ease 0.15s both;
}

.coming-soon__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-red);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.coming-soon__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    animation: fadeUp 0.7s ease 0.2s both;
}

.coming-soon__title-accent {
    color: var(--brand-red);
}

.coming-soon__subtitle {
    margin: 0 auto 2.25rem;
    max-width: 560px;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.65;
    color: var(--text-muted);
    animation: fadeUp 0.7s ease 0.25s both;
}

.coming-soon__card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    animation: fadeUp 0.7s ease 0.3s both;
}

.coming-soon__card-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.coming-soon__card-text {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.coming-soon__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coming-soon__form-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .coming-soon__form-row {
        flex-direction: row;
    }
}

.coming-soon__turnstile {
    width: 100%;
}

.coming-soon__input-wrap {
    flex: 1;
    position: relative;
}

.coming-soon__input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--surface-muted);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.coming-soon__input:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px var(--brand-red-glow);
}

.coming-soon__input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.coming-soon__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--brand-red-glow);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.coming-soon__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--brand-red-glow);
    filter: brightness(1.05);
}

.coming-soon__btn:active {
    transform: translateY(0);
}

.coming-soon__btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
    box-shadow: none;
    filter: none;
}

.coming-soon__alert {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border-radius: 10px;
    text-align: left;
}

.coming-soon__alert--success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.coming-soon__alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.coming-soon__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 720px;
    margin-bottom: 3rem;
    animation: fadeUp 0.7s ease 0.35s both;
}

.coming-soon__feature {
    padding: 1.25rem 1rem;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s, box-shadow 0.2s;
}

.coming-soon__feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.coming-soon__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: var(--brand-red);
    background: rgba(227, 6, 19, 0.08);
    border-radius: 12px;
}

.coming-soon__feature-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.coming-soon__feature-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.coming-soon__footer {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
    animation: fadeUp 0.7s ease 0.4s both;
}

.coming-soon__footer-text {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.coming-soon__footer-brand {
    font-weight: 600;
    color: var(--brand-red);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- App / dashboard --- */
body.dashboard-page {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-muted);
}

.dashboard-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.dashboard-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.dashboard-nav__logo {
    height: 36px;
    width: auto;
}

.dashboard-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-nav__user {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.dashboard-nav__user strong {
    color: var(--text-primary);
}

.dashboard-nav__logout {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brand-red);
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.15);
    border-radius: 10px;
    transition: background 0.2s;
}

.dashboard-nav__logout:hover {
    background: rgba(227, 6, 19, 0.12);
}

.dashboard-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}

.dashboard-hero {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border-radius: var(--radius);
    color: #fff;
    box-shadow: 0 12px 40px var(--brand-red-glow);
}

.dashboard-hero__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dashboard-hero__text {
    margin: 0;
    font-size: 1.0625rem;
    opacity: 0.92;
}

.dashboard-alert {
    margin-bottom: 1.5rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border-radius: 10px;
}

.dashboard-alert--success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.dashboard-card {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.dashboard-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--brand-red);
    background: rgba(227, 6, 19, 0.08);
    border-radius: 12px;
}

.dashboard-card__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.dashboard-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.dashboard-card__value {
    margin: 0.5rem 0 0;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-red);
}

.dashboard-card__link {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
}

.dashboard-card__link:hover {
    text-decoration: underline;
}

.dashboard-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-nav__link:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.dashboard-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    vertical-align: middle;
}

.dashboard-badge--superadmin {
    color: #7c2d12;
    background: #ffedd5;
}

.dashboard-badge--business {
    color: #1e40af;
    background: #dbeafe;
}

.dashboard-badge--user {
    color: #166534;
    background: #dcfce7;
}

.dashboard-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-page-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.dashboard-page-subtitle {
    margin: 0;
    color: var(--text-muted);
}

.dashboard-main--narrow {
    max-width: 640px;
}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.dashboard-btn--secondary {
    color: var(--text-primary);
    background: var(--surface-muted);
    border: 1px solid var(--border);
}

.dashboard-btn--sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
}

.dashboard-filters {
    margin-bottom: 1.25rem;
    padding: 1rem 1.125rem;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.dashboard-filters__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.875rem 1rem;
}

.dashboard-filters__field {
    flex: 1 1 140px;
    min-width: 120px;
    max-width: 200px;
}

.dashboard-filters__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.dashboard-filters__actions {
    flex: 0 0 auto;
}

.dashboard-filters__presets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
}

.dashboard-filters__presets-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.dashboard-filters__preset {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
}

.dashboard-filters__preset:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.dashboard-alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.dashboard-table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.dashboard-table th {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: var(--surface-muted);
}

.dashboard-table__empty {
    text-align: center;
    color: var(--text-muted);
}

.dashboard-table__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-table__link {
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.dashboard-table__link--danger {
    color: #b91c1c;
}

.dashboard-table-wrap--datatable {
    padding: 1rem 1.25rem 1.25rem;
}

.dashboard-table-wrap--datatable .dataTables_filter input,
.dashboard-table-wrap--datatable .dataTables_length select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
}

.dashboard-table-wrap--datatable .page-item.active .page-link {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.dashboard-table-wrap--datatable .page-link {
    color: var(--brand-red);
}

.dashboard-inline-form {
    display: inline;
    margin: 0;
}

.dashboard-form-card {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.dashboard-form-field {
    margin-bottom: 1rem;
}

.dashboard-form-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.dashboard-form-hint {
    font-weight: 400;
    color: var(--text-muted);
}

.dashboard-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--surface-muted);
}

.dashboard-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.dashboard-list {
    margin: 0;
    padding-left: 1.25rem;
}

.dashboard-back {
    margin-top: 1.5rem;
}

.dashboard-back a {
    color: var(--text-muted);
    text-decoration: none;
}

.dashboard-back a:hover {
    color: var(--brand-red);
}

@media (max-width: 640px) {
    .dashboard-nav {
        flex-wrap: wrap;
        padding: 0.875rem 1rem;
    }

    .dashboard-nav__user {
        display: none;
    }
}

/* --- Unified site shell --- */

body.site-page,
body.auth-page,
body.dashboard-page,
body.coming-soon {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-muted);
    display: flex;
    flex-direction: column;
}

.site-page--auth .auth-page__wrap,
.site-page--auth .site-main--center {
    flex: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
}

.site-header__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__logo {
    height: 36px;
    width: auto;
}

.site-header__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.site-header__link {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.site-header__link:hover,
.site-header__link.is-active {
    color: var(--brand-red);
    background: rgba(227, 6, 19, 0.06);
}

.site-header__user {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.site-header__user strong {
    color: var(--text-primary);
}

.site-header__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px var(--brand-red-glow);
}

.site-header__btn--outline {
    color: var(--brand-red);
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.15);
    box-shadow: none;
}

.site-header__btn:hover {
    filter: brightness(1.05);
}

.site-badge,
.dashboard-badge {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.15rem 0.55rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    vertical-align: middle;
}

.site-badge--superadmin,
.dashboard-badge--superadmin {
    color: #7c2d12;
    background: #ffedd5;
}

.site-badge--business,
.dashboard-badge--business {
    color: #1e40af;
    background: #dbeafe;
}

.site-badge--user,
.dashboard-badge--user {
    color: #166534;
    background: #dcfce7;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.cookie-notice__content {
    flex: 1 1 280px;
    min-width: 0;
}

.cookie-notice__title {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.cookie-notice__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.cookie-notice__link {
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
    white-space: nowrap;
}

.cookie-notice__link:hover,
.cookie-notice__link:focus-visible {
    color: var(--brand-red-dark);
    text-decoration: underline;
}

.cookie-notice__accept {
    flex-shrink: 0;
    padding: 0.7rem 1.35rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    box-shadow: 0 4px 14px var(--brand-red-glow);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cookie-notice__accept:hover,
.cookie-notice__accept:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--brand-red-glow);
    outline: none;
}

.site-page:has(.cookie-notice:not([hidden])) {
    padding-bottom: 5.5rem;
}

.site-footer {
    margin-top: auto;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1.75rem;
}

.site-footer__brand {
    flex: 1 1 220px;
    min-width: 0;
}

.site-footer__nav {
    flex: 2 1 320px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links li {
    display: inline-flex;
    align-items: center;
}

.site-footer__links li:not(:last-child)::after {
    content: '|';
    margin: 0 0.65rem;
    color: var(--border);
    font-weight: 400;
    pointer-events: none;
}

.site-footer__links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--brand-red);
}

.site-footer__logout-form {
    display: inline;
    margin: 0;
}

.site-footer__logout-btn {
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.site-footer__logout-btn:hover,
.site-footer__logout-btn:focus-visible {
    color: var(--brand-red);
}

.site-header__logout-form {
    display: inline;
    margin: 0;
}

.site-header__logout-form button {
    font: inherit;
}

.home-page__turnstile {
    max-width: 42rem;
    margin: 0 auto 1.25rem;
    display: flex;
    justify-content: center;
}

.site-footer__links--account a {
    font-weight: 500;
}

.site-footer__copy {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.site-footer__tagline {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.site-footer__copy strong {
    color: var(--brand-red);
}

@media (max-width: 640px) {
    .site-header__inner {
        padding: 0.875rem 1rem;
    }

    .site-header__user {
        display: none;
    }

    .site-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__nav {
        align-items: center;
        width: 100%;
    }

    .site-footer__links {
        justify-content: center;
    }

    .cookie-notice__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-notice__accept {
        width: 100%;
    }

    .site-page:has(.cookie-notice:not([hidden])) {
        padding-bottom: 8.5rem;
    }
}

/* --- Vouchers (Hot Right Now cards) --- */

.home-main,
.vouchers-preview {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}

.home-hero {
    padding: 2rem 0 1rem;
}

.brand-slogan {
    margin: 0 0 1rem;
}

.brand-slogan__lead {
    margin: 0 0 0.15rem;
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.brand-slogan__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.brand-slogan__tag {
    margin: 0.5rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--brand-red);
}

.brand-slogan--coming-soon {
    animation: fadeUp 0.7s ease 0.2s both;
}

.brand-slogan--coming-soon .brand-slogan__title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
}

.brand-slogan--compact .brand-slogan__lead {
    font-size: 0.9375rem;
}

.brand-slogan--compact .brand-slogan__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.brand-slogan--compact .brand-slogan__tag {
    font-size: 1rem;
}

.home-hero__text {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 640px;
}

.home-hero__redeem {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-hero__redeem-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.home-hero__redeem-item .bi {
    color: var(--brand-red);
}

.radio-promo {
    width: 100%;
    max-width: 620px;
    margin: 0 auto 2.5rem;
    padding: 1.25rem 1.35rem;
    text-align: left;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.06) 0%, rgba(15, 23, 42, 0.03) 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand-red);
    border-radius: var(--radius);
    animation: fadeUp 0.7s ease 0.35s both;
}

.radio-promo__header {
    margin-bottom: 0.875rem;
}

.radio-promo__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-red);
    background: #fff;
    border: 1px solid rgba(227, 6, 19, 0.2);
    border-radius: 999px;
}

.radio-promo__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.radio-promo__player {
    margin-bottom: 1.125rem;
}

.radio-promo__audio {
    display: none;
}

.radio-player {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.radio-player__play {
    position: relative;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.125rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 18px var(--brand-red-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.radio-player__play:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px var(--brand-red-glow);
}

.radio-player__play:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--brand-red-glow);
}

.radio-player__play .bi-pause-fill {
    font-size: 1rem;
}

.radio-player__pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(227, 6, 19, 0.35);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

[data-radio-player].is-playing .radio-player__pulse {
    animation: radioPulse 1.6s ease-out infinite;
}

@keyframes radioPulse {
    0% {
        opacity: 0.75;
        transform: scale(0.92);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.radio-player__body {
    flex: 1;
    min-width: 0;
}

.radio-player__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.radio-player__label-wrap {
    min-width: 0;
}

.radio-player__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-player__status {
    display: block;
    margin-top: 0.125rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-muted);
}

[data-radio-player].is-playing .radio-player__status {
    color: var(--brand-red);
}

.radio-player__time {
    flex: 0 0 auto;
    font-size: 0.8125rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    white-space: nowrap;
}

.radio-player__time-sep {
    margin: 0 0.15rem;
    opacity: 0.55;
}

.radio-player__track {
    position: relative;
    height: 0.45rem;
    padding: 0.45rem 0;
    margin: -0.45rem 0;
    cursor: pointer;
    touch-action: none;
}

.radio-player__track:focus-visible {
    outline: none;
}

.radio-player__track:focus-visible .radio-player__progress {
    box-shadow: 0 0 0 3px var(--brand-red-glow);
}

.radio-player__progress {
    position: relative;
    height: 0.45rem;
    overflow: hidden;
    background: #eef2f7;
    border-radius: var(--radius-pill);
}

.radio-player__progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, var(--brand-red) 0%, #ff4d57 100%);
    border-radius: inherit;
    transition: width 0.08s linear;
}

@media (max-width: 420px) {
    .radio-player {
        align-items: flex-start;
    }

    .radio-player__meta {
        flex-direction: column;
        gap: 0.25rem;
    }

    .radio-player__label {
        white-space: normal;
    }
}

.radio-promo__script {
    margin: 0;
    padding: 0;
    border: 0;
}

.radio-promo__script p {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.radio-promo__script p:last-child {
    margin-bottom: 0;
}

.radio-promo__signoff {
    font-style: italic;
    color: var(--text-primary) !important;
}

.vouchers-section {
    margin-top: 1rem;
}

.vouchers-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vouchers-section__title {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.vouchers-section__title .bi-fire {
    color: var(--brand-red);
    margin-right: 0.25rem;
}

.vouchers-section__subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.vouchers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 720px) {
    .vouchers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.vouchers-empty {
    grid-column: 1 / -1;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9375rem;
}

.voucher-card {
    position: relative;
    display: grid;
    grid-template-columns: 108px 1fr;
    min-height: 196px;
    background: var(--surface);
    border: 1px solid rgba(227, 6, 19, 0.14);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.voucher-card__ribbon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 108px;
    height: 108px;
    overflow: hidden;
    pointer-events: none;
}

.voucher-card__ribbon-text {
    position: absolute;
    top: 24px;
    left: -34px;
    width: 168px;
    padding: 0.4rem 0;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px var(--brand-red-glow);
}

.voucher-card:hover {
    transform: translateY(-2px);
    border-color: rgba(227, 6, 19, 0.28);
    box-shadow: 0 10px 28px var(--brand-red-glow);
}

.voucher-card--detail {
    grid-template-columns: 132px 1fr;
    min-height: auto;
    max-width: 760px;
    margin: 0 auto;
}

.voucher-card__accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 0.875rem;
    background: var(--brand-red-soft);
    border-right: 1px solid rgba(227, 6, 19, 0.1);
}

.voucher-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--brand-red-light);
    color: var(--brand-red);
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 1;
}

.voucher-card__logo-img {
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(227, 6, 19, 0.15);
}

.voucher-image-preview__img {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    background: #fff;
}

.voucher-upload-progress__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.voucher-upload-progress__bar {
    height: 0.65rem;
    background: var(--surface-muted);
    border-radius: 999px;
    overflow: hidden;
}

.voucher-upload-progress__bar .progress-bar {
    background-color: var(--brand-red);
}

#voucherModal .voucher-modal {
    width: calc(100% - 2rem);
    max-width: 800px;
    max-height: calc(100vh - 2rem);
    margin: 1rem auto;
}

#voucherModal .modal-content {
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#voucherModal .modal-header {
    flex-shrink: 0;
}

#voucherModal .voucher-modal__form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

#voucherModal .modal-body {
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

#voucherModal .modal-footer {
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
}

.voucher-card__discount {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
    text-wrap: balance;
}

.voucher-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.125rem 1rem 1.375rem;
    min-width: 0;
}

.voucher-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.voucher-card__brand-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.voucher-card__brand {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.voucher-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--brand-red);
}

.voucher-card__verified .bi {
    font-size: 0.875rem;
}

.voucher-card__type {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.voucher-card__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.voucher-card__title-link {
    color: inherit;
    text-decoration: none;
}

.voucher-card__title-link:hover,
.voucher-card__title-link:focus-visible {
    color: var(--brand-red);
    outline: none;
}

.voucher-card__title--page {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 0.5rem;
}

.voucher-card__desc {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-muted);
    flex: 1;
}

.voucher-card__desc--clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.voucher-card--detail .voucher-card__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    white-space: pre-line;
}

.voucher-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.voucher-card__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    margin-left: auto;
}

.voucher-card__view-link {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--brand-red);
    text-decoration: none;
}

.voucher-card__view-link:hover,
.voucher-card__view-link:focus-visible {
    text-decoration: underline;
    outline: none;
}

.voucher-card__success {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-red);
    padding-bottom: 0.15rem;
}

.voucher-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 7.75rem;
    padding: 0.6rem 1.1rem;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 10px var(--brand-red-glow);
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.voucher-card--detail .voucher-card__btn {
    min-width: 9rem;
    padding: 0.7rem 1.35rem;
    font-size: 0.75rem;
}

.voucher-card__btn:hover:not(:disabled) {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--brand-red-glow);
}

.voucher-card__btn:disabled {
    opacity: 0.65;
    cursor: default;
    transform: none;
}

.voucher-card__code {
    margin-top: 0.75rem;
    padding: 0.75rem 0.875rem 0.625rem;
    background: var(--brand-red-soft);
    border: 1px dashed rgba(227, 6, 19, 0.35);
    border-radius: 10px;
    text-align: center;
}

.voucher-card__code-text {
    margin: 0 0 0.625rem;
    font-family: monospace;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--brand-red-dark);
}

.voucher-card__barcode {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
}

.voucher-card__code.is-hidden {
    display: none;
}

/* Admin preview panel — matches branded Hot Right Now mock */
.vouchers-preview {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem 2rem;
    background: linear-gradient(180deg, var(--brand-red-muted) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.vouchers-preview .vouchers-section__head {
    margin-bottom: 1.5rem;
}

.vouchers-preview .vouchers-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
}

.dashboard-main .vouchers-preview {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
}

@media (max-width: 480px) {
    .voucher-card {
        grid-template-columns: 1fr;
    }

    .voucher-card__accent {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 0.875rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(227, 6, 19, 0.1);
    }

    .voucher-card__discount {
        text-align: left;
        flex: 1;
        font-size: 1.125rem;
    }

    .voucher-card__footer {
        flex-wrap: wrap;
        align-items: center;
    }

    .voucher-card__actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .vouchers-preview {
        padding: 1.25rem 1rem 1.5rem;
    }
}

.voucher-page__main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 1.25rem 3rem;
}

.voucher-page__back {
    margin: 0 0 1rem;
}

.voucher-page__back a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-red);
    text-decoration: none;
}

.voucher-page__back a:hover,
.voucher-page__back a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.voucher-page__card-wrap {
    padding-top: 0.25rem;
}

/* --- Superadmin public preview (pre-launch) --- */

.public-preview-page .site-header__btn--outline:hover {
    color: #fff;
    background: var(--brand-red);
}

/* --- Category bar --- */

.category-bar {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

.category-bar__list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.category-bar__list::-webkit-scrollbar {
    height: 4px;
}

.category-bar__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.category-bar__item {
    flex: 1 1 0;
    min-width: 4.75rem;
}

.category-bar__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.15rem 0.25rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.category-bar__link:hover,
.category-bar__link:focus-visible {
    transform: translateY(-2px);
    opacity: 0.95;
    outline: none;
}

.category-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--brand-red-dark);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    font-size: 1.125rem;
    line-height: 1;
}

.category-bar__label {
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.category-page__main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

.category-page__hero {
    margin-bottom: 1.5rem;
}

.category-page__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.category-page__intro,
.category-page__empty {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.site-main {
    padding-top: 0;
}

.site-dev-banner {
    background: var(--brand-red-soft);
    border-bottom: 2px solid var(--brand-red);
    color: var(--text-primary);
}

.site-dev-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.65rem 1rem;
}

.site-dev-banner__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
}

.site-dev-banner__text .bi {
    color: var(--brand-red);
    margin-right: 0.35rem;
}

.site-dev-banner__text a {
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: underline;
}

.public-preview-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #f8fafc;
    border-bottom: 3px solid var(--brand-red);
}

.public-preview-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.875rem 1.25rem 1rem;
}

.public-preview-banner__text {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.public-preview-banner__text .bi {
    color: #fbbf24;
    margin-right: 0.35rem;
}

.preview-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.preview-nav__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    text-decoration: none;
}

.preview-nav__link:hover {
    color: #fca5a5;
}

.preview-nav__link--muted {
    color: #94a3b8;
}

.preview-nav__link--muted:hover {
    color: #e2e8f0;
}

.home-hero--compact {
    padding-bottom: 0.25rem;
}

.dashboard-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.dashboard-page-subtitle--note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
}

.dashboard-page-subtitle--note a {
    color: var(--brand-red);
    font-weight: 600;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--brand-red);
    color: #fff;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    overflow: visible;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.language-switcher__select {
    font-family: var(--font-body);
    font-size: 0.875rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--text-primary);
}

.language-switcher {
    margin-right: 0.5rem;
}

[dir="rtl"] .language-switcher {
    margin-right: 0;
    margin-left: 0.5rem;
}

.legal-page__main {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}

.legal-page__article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.legal-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
}

.legal-page__intro {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--brand-red-soft);
}

.legal-page__section {
    margin-bottom: 2rem;
}

.legal-page__section:last-of-type {
    margin-bottom: 0;
}

.legal-page__heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-red-dark);
    margin: 0 0 0.875rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.legal-page__subheading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.25rem 0 0.5rem;
}

.legal-page__section p {
    margin: 0 0 0.875rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.legal-page__list {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    line-height: 1.7;
}

.legal-page__list li {
    margin-bottom: 0.5rem;
}

.legal-page__list--ordered {
    list-style: decimal;
}

.legal-page__footer {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-page__intro--lead {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-red-dark);
    margin-bottom: 0.75rem;
}

.legal-page__section a {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page__section a:hover {
    color: var(--brand-red-dark);
}

.legal-page__list--alpha {
    list-style: lower-alpha;
}

.legal-page__section code {
    font-size: 0.875em;
    background: var(--brand-red-soft);
    color: var(--brand-red-dark);
    padding: 0.1em 0.35em;
    border-radius: 4px;
}

/* --- Storefront suite (Replit-inspired, brand red) --- */

.site-header--storefront .site-header__inner {
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
}

.site-header__suite-nav {
    display: none;
    align-items: center;
    gap: 0.35rem 0.75rem;
    margin-right: auto;
}

.site-header__suite-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: color 0.15s, background 0.15s;
}

.site-header__suite-link .bi {
    color: var(--brand-red);
    font-size: 0.9rem;
}

.site-header__suite-link:hover,
.site-header__suite-link:focus-visible {
    color: var(--brand-red);
    background: var(--brand-red-soft);
    outline: none;
}

.site-header__search {
    display: none;
    align-items: center;
    gap: 0.45rem;
    min-width: 10rem;
    max-width: 14rem;
    padding: 0.35rem 0.75rem;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
}

.site-header__search .bi {
    color: var(--text-muted);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.site-header__search input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    color: var(--text-primary);
    outline: none;
}

@media (min-width: 900px) {
    .site-header__suite-nav,
    .site-header__search {
        display: flex;
    }
}

.suite-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}

.suite-hero {
    position: relative;
    margin: 0 -1.25rem 2rem;
    padding: 2.5rem 1.25rem 2.75rem;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: #fff;
    overflow: hidden;
}

.suite-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 22px 22px;
    pointer-events: none;
}

.suite-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.suite-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-pill);
}

.suite-hero__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.suite-hero__subtitle {
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.suite-hero__search {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 640px;
    margin: 0 auto 1.35rem;
    padding: 0.35rem;
    background: #fff;
    border-radius: var(--radius-pill);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.suite-hero__search--inline {
    margin: 0;
    max-width: none;
    box-shadow: 0 4px 18px var(--brand-red-glow);
}

.suite-hero__search-icon {
    display: none;
    align-self: center;
    margin-left: 0.85rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.suite-hero__search-input {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 1rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
}

.suite-hero__search-btn {
    flex-shrink: 0;
    padding: 0.85rem 1.35rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: filter 0.15s, transform 0.15s;
}

.suite-hero__search-btn:hover,
.suite-hero__search-btn:focus-visible {
    filter: brightness(1.06);
    outline: none;
}

.suite-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.suite-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
}

.suite-hero__stat strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.suite-section__head,
.vouchers-section__head.suite-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.suite-section__title,
.vouchers-section__title.suite-section__title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.suite-section__title .bi,
.vouchers-section__title .bi-fire,
.vouchers-section__title .bi-lightning-charge-fill {
    color: var(--brand-red);
}

.suite-section__subtitle,
.vouchers-section__subtitle.suite-section__subtitle {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.suite-section__link {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand-red);
    text-decoration: none;
    white-space: nowrap;
}

.suite-section__link:hover,
.suite-section__link:focus-visible {
    text-decoration: underline;
    outline: none;
}

.suite-categories {
    margin-bottom: 2.25rem;
}

.suite-categories__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 600px) {
    .suite-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .suite-categories__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .suite-hero__search-icon {
        display: block;
    }

    .suite-hero__search-input {
        padding-left: 0;
    }
}

.suite-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 0.65rem;
    text-align: center;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid rgba(227, 6, 19, 0.12);
    border-radius: 12px;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.suite-category-card:hover,
.suite-category-card:focus-visible {
    border-color: rgba(227, 6, 19, 0.3);
    box-shadow: 0 8px 24px var(--brand-red-glow);
    transform: translateY(-2px);
    outline: none;
}

.suite-category-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 1.125rem;
}

.suite-category-card__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.vouchers-section--suite {
    margin-bottom: 2.25rem;
}

.vouchers-section--plain {
    margin-top: 0;
}

.suite-stores {
    margin-bottom: 2.25rem;
}

.suite-stores__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 720px) {
    .suite-stores__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.suite-store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.75rem;
    text-align: center;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.suite-store-card:hover,
.suite-store-card:focus-visible {
    border-color: rgba(227, 6, 19, 0.28);
    box-shadow: 0 6px 20px var(--brand-red-glow);
    outline: none;
}

.suite-store-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--brand-red-light);
    color: var(--brand-red);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
}

.suite-store-card__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.suite-store-card__count {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.suite-cta {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 1rem;
}

.suite-cta__btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 22px var(--brand-red-glow);
    transition: filter 0.15s, transform 0.15s;
}

.suite-cta__btn:hover,
.suite-cta__btn:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-1px);
    outline: none;
}

.suite-cta__count {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-transform: none;
}

.suite-deals-hero {
    margin-bottom: 1.5rem;
    padding: 1.5rem 0 0.5rem;
}

.suite-deals-hero__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
}

.suite-deals-hero__subtitle {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 40rem;
}

.suite-deals-hero__filter {
    margin: 0.85rem 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.suite-deals-hero__filter a {
    margin-left: 0.5rem;
    font-weight: 700;
    color: var(--brand-red);
}

.voucher-reveal-modal.modal {
    z-index: 1205;
}

.voucher-reveal-modal.modal ~ .modal-backdrop {
    z-index: 1200;
}

.voucher-reveal-modal__body {
    text-align: center;
    padding-top: 0.25rem;
}

.voucher-reveal-modal__text {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.voucher-reveal-modal__turnstile {
    display: flex;
    justify-content: center;
    min-height: 4.5rem;
}

.voucher-reveal-modal .modal-content {
    border: 1px solid rgba(227, 6, 19, 0.12);
    border-radius: 12px;
}

.voucher-reveal-modal .modal-header {
    border-bottom-color: rgba(227, 6, 19, 0.1);
}

.voucher-reveal-modal .modal-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text-primary);
}

/* ==========================================================================
   SaaS Design System — Premium homepage
   ========================================================================== */

:root {
    --saas-glass-bg: rgba(255, 255, 255, 0.72);
    --saas-glass-border: rgba(255, 255, 255, 0.45);
    --saas-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    --saas-shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.12);
    --saas-blur: 16px;
    --saas-section-gap: clamp(3rem, 8vw, 5.5rem);
    --saas-max-width: 1200px;
    --saas-hero-min: min(92vh, 880px);
}

[data-theme="dark"] {
    --text-primary: #f1f5f9;
    --text-muted: #94a3b8;
    --surface: #0f172a;
    --surface-muted: #1e293b;
    --border: #334155;
    --brand-red-soft: rgba(227, 6, 19, 0.12);
    --brand-red-muted: rgba(227, 6, 19, 0.08);
    --saas-glass-bg: rgba(15, 23, 42, 0.78);
    --saas-glass-border: rgba(148, 163, 184, 0.18);
    --saas-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    --saas-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .site-header--saas {
    background: rgba(15, 23, 42, 0.85);
    border-bottom-color: rgba(148, 163, 184, 0.12);
}

[data-theme="dark"] .site-header__logo {
    filter: brightness(1.05);
}

/* Glass utility */
.saas-glass {
    background: var(--saas-glass-bg);
    backdrop-filter: blur(var(--saas-blur));
    -webkit-backdrop-filter: blur(var(--saas-blur));
    border: 1px solid var(--saas-glass-border);
    box-shadow: var(--saas-shadow);
}

/* Buttons */
.saas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    white-space: nowrap;
}

.saas-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    box-shadow: 0 6px 24px var(--brand-red-glow);
}

.saas-btn--primary:hover,
.saas-btn--primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px var(--brand-red-glow);
    outline: none;
    filter: brightness(1.05);
}

.saas-btn--glass {
    color: var(--text-primary);
    background: var(--saas-glass-bg);
    backdrop-filter: blur(var(--saas-blur));
    border: 1px solid var(--saas-glass-border);
}

.saas-btn--glass:hover,
.saas-btn--glass:focus-visible {
    transform: translateY(-1px);
    outline: none;
    border-color: rgba(227, 6, 19, 0.35);
}

.saas-btn--ghost {
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.saas-btn--ghost:hover,
.saas-btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Header SaaS */
.site-header--saas {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header__saas-nav {
    display: none;
    align-items: center;
    gap: 0.25rem 1rem;
    flex: 1;
    justify-content: center;
    padding: 0 1rem;
}

.site-header__saas-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.site-header__saas-link:hover,
.site-header__saas-link:focus-visible {
    color: var(--brand-red);
    background: var(--brand-red-muted);
    outline: none;
}

.site-header__theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.site-header__theme-toggle:hover,
.site-header__theme-toggle:focus-visible {
    border-color: var(--brand-red);
    color: var(--brand-red);
    outline: none;
}

@media (min-width: 900px) {
    .site-header__saas-nav {
        display: flex;
    }
}

/* Main layout */
.saas-page {
    background: var(--surface-muted);
}

.saas-main {
    max-width: none;
    padding: 0;
    margin: 0;
}

.saas-section {
    max-width: var(--saas-max-width);
    margin: 0 auto;
    padding: var(--saas-section-gap) 1.25rem;
}

.saas-section__head {
    margin-bottom: 2rem;
}

.saas-section__head--center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.saas-section__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
}

.saas-section__subtitle {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.55;
    color: var(--text-muted);
}

/* Reveal animation */
.saas-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.saas-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .saas-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .saas-hero__mesh {
        animation: none !important;
    }
}

/* Hero */
.saas-hero {
    position: relative;
    min-height: var(--saas-hero-min);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(5rem, 12vw, 7rem) 1.25rem clamp(3rem, 8vw, 4rem);
    overflow: hidden;
    color: #fff;
}

.saas-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.saas-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(227, 6, 19, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184, 5, 15, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 60% 90%, rgba(227, 6, 19, 0.35) 0%, transparent 55%),
        linear-gradient(145deg, #0a0a0a 0%, #1a0508 35%, #2d0a0d 70%, var(--brand-red-dark) 100%);
    animation: saas-mesh-shift 18s ease-in-out infinite alternate;
}

@keyframes saas-mesh-shift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-1%, -1%); }
}

.saas-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saas-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.saas-hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

.saas-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

.saas-hero__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6.5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.saas-hero__subtitle {
    margin: 0 auto 2rem;
    max-width: 36rem;
    font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.saas-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.saas-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 720px;
    margin-inline: auto;
}

@media (min-width: 640px) {
    .saas-hero__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.saas-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 0.75rem;
    border-radius: 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.saas-hero__stat strong {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

/* Trusted by */
.saas-trusted__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.saas-trusted__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 14px;
    transition: transform 0.2s;
}

.saas-trusted__logo:hover {
    transform: translateY(-3px);
}

.saas-trusted__initial {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-red);
}

/* Categories */
.saas-categories__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (min-width: 600px) {
    .saas-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .saas-categories__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.saas-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1.25rem 0.75rem;
    text-decoration: none;
    border-radius: 16px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.saas-category-card:hover,
.saas-category-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(227, 6, 19, 0.35);
    box-shadow: var(--saas-shadow-lg);
    outline: none;
}

.saas-category-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 1.25rem;
}

.saas-category-card__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.25;
}

/* How it works */
.saas-how__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

@media (min-width: 768px) {
    .saas-how__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.saas-how__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 20px;
}

.saas-how__num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-red);
    opacity: 0.6;
}

.saas-how__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: #fff;
    font-size: 1.35rem;
}

.saas-how__step-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.saas-how__step-desc {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Business benefits */
.saas-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .saas-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .saas-benefits__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.saas-benefit-card {
    padding: 1.5rem;
    border-radius: 20px;
    transition: transform 0.2s;
}

.saas-benefit-card:hover {
    transform: translateY(-4px);
}

.saas-benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 1.25rem;
}

.saas-benefit-card__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
}

.saas-benefit-card__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Corporate */
.saas-corporate__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 24px;
    background:
        linear-gradient(135deg, var(--brand-red-muted) 0%, transparent 50%),
        var(--saas-glass-bg);
}

@media (min-width: 768px) {
    .saas-corporate__inner {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

.saas-corporate__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.saas-corporate__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.saas-corporate__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 1.125rem;
}

.saas-corporate__item-title {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.saas-corporate__item-desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Dashboard preview */
.saas-dashboard__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .saas-dashboard__layout {
        grid-template-columns: 1fr 1.15fr;
    }
}

.saas-dashboard__highlights {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.saas-dashboard__highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.saas-dashboard__highlights .bi {
    color: var(--brand-red);
}

.saas-dashboard__mock {
    border-radius: 20px;
    overflow: hidden;
}

.saas-dashboard__mock-header {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    background: var(--surface-muted);
    border-bottom: 1px solid var(--border);
}

.saas-dashboard__mock-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--border);
}

.saas-dashboard__mock-dot:first-child { background: var(--brand-red); }

.saas-dashboard__mock-body {
    padding: 1.25rem;
}

.saas-dashboard__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.saas-dashboard__metric {
    padding: 0.85rem;
    border-radius: 12px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
}

.saas-dashboard__metric-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.saas-dashboard__metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
}

.saas-dashboard__metric-change {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--brand-red);
}

.saas-dashboard__chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 140px;
    padding: 0.5rem 0;
}

.saas-dashboard__bar {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    opacity: 0.85;
    transition: height 0.8s ease;
}

/* Mobile preview */
.saas-mobile__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .saas-mobile__layout {
        grid-template-columns: 1fr 1fr;
    }

    .saas-mobile__device {
        order: -1;
        justify-self: center;
    }
}

.saas-mobile__device {
    width: min(280px, 80vw);
    padding: 0.75rem;
    border-radius: 32px;
}

.saas-mobile__notch {
    width: 40%;
    height: 6px;
    margin: 0 auto 0.75rem;
    border-radius: var(--radius-pill);
    background: var(--border);
}

.saas-mobile__screen {
    padding: 1.25rem 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--surface-muted) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
}

.saas-mobile__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: #fff;
    text-align: center;
}

.saas-mobile__brand {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.saas-mobile__value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.saas-mobile__merchant {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.saas-mobile__qr {
    margin: 0.75rem 0;
    font-size: 3rem;
    opacity: 0.95;
}

.saas-mobile__wallets {
    display: flex;
    gap: 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    opacity: 0.85;
}

.saas-mobile__features {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.saas-mobile__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.saas-mobile__features .bi {
    color: var(--brand-red);
}

/* Features strip */
.saas-features__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.saas-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: var(--radius-pill);
}

.saas-feature-pill .bi {
    color: var(--brand-red);
    font-size: 1rem;
}

/* Testimonials */
.saas-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .saas-testimonials__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.saas-testimonial {
    margin: 0;
    padding: 1.5rem;
    border-radius: 20px;
}

.saas-testimonial__quote {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.saas-testimonial__author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.saas-testimonial__author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ */
.saas-faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.saas-faq__item {
    border-radius: 14px;
    overflow: hidden;
}

.saas-faq__item[open] .saas-faq__chevron {
    transform: rotate(180deg);
}

.saas-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.saas-faq__question::-webkit-details-marker {
    display: none;
}

.saas-faq__chevron {
    flex-shrink: 0;
    color: var(--brand-red);
    transition: transform 0.2s;
}

.saas-faq__answer {
    padding: 0 1.25rem 1.1rem;
}

.saas-faq__answer p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Final CTA */
.saas-final-cta__inner {
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(227, 6, 19, 0.08) 0%, transparent 60%),
        var(--saas-glass-bg);
}

.saas-final-cta__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
}

.saas-final-cta__subtitle {
    margin: 0 auto 1.75rem;
    max-width: 32rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.saas-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Vouchers section on SaaS page */
.vouchers-section--saas {
    max-width: var(--saas-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.vouchers-section--saas .vouchers-section__title .bi-fire {
    color: var(--brand-red);
}

/* Gift & premium feature pages */
.saas-feature-pill--link {
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.saas-feature-pill--link:hover,
.saas-feature-pill--link:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--saas-shadow-lg);
    outline: none;
}

.gift-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 600px) {
    .gift-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .gift-features__grid { grid-template-columns: repeat(3, 1fr); }
}

.gift-feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.15s;
}

.gift-feature-card:hover { transform: translateY(-3px); }

.gift-feature-card__icon {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 1.125rem;
}

.gift-feature-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.gift-feature-card__desc {
    margin: 0;
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.gift-feature-card__link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand-red);
}

.gift-features__detail {
    padding: 1.5rem;
    border-radius: 16px;
}

.gift-send__form,
.gift-view__card {
    max-width: 560px;
    margin: 1.5rem auto 0;
    padding: 1.5rem;
    border-radius: 16px;
}

.gift-send__field { margin-bottom: 1rem; }

.gift-send__field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.gift-send__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text-primary);
}

.gift-send__textarea { resize: vertical; min-height: 100px; }

.gift-send__hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.gift-send__submit { width: 100%; margin-top: 0.5rem; }

.gift-alert {
    max-width: 560px;
    margin: 1rem auto;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9375rem;
}

.gift-alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.gift-alert--success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.gift-view__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-red);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.gift-view__title {
    margin: 0.5rem 0 0;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
}

.gift-view__message {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--brand-red-soft);
    border-left: 4px solid var(--brand-red);
    border-radius: 0 8px 8px 0;
}

.gift-view__qr {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.gift-view__qr svg { max-width: 220px; height: auto; }

.gift-view__wallets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.gift-redeem__panel {
    max-width: 480px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
}

.gift-redeem__status { margin-top: 1rem; font-size: 0.9375rem; }
.gift-redeem__status--ok { color: var(--brand-red); font-weight: 700; }
.gift-redeem__status--err { color: #991b1b; }

.business-scan__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .business-scan__layout { grid-template-columns: 1.2fr 1fr; }
}

.business-scan__camera {
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
}

.business-scan__manual {
    padding: 1.25rem;
    border-radius: 16px;
}

.business-analytics__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .business-analytics__metrics { grid-template-columns: repeat(4, 1fr); }
}

.business-analytics__chart {
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.business-analytics__chart canvas {
    width: 100%;
    height: auto;
}

.corporate-portal__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .corporate-portal__grid { grid-template-columns: 1.4fr 1fr; }
}

.corporate-portal__bulk,
.corporate-portal__orders {
    padding: 1.5rem;
    border-radius: 16px;
}

.corporate-portal__order-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.corporate-portal__order-list li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

.voucher-page__gift-cta {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.dashboard-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
