/* _content/Padel/Components/Layout/AdminLayout.razor.rz.scp.css */
/* ── Mobile topbar (hidden on desktop) ── */

.admin-topbar[b-e66fnaf0an] {
    display: none;
}

.admin-backdrop[b-e66fnaf0an] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 299;
}

.admin-backdrop.show[b-e66fnaf0an] {
    display: block;
}

/* ── Hamburger button ── */

.admin-hamburger[b-e66fnaf0an] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.admin-hamburger:hover[b-e66fnaf0an] {
    background: rgba(255,255,255,0.1);
}

.admin-hamburger .hamburger-line[b-e66fnaf0an] {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

/* ── Mobile ── */

@media (max-width: 768px) {
    .admin-topbar[b-e66fnaf0an] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        height: 56px;
        background: #2d3328;
        position: sticky;
        top: 0;
        z-index: 200;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .admin-topbar-brand[b-e66fnaf0an] {
        display: flex;
        flex-direction: column;
    }

    .admin-topbar-eyebrow[b-e66fnaf0an] {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #6d7e61;
        margin-bottom: 0.3rem;
    }

    .admin-topbar-title[b-e66fnaf0an] {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.01em;
        line-height: 1;
    }

    .admin-layout[b-e66fnaf0an] {
        display: block;
    }

    .admin-sidebar[b-e66fnaf0an] {
        position: fixed;
        top: 0;
        left: 0;
        width: 260px;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 300;
    }

    .admin-sidebar.open[b-e66fnaf0an] {
        transform: translateX(0);
    }

    /* Topbar replaces the in-sidebar brand on mobile */
    .admin-sidebar-brand[b-e66fnaf0an] {
        display: none;
    }

    .admin-content[b-e66fnaf0an] {
        padding: 1.5rem;
    }
}
/* _content/Padel/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-xfqgfp6cg8] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-xfqgfp6cg8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Padel/Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-v5eeahqkq9],
.components-reconnect-repeated-attempt-visible[b-v5eeahqkq9],
.components-reconnect-failed-visible[b-v5eeahqkq9],
.components-pause-visible[b-v5eeahqkq9],
.components-resume-failed-visible[b-v5eeahqkq9],
.components-rejoining-animation[b-v5eeahqkq9] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-retrying[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-failed[b-v5eeahqkq9],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-v5eeahqkq9] {
    display: block;
}


#components-reconnect-modal[b-v5eeahqkq9] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-v5eeahqkq9 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-v5eeahqkq9 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-v5eeahqkq9 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-v5eeahqkq9]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-v5eeahqkq9 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-v5eeahqkq9 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-v5eeahqkq9 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-v5eeahqkq9 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-v5eeahqkq9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-v5eeahqkq9] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-v5eeahqkq9] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
}

    #components-reconnect-modal button:hover[b-v5eeahqkq9] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-v5eeahqkq9] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-v5eeahqkq9] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-v5eeahqkq9] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-v5eeahqkq9 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-v5eeahqkq9] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-v5eeahqkq9 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* _content/Padel/Components/Pages/About.razor.rz.scp.css */
/* ═══ Geschichte / Timeline ═══ */
.about-timeline[b-9kswchzdgq] {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Vertical line */
.about-timeline[b-9kswchzdgq]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.55);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item[b-9kswchzdgq] {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    align-items: start;
    gap: 0 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Year label — right side by default */
.timeline-year[b-9kswchzdgq] {
    grid-column: 3;
    grid-row: 1;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding-top: 0.2rem;
}

/* Card — left side by default */
.timeline-card[b-9kswchzdgq] {
    grid-column: 1;
    grid-row: 1;
    background: var(--color-white);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(109,126,97,0.10);
    text-align: right;
}

.timeline-card-img[b-9kswchzdgq] {
    overflow: hidden;
}


.timeline-card h3[b-9kswchzdgq] {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    margin: 1rem 1.25rem 0.4rem;
}

.timeline-card p[b-9kswchzdgq] {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0 1.25rem 1.25rem;
}

/* Dot on the line */
.timeline-marker[b-9kswchzdgq] {
    grid-column: 2;
    grid-row: 1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    margin-top: 0.75rem;
    justify-self: center;
    z-index: 1;
}

/* Alternating: card on right, year on left */
.timeline-item-alt .timeline-card[b-9kswchzdgq] {
    grid-column: 3;
    text-align: left;
}

.timeline-item-alt .timeline-year[b-9kswchzdgq] {
    grid-column: 1;
    text-align: right;
}

/* Future items — lighter, dashed line above marker */
.timeline-future[b-9kswchzdgq] {
    opacity: 0.55;
}

.timeline-future .timeline-marker[b-9kswchzdgq] {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    border-style: dashed;
}

.about-timeline[b-9kswchzdgq]::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 3rem;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.4) 0,
        rgba(255,255,255,0.4) 6px,
        transparent 6px,
        transparent 12px
    );
    transform: translateX(-50%);
}

/* ═══ Packages ═══ */
.about-packages[b-9kswchzdgq] {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-package-card[b-9kswchzdgq] {
    background: var(--color-white);
    border: 2px solid var(--color-border-light, #ece6de);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-package-card:hover[b-9kswchzdgq] {
    box-shadow: 0 8px 28px rgba(109,126,97,0.13);
    transform: translateY(-3px);
}

.about-package-featured[b-9kswchzdgq] {
    border-color: var(--color-primary);
    background: var(--color-primary-dark);
}

.about-package-badge[b-9kswchzdgq] {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent, #c8a96e);
    color: var(--color-primary-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 3px 14px;
    white-space: nowrap;
}

.about-package-name[b-9kswchzdgq] {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

.about-package-featured .about-package-name[b-9kswchzdgq] { color: var(--color-white); }

.about-package-price[b-9kswchzdgq] {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1;
    margin: 0.4rem 0 0.1rem;
}

.about-package-featured .about-package-price[b-9kswchzdgq] { color: var(--color-white); }

.about-package-desc[b-9kswchzdgq] {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.about-package-crossed[b-9kswchzdgq] {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.45;
    white-space: nowrap;
    margin-top: 0.1rem;
}

.about-package-featured .about-package-desc[b-9kswchzdgq] { color: rgba(255,255,255,0.65); }

.about-package-featured .about-package-crossed[b-9kswchzdgq] { color: var(--color-white); }

/* ═══ Nachhaltigkeit ═══ */
.about-sustainability-tagline[b-9kswchzdgq] {
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    margin-top: 0.25rem;
}

/* ═══ Responsive ═══ */
@media (max-width: 767.98px) {
    .about-timeline[b-9kswchzdgq]::before,
    .about-timeline[b-9kswchzdgq]::after {
        left: 15px;
    }

    .timeline-item[b-9kswchzdgq],
    .timeline-item-alt[b-9kswchzdgq] {
        grid-template-columns: 32px 1fr;
        grid-template-rows: auto auto;
    }

    .timeline-marker[b-9kswchzdgq] {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-year[b-9kswchzdgq],
    .timeline-item-alt .timeline-year[b-9kswchzdgq] {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding-top: 0.2rem;
    }

    .timeline-card[b-9kswchzdgq],
    .timeline-item-alt .timeline-card[b-9kswchzdgq] {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }

    .about-package-card[b-9kswchzdgq] {
        max-width: 100%;
    }
}
/* _content/Padel/Components/Pages/Admin/ChangePassword.razor.rz.scp.css */
.account-card[b-71j32lsvtx] {
    width: 100%;
    max-width: 440px;
}
/* _content/Padel/Components/Pages/Admin/FaqEdit.razor.rz.scp.css */
.quill-editor-wrap[b-hs8egl4qdo] {
    border: 1px solid var(--admin-border, #e5e7eb);
    border-radius: 6px;
    min-height: 140px;
    background: #fff;
}

.quill-editor-wrap[b-hs8egl4qdo]  .ql-editor {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
}
/* _content/Padel/Components/Pages/Admin/FaqList.razor.rz.scp.css */
.faq-row[b-b12cz2uzt8] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--admin-border, #e5e7eb);
    background: var(--admin-bg, #fff);
}

.faq-row:last-child[b-b12cz2uzt8] { border-bottom: none; }

.faq-row.sortable-ghost[b-b12cz2uzt8] {
    opacity: 0.4;
    background: var(--admin-hover-bg, #f3f4f6);
}

.drag-handle[b-b12cz2uzt8] {
    cursor: grab;
    color: var(--text-muted, #9ca3af);
    display: flex;
    align-items: center;
    padding: 0 0.25rem;
    flex-shrink: 0;
}

.drag-handle:active[b-b12cz2uzt8] { cursor: grabbing; }
.drag-handle svg[b-b12cz2uzt8] { width: 18px; height: 18px; }

.faq-row-question[b-b12cz2uzt8] {
    flex: 1;
    font-weight: 500;
}

.faq-row-status[b-b12cz2uzt8] { flex-shrink: 0; }

.faq-row-actions[b-b12cz2uzt8] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 599px) {
    .faq-row[b-b12cz2uzt8] {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4rem;
        padding: 0.75rem 0.625rem;
    }

    .drag-handle[b-b12cz2uzt8] {
        order: 0;
        align-self: center;
    }

    .faq-row-question[b-b12cz2uzt8] {
        order: 1;
        flex: 1;
        min-width: 0;
    }

    .faq-row-status[b-b12cz2uzt8] {
        order: 2;
        width: 100%;
        padding-left: 28px;
    }

    .faq-row-actions[b-b12cz2uzt8] {
        order: 3;
        width: 100%;
        padding-left: 28px;
    }
}
/* _content/Padel/Components/Pages/Admin/NewsletterCampaignEdit.razor.rz.scp.css */
.admin-confirm-overlay[b-suyl4qy6fz] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.admin-confirm-box[b-suyl4qy6fz] {
    background: var(--admin-card-bg, #1e2a1e);
    border: 1px solid var(--border-color);
    padding: 2rem;
    max-width: 440px;
    width: 100%;
}

.admin-confirm-box h3[b-suyl4qy6fz] {
    margin: 0 0 0.75rem;
}

.admin-confirm-box p[b-suyl4qy6fz] {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .form-actions[b-suyl4qy6fz] {
        flex-direction: column;
        gap: 1rem !important;
    }

    .form-actions .btn[b-suyl4qy6fz] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/Padel/Components/Pages/Admin/OrderDetail.razor.rz.scp.css */
/* ── Order detail 2-column grid ── */

.order-detail-grid[b-8a94039cmg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.detail-table th[b-8a94039cmg] {
    padding-right: 2rem;
}

@media (max-width: 700px) {
    .order-detail-grid[b-8a94039cmg] {
        grid-template-columns: 1fr;
    }
}
/* _content/Padel/Components/Pages/Admin/ProductEdit.razor.rz.scp.css */
.size-checkboxes[b-bpboi2wgmk] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-checkbox-label[b-bpboi2wgmk] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 6px 16px;
    border: 1px solid var(--admin-border, rgba(255,255,255,0.15));
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted, #9a9e94);
    user-select: none;
}

.size-checkbox-label input[type="checkbox"][b-bpboi2wgmk] {
    display: none;
}

.size-checkbox-label:hover[b-bpboi2wgmk] {
    border-color: var(--primary, #6d7e61);
    color: #fff;
}

.size-checkbox-label.active[b-bpboi2wgmk] {
    background: var(--primary, #6d7e61);
    border-color: var(--primary, #6d7e61);
    color: #fff;
}
/* _content/Padel/Components/Pages/Admin/ProductList.razor.rz.scp.css */
.product-filter-bar[b-lynj2sz09r] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.product-filter-bar .form-control[b-lynj2sz09r] {
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.product-filter-cats[b-lynj2sz09r] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.filter-cat-btn[b-lynj2sz09r] {
    padding: 6px 14px;
    border: 1px solid var(--admin-border, rgba(255,255,255,0.15));
    background: transparent;
    color: var(--text-muted, #9a9e94);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-cat-btn:hover[b-lynj2sz09r] {
    border-color: var(--primary, #6d7e61);
    background: var(--primary, #6d7e61);
    color: #fff;
}

.filter-cat-btn.active[b-lynj2sz09r] {
    background: var(--primary, #6d7e61);
    border-color: var(--primary, #6d7e61);
    color: #fff;
}
/* _content/Padel/Components/Pages/Admin/RuleEdit.razor.rz.scp.css */
.quill-editor-wrap[b-z53biwapcq] {
    border: 1px solid var(--admin-border, #e5e7eb);
    border-radius: 6px;
    min-height: 140px;
    background: #fff;
}

.quill-editor-wrap[b-z53biwapcq]  .ql-editor {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
}
/* _content/Padel/Components/Pages/Admin/RuleList.razor.rz.scp.css */
.rule-row[b-3xzklg3dl7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--admin-border, #e5e7eb);
    background: var(--admin-bg, #fff);
    transition: background 0.15s;
}

.rule-row:last-child[b-3xzklg3dl7] {
    border-bottom: none;
}

.rule-row.sortable-ghost[b-3xzklg3dl7] {
    opacity: 0.4;
    background: var(--admin-hover-bg, #f3f4f6);
}

.drag-handle[b-3xzklg3dl7] {
    cursor: grab;
    color: var(--text-muted, #9ca3af);
    display: flex;
    align-items: center;
    padding: 0 0.25rem;
    flex-shrink: 0;
}

.drag-handle:active[b-3xzklg3dl7] {
    cursor: grabbing;
}

.drag-handle svg[b-3xzklg3dl7] {
    width: 18px;
    height: 18px;
}

.rule-title[b-3xzklg3dl7] {
    flex: 1;
    font-weight: 500;
}

.rule-actions[b-3xzklg3dl7] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 599px) {
    .rule-row[b-3xzklg3dl7] {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4rem;
        padding: 0.75rem 0.625rem;
    }

    .drag-handle[b-3xzklg3dl7] {
        order: 0;
        align-self: center;
    }

    .rule-title[b-3xzklg3dl7] {
        order: 1;
        flex: 1;
        min-width: 0;
    }

    .rule-actions[b-3xzklg3dl7] {
        order: 2;
        width: 100%;
        padding-left: 28px;
    }
}
/* _content/Padel/Components/Pages/Admin/TwoFactor.razor.rz.scp.css */
.tfa-status[b-0a4aoa529l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.tfa-enabled[b-0a4aoa529l] {
    background: #d1fae5;
    color: #065f46;
}

.tfa-disabled[b-0a4aoa529l] {
    background: #fee2e2;
    color: #991b1b;
}

.tfa-section[b-0a4aoa529l] {
    margin-bottom: 2rem;
}

.tfa-section-title[b-0a4aoa529l] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tfa-hint[b-0a4aoa529l] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.tfa-qr[b-0a4aoa529l] {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    background: #fff;
}

.tfa-manual-key[b-0a4aoa529l] {
    display: inline-block;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    word-break: break-all;
}

.tfa-codes[b-0a4aoa529l] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tfa-code[b-0a4aoa529l] {
    background: #f1f5f9;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.tfa-form-wrap[b-0a4aoa529l] {
    width: 100%;
    max-width: 440px;
}

.tfa-actions[b-0a4aoa529l] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tfa-recovery-toggle[b-0a4aoa529l] {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
/* _content/Padel/Components/Pages/Admin/TwoFactorLogin.razor.rz.scp.css */
.admin-2fa-hint[b-dv0fdj19gk] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.tfa-recovery-toggle[b-dv0fdj19gk] {
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
/* _content/Padel/Components/Pages/Booking.razor.rz.scp.css */
.booking-section[b-htwh0nczgl] {
    padding: 40px 0 80px;
}

.booking-frame-wrapper[b-htwh0nczgl] {
    border: 1px solid var(--color-border-light, #ece6de);
    overflow: hidden;
    background: var(--color-white, #fff);
}

.booking-frame[b-htwh0nczgl] {
    display: block;
    width: 100%;
    min-height: 800px;
    border: none;
}

@media (max-width: 575.98px) {
    .booking-frame[b-htwh0nczgl] {
        min-height: 600px;
    }

    .booking-section[b-htwh0nczgl] {
        padding: 20px 0 40px;
    }
}
/* _content/Padel/Components/Pages/Checkout.razor.rz.scp.css */
/* ── Layout ── */

.checkout-layout[b-3i1emy4y8u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── Empty state ── */

.checkout-empty[b-3i1emy4y8u] {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--color-text-secondary);
}

.checkout-empty svg[b-3i1emy4y8u] {
    stroke: var(--color-primary-light);
    margin-bottom: 1.5rem;
}

.checkout-empty p[b-3i1emy4y8u] {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* ── Section label ── */

.checkout-section-label[b-3i1emy4y8u] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

/* ── Order summary ── */

.checkout-summary-wrap[b-3i1emy4y8u] {
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    padding: 2rem;
}

.checkout-items[b-3i1emy4y8u] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-item[b-3i1emy4y8u] {
    display: grid;
    grid-template-columns: 52px 1fr auto auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.checkout-item-img-wrap[b-3i1emy4y8u] {
    width: 52px;
    height: 52px;
    background: var(--color-beige);
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-item-img-wrap img[b-3i1emy4y8u] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-img-placeholder[b-3i1emy4y8u] {
    width: 100%;
    height: 100%;
    background: var(--color-beige-dark);
}

.checkout-item-info[b-3i1emy4y8u] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.checkout-item-name[b-3i1emy4y8u] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-size[b-3i1emy4y8u] {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.checkout-item-unit-price[b-3i1emy4y8u] {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
}

/* ── Qty stepper ── */

.checkout-item-qty[b-3i1emy4y8u] {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border);
    background: var(--color-white);
}

.qty-btn[b-3i1emy4y8u] {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-text-secondary);
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}

.qty-btn:hover[b-3i1emy4y8u] {
    color: var(--color-primary-dark);
    background: var(--color-beige);
}

.qty-value[b-3i1emy4y8u] {
    width: 28px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Line total ── */

.checkout-item-line[b-3i1emy4y8u] {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}

/* ── Remove button ── */

.checkout-item-remove[b-3i1emy4y8u] {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    transition: color 0.2s;
    padding: 0;
}

.checkout-item-remove:hover[b-3i1emy4y8u] {
    color: #c0392b;
}

/* ── Subtotal row ── */

.checkout-subtotal[b-3i1emy4y8u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
}

/* ── Total row ── */

.checkout-total[b-3i1emy4y8u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    margin-top: 0.25rem;
}

.checkout-total span[b-3i1emy4y8u] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.checkout-total strong[b-3i1emy4y8u] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: 0.02em;
}

/* ── Form ── */

.checkout-form-wrap[b-3i1emy4y8u] {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 2rem;
}

.co-optional[b-3i1emy4y8u] {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--color-text-light);
    font-size: 0.7rem;
}

/* ── Error banner ── */

.co-error-banner[b-3i1emy4y8u] {
    padding: 10px 14px;
    background: #fdecea;
    border-left: 3px solid #c0392b;
    color: #c0392b;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
}

/* ── Submit button ── */

.co-submit[b-3i1emy4y8u] {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ── Green section overrides ── */

.section-green .checkout-empty[b-3i1emy4y8u] {
    color: rgba(255, 255, 255, 0.8);
}

.section-green .checkout-empty svg[b-3i1emy4y8u] {
    stroke: rgba(255, 255, 255, 0.6);
}

.section-green .checkout-summary-wrap[b-3i1emy4y8u] {
    background: var(--color-surface-light);
    border-color: var(--color-border);
}

.section-green .checkout-form-wrap[b-3i1emy4y8u] {
    background: var(--color-surface-light);
    border-color: var(--color-border);
}

/* ── Address split row ── */

.checkout-address-row[b-3i1emy4y8u] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: start;
}

.checkout-housenr[b-3i1emy4y8u] {
    width: 90px;
}

.checkout-plz[b-3i1emy4y8u] {
    width: 100px;
}

.checkout-address-row > div:not(.checkout-housenr):not(.checkout-plz)[b-3i1emy4y8u] {
    flex: 1;
}

/* second row: PLZ + City */
.checkout-address-row:last-of-type[b-3i1emy4y8u] {
    grid-template-columns: 100px 1fr;
}

/* ── Responsive ── */

@media (max-width: 860px) {
    .checkout-layout[b-3i1emy4y8u] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-item[b-3i1emy4y8u] {
        grid-template-columns: 48px 1fr auto;
        grid-template-rows: auto auto;
    }

    .checkout-item-line[b-3i1emy4y8u] {
        grid-column: 3;
        grid-row: 1;
    }

    .checkout-item-qty[b-3i1emy4y8u] {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }

    .checkout-item-remove[b-3i1emy4y8u] {
        grid-column: 3;
        grid-row: 2;
    }
}
/* _content/Padel/Components/Pages/CheckoutCancel.razor.rz.scp.css */
.cs-wrap[b-gma99vgav6] {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.cs-icon[b-gma99vgav6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255,255,255,0.4);
}

.cs-icon-cancel[b-gma99vgav6] {
    background: rgba(220,53,69,0.15);
    border-color: rgba(220,53,69,0.4);
}

.cs-wrap h2[b-gma99vgav6] {
    margin-bottom: 0.5rem;
}

.cs-wrap p[b-gma99vgav6] {
    opacity: 0.85;
}
/* _content/Padel/Components/Pages/CheckoutSuccess.razor.rz.scp.css */
.cs-wrap[b-gq8mp8yid5] {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.cs-icon[b-gq8mp8yid5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255,255,255,0.4);
}

.cs-icon-cancel[b-gq8mp8yid5] {
    background: rgba(220,53,69,0.15);
    border-color: rgba(220,53,69,0.4);
}

.cs-wrap h2[b-gq8mp8yid5] {
    margin-bottom: 0.5rem;
}

.cs-wrap p[b-gq8mp8yid5] {
    opacity: 0.85;
    margin-bottom: 0;
}

.cs-order-box[b-gq8mp8yid5] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cs-order-meta[b-gq8mp8yid5] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
}

.cs-order-meta span[b-gq8mp8yid5] {
    opacity: 0.75;
}

.cs-status-pending[b-gq8mp8yid5] { color: #ffc107; }
.cs-status-confirmed[b-gq8mp8yid5] { color: #90ee90; }

.cs-items[b-gq8mp8yid5] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.cs-item[b-gq8mp8yid5] {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cs-item:last-child[b-gq8mp8yid5] { border-bottom: none; }

.cs-total-row[b-gq8mp8yid5] {
    background: rgba(255,255,255,0.06);
}

.cs-item-name[b-gq8mp8yid5] { font-weight: 500; }

.cs-item-size[b-gq8mp8yid5] {
    font-size: 0.8rem;
    opacity: 0.65;
    margin-left: 4px;
}

.cs-item-qty[b-gq8mp8yid5] { opacity: 0.7; text-align: center; }
.cs-item-total[b-gq8mp8yid5] { text-align: right; font-weight: 500; }
/* _content/Padel/Components/Pages/Community.razor.rz.scp.css */
.wa-groups[b-9hjn6enyue] {
    display: flex;
    gap: 24px;
    margin-top: 3rem;
}

.wa-group-item[b-9hjn6enyue] {
    flex: 1;
    min-width: 0;
}

@media (max-width: 1024px) {
    .wa-groups[b-9hjn6enyue] {
        flex-wrap: wrap;
    }

    .wa-group-item[b-9hjn6enyue] {
        flex: 0 0 calc(50% - 12px);
    }

    .wa-group-item:last-child:nth-child(odd)[b-9hjn6enyue] {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .wa-groups[b-9hjn6enyue] {
        flex-direction: column;
    }

    .wa-group-item[b-9hjn6enyue] {
        flex: 1 1 auto;
    }
}
/* _content/Padel/Components/Pages/Contact.razor.rz.scp.css */
.form-group[b-0ae6d068r1] {
    margin-bottom: 2rem;
}

/* ── Green section overrides ── */

.section-green .form-label-premium[b-0ae6d068r1] {
    color: rgba(255, 255, 255, 0.85);
}

.section-green .form-input[b-0ae6d068r1] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.section-green .form-input[b-0ae6d068r1]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.section-green .form-input:focus[b-0ae6d068r1] {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
    outline: none;
}

.section-green .contact-label[b-0ae6d068r1] {
    color: rgba(255, 255, 255, 0.65);
}

.section-green .contact-info a[b-0ae6d068r1] {
    color: rgba(255, 255, 255, 0.9);
}

.section-green .contact-info a:hover[b-0ae6d068r1] {
    color: #fff;
}
/* _content/Padel/Components/Pages/Courts.razor.rz.scp.css */
/* ── Courts Grid (3 cards) ── */
.courts-grid[b-oimmu0uivm] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.court-card[b-oimmu0uivm] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.court-card:hover[b-oimmu0uivm] {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.court-card-img[b-oimmu0uivm] {
    overflow: hidden;
}

.court-card-body[b-oimmu0uivm] {
    padding: 1.5rem;
}

.court-card-body h3[b-oimmu0uivm] {
    color: var(--color-white);
    margin: 0.6rem 0 0.5rem;
    font-size: 1.2rem;
}

.court-card-body p[b-oimmu0uivm] {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.court-badge[b-oimmu0uivm] {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 3px 12px;
}

.court-badge-outdoor[b-oimmu0uivm] {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
}

.court-badge-indoor[b-oimmu0uivm] {
    background: var(--color-accent, #c8a96e);
    color: var(--color-primary-dark);
}

/* ── Features Grid ── */
.courts-features-grid[b-oimmu0uivm] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.court-feature[b-oimmu0uivm] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.court-feature-icon[b-oimmu0uivm] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(109,126,97,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.court-feature h3[b-oimmu0uivm] {
    color: var(--color-primary-dark);
    margin: 0;
    font-size: 1.05rem;
}

.court-feature p[b-oimmu0uivm] {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.court-feature-img[b-oimmu0uivm] {
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 1rem;
}

/* ── Coming Soon overlay ── */
.court-card-img[b-oimmu0uivm] {
    position: relative;
}

.court-coming-soon img[b-oimmu0uivm] {
    filter: blur(8px);
    transform: scale(1.08);
}

.court-coming-soon-label[b-oimmu0uivm] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45,51,40,0.45);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .courts-grid[b-oimmu0uivm] {
        grid-template-columns: 1fr;
    }

    .courts-features-grid[b-oimmu0uivm] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .courts-grid[b-oimmu0uivm] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* _content/Padel/Components/Pages/EventDetail.razor.rz.scp.css */
/* ── Back link ── */
.ev-back-link[b-dt9xngffnq] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.ev-back-link:hover[b-dt9xngffnq] { opacity: 1; }

/* ── Header ── */
.ev-detail-badge[b-dt9xngffnq] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: #fff;
    padding: 3px 12px;
    margin-bottom: 0.75rem;
}

.ev-detail-meta[b-dt9xngffnq] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    opacity: 0.8;
}

.ev-detail-meta span[b-dt9xngffnq] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ── Gallery section ── */
.ev-gallery-section[b-dt9xngffnq] {
    background: #f5f2ed;
    padding: 2.5rem 0;
}

.ev-gallery[b-dt9xngffnq] {
    max-width: 720px;
}

/* Main image area */
.ev-gallery-main[b-dt9xngffnq] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e0dbd3;
    overflow: hidden;
}

.ev-gallery-slide[b-dt9xngffnq] {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.ev-gallery-slide.active[b-dt9xngffnq] {
    opacity: 1;
    pointer-events: auto;
}

.ev-gallery-slide img[b-dt9xngffnq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows */
.ev-gallery-arrow[b-dt9xngffnq] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
    padding: 0;
    padding-bottom: 2px;
}

.ev-gallery-arrow:hover[b-dt9xngffnq] { background: rgba(255, 255, 255, 0.95); }
.ev-gallery-prev[b-dt9xngffnq] { left: 0.75rem; }
.ev-gallery-next[b-dt9xngffnq] { right: 0.75rem; }

/* Thumbnails */
.ev-gallery-thumbs[b-dt9xngffnq] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.ev-gallery-thumb[b-dt9xngffnq] {
    width: 72px;
    height: 48px;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.55;
    background: none;
}

.ev-gallery-thumb img[b-dt9xngffnq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-gallery-thumb.active[b-dt9xngffnq] {
    border-color: var(--color-primary);
    opacity: 1;
}

.ev-gallery-thumb:hover[b-dt9xngffnq] { opacity: 0.85; }

/* Placeholder */
.ev-gallery-placeholder[b-dt9xngffnq] {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    background: #e8e4dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-primary-dark);
}

.ev-gallery-placeholder span[b-dt9xngffnq] {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.4;
}

/* ── Content ── */
.ev-detail-body[b-dt9xngffnq] {
    max-width: 720px;
}

.ev-detail-desc[b-dt9xngffnq] {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.ev-detail-desc p[b-dt9xngffnq] { margin: 0 0 0.75rem; }
.ev-detail-desc ul[b-dt9xngffnq], .ev-detail-desc ol[b-dt9xngffnq] { margin: 0 0 0.75rem; padding-left: 1.5rem; }
.ev-detail-desc a[b-dt9xngffnq] { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* ── Registration block ── */
.ev-detail-registration[b-dt9xngffnq] {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.ev-reg-heading[b-dt9xngffnq] {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Info notice (replaces old ev-reg-status button-like box) */
.ev-reg-notice[b-dt9xngffnq] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-style: italic;
    color: rgba(255,255,255,0.55);
}

.ev-reg-notice-full[b-dt9xngffnq] {
    color: #e07070;
    font-style: normal;
    font-weight: 600;
}

.ev-reg-success[b-dt9xngffnq] {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1.25rem 1.5rem;
    color: #fff;
}

.ev-reg-success p[b-dt9xngffnq] {
    margin: 0.4rem 0 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.ev-reg-error[b-dt9xngffnq] {
    color: #f08080;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Form */
.ev-reg-form[b-dt9xngffnq] {
    max-width: 560px;
}

.section-green .form-label-premium[b-dt9xngffnq] {
    color: rgba(255, 255, 255, 0.85);
}

.section-green .form-input[b-dt9xngffnq] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.section-green .form-input[b-dt9xngffnq]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.section-green .form-input:focus[b-dt9xngffnq] {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
    outline: none;
}

@media (max-width: 575.98px) {
    .ev-gallery-thumb[b-dt9xngffnq] { width: 56px; height: 38px; }
}
/* _content/Padel/Components/Pages/Events.razor.rz.scp.css */
.events-grid[b-mrcuvr1m83] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .events-grid[b-mrcuvr1m83] {
        grid-template-columns: 1fr;
    }
}
/* _content/Padel/Components/Pages/Faq.razor.rz.scp.css */
/* ── FAQ accordion — shared pattern ── */

.faq-list[b-io582y4b65] {
    display: flex;
    flex-direction: column;
}

.faq-item[b-io582y4b65] {
    border-bottom: 1px solid var(--color-border-light, #ece6de);
    padding: 0;
}

.faq-item:first-child[b-io582y4b65] {
    border-top: 1px solid var(--color-border-light, #ece6de);
}

.faq-item summary[b-io582y4b65] {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 2.5rem 1.25rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
    position: relative;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-item summary[b-io582y4b65]::-webkit-details-marker { display: none; }

.faq-item summary[b-io582y4b65]::after {
    content: '+';
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary[b-io582y4b65]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover[b-io582y4b65] { color: var(--color-primary); }

.faq-item p[b-io582y4b65] {
    padding: 0 0 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* _content/Padel/Components/Pages/Feedback.razor.rz.scp.css */
.form-group[b-j5cjjrwrzt] {
    margin-bottom: 2rem;
}

.rating-group[b-j5cjjrwrzt] {
    display: flex;
    gap: 8px;
}

.rating-star[b-j5cjjrwrzt] {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-border, #e0d8cf);
    cursor: pointer;
    padding: 0 2px;
    transition: color 0.2s ease;
    line-height: 1;
}

.rating-star.active[b-j5cjjrwrzt],
.rating-star:hover[b-j5cjjrwrzt] {
    color: var(--color-primary, #6d7e61);
}

.section-green .form-label-premium[b-j5cjjrwrzt] { color: rgba(255,255,255,0.85); }
.section-green .form-input[b-j5cjjrwrzt] {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}
.section-green .form-input[b-j5cjjrwrzt]::placeholder { color: rgba(255,255,255,0.4); }
.section-green .form-input:focus[b-j5cjjrwrzt] {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.7);
    outline: none;
}
.section-green .rating-star[b-j5cjjrwrzt] { color: rgba(255,255,255,0.35); }
.section-green .rating-star.active[b-j5cjjrwrzt],
.section-green .rating-star:hover[b-j5cjjrwrzt] { color: #fff; }
/* _content/Padel/Components/Pages/Home.razor.rz.scp.css */
/* ═══ Hero ═══ */

.hero[b-8cphm4mkkg] {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: var(--color-primary-dark, #4a5a40);
    overflow: hidden;
}

/* ── Hero video ── */

.hero-video[b-8cphm4mkkg] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay[b-8cphm4mkkg] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 51, 40, 0.35) 0%, rgba(45, 51, 40, 0.65) 100%);
    z-index: 1;
}

.hero-content[b-8cphm4mkkg] {
    position: relative;
    z-index: 2;
}

.hero-headline-logo[b-8cphm4mkkg] {
    max-width: clamp(280px, 45vw, 600px);
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.hero-sub[b-8cphm4mkkg] {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══ Highlights ═══ */

.highlights-row[b-8cphm4mkkg] {
    display: flex;
    gap: 24px;
}

.highlight-col[b-8cphm4mkkg] {
    flex: 1;
    min-width: 0;
}

.highlight-card[b-8cphm4mkkg] {
    padding: 48px 36px;
    border: 1px solid var(--color-border-light, #ece6de);
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-white, #fff);
}

.highlight-card:hover[b-8cphm4mkkg] {
    border-color: var(--color-primary, #6d7e61);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(109, 126, 97, 0.1);
}

.highlight-icon[b-8cphm4mkkg] {
    color: var(--color-primary, #6d7e61);
    margin-bottom: 1.5rem;
}

.highlight-card h2[b-8cphm4mkkg] {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.highlight-card p[b-8cphm4mkkg] {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.highlight-link[b-8cphm4mkkg] {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-primary, #6d7e61);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.highlight-link:hover[b-8cphm4mkkg] {
    color: var(--color-primary-dark, #4a5a40);
}

/* ═══ Highlights on green background ═══ */

.section-green .highlight-card[b-8cphm4mkkg] {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
}

.section-green .highlight-card:hover[b-8cphm4mkkg] {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.section-green .highlight-icon[b-8cphm4mkkg] { color: #fff; }

.section-green .highlight-card h2[b-8cphm4mkkg],
.section-green .highlight-card p[b-8cphm4mkkg] { color: #fff; }

.section-green .highlight-card p[b-8cphm4mkkg] { opacity: 0.88; }

.section-green .highlight-link[b-8cphm4mkkg] { color: rgba(255,255,255,0.9); }
.section-green .highlight-link:hover[b-8cphm4mkkg] { color: #fff; }

/* ═══ Lifestyle Gallery ═══ */

.section-lifestyle[b-8cphm4mkkg] {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--color-beige-dark, #e8ddd2);
}

.lifestyle-header[b-8cphm4mkkg] {
    text-align: center;
    margin-bottom: 48px;
}

.lifestyle-header h2[b-8cphm4mkkg] {
    margin-bottom: 0.5rem;
}

.lifestyle-header p[b-8cphm4mkkg] {
    max-width: 480px;
    margin: 0 auto;
}

.lifestyle-grid[b-8cphm4mkkg] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.lifestyle-item-tall[b-8cphm4mkkg] {
    grid-row: span 2;
}

.lifestyle-item-wide[b-8cphm4mkkg] {
    grid-column: span 2;
}

.lifestyle-img[b-8cphm4mkkg] {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lifestyle-img:hover[b-8cphm4mkkg] {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(109, 126, 97, 0.12);
}

.lifestyle-img img[b-8cphm4mkkg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══ CTA Banner ═══ */

.cta-banner[b-8cphm4mkkg] {
    padding: 100px 0;
    background: var(--color-beige, #f5ede5);
}

.cta-banner h2[b-8cphm4mkkg] {
    margin-bottom: 0.5rem;
}

.cta-banner p[b-8cphm4mkkg] {
    margin: 0 auto 2rem;
    max-width: 480px;
}

/* ═══ Lifestyle image swap (mobile) ═══ */

.lifestyle-img .img-mobile[b-8cphm4mkkg] {
    display: none;
}

@media (max-width: 767.98px) {
    .lifestyle-img .img-desktop[b-8cphm4mkkg] {
        display: none;
    }

    .lifestyle-img .img-mobile[b-8cphm4mkkg] {
        display: block;
    }
}

/* ═══ Responsive ═══ */

@media (max-width: 1024px) {
    .highlights-row[b-8cphm4mkkg] {
        flex-wrap: wrap;
    }

    .highlight-col[b-8cphm4mkkg] {
        flex: 0 0 calc(50% - 12px);
    }

    .highlight-col:last-child:nth-child(odd)[b-8cphm4mkkg] {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .highlights-row[b-8cphm4mkkg] {
        flex-direction: column;
    }

    .highlight-col[b-8cphm4mkkg] {
        flex: 1 1 auto;
    }

    .lifestyle-grid[b-8cphm4mkkg] {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .lifestyle-item-tall[b-8cphm4mkkg] {
        grid-row: span 1;
    }

    .lifestyle-item-wide[b-8cphm4mkkg] {
        grid-column: span 2;
    }
}

@media (max-width: 479.98px) {
    .lifestyle-grid[b-8cphm4mkkg] {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .lifestyle-item-wide[b-8cphm4mkkg] {
        grid-column: span 1;
    }
}

@media (max-width: 575.98px) {
    .hero[b-8cphm4mkkg] {
        min-height: 400px;
    }

    .highlight-card[b-8cphm4mkkg] {
        padding: 32px 24px;
    }

    .cta-banner[b-8cphm4mkkg] {
        padding: 60px 0;
    }
}
/* _content/Padel/Components/Pages/Impressum.razor.rz.scp.css */
/* ── Impressum ── */

.impressum-content[b-dlxcq2m6am] {
    max-width: 760px;
}

.impressum-content p[b-dlxcq2m6am] {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
}

.impressum-content h2[b-dlxcq2m6am] {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.impressum-content a[b-dlxcq2m6am] {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.impressum-divider[b-dlxcq2m6am] {
    border: none;
    border-top: 1px solid var(--color-border-light);
    margin: 2.5rem 0;
}
/* _content/Padel/Components/Pages/Kids.razor.rz.scp.css */
/* ── Kids Intro Banner ── */

.kids-intro[b-x8ahmum5yf] {
    position: relative;
    padding: 100px 0;
    background: var(--color-primary, #6d7e61);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.kids-intro-bg[b-x8ahmum5yf] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(109, 126, 97, 0.95) 0%, rgba(74, 90, 64, 0.98) 100%);
}

.kids-intro-content[b-x8ahmum5yf] {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.kids-intro-content h2[b-x8ahmum5yf] {
    color: #fff;
    margin-bottom: 1rem;
}

.kids-intro-content p[b-x8ahmum5yf] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
}

/* ── Kids Feature Grid — Staggered pairs with overlap ── */

.kids-grid[b-x8ahmum5yf] {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.kids-pair[b-x8ahmum5yf] {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.kids-pair-left[b-x8ahmum5yf] {
    flex: 1;
    z-index: 2;
    position: relative;
}

.kids-pair-right[b-x8ahmum5yf] {
    flex: 1;
    z-index: 1;
    margin-top: 250px;
    margin-left: -50px;
}

.kids-feature[b-x8ahmum5yf] {
    text-align: center;
    padding: 80px 48px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay for readability when background image is set */
.kids-feature[b-x8ahmum5yf]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 247, 243, 0.88);
    z-index: 0;
    transition: background 0.3s ease;
}

.kids-feature > *[b-x8ahmum5yf] {
    position: relative;
    z-index: 1;
}

.kids-feature:hover[b-x8ahmum5yf] {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(109, 126, 97, 0.14);
    z-index: 3;
}

.kids-feature-accent[b-x8ahmum5yf]::before {
    background: rgba(250, 247, 243, 0.88);
}

.kids-feature h4[b-x8ahmum5yf] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    line-height: 1.15;
}

.kids-feature p[b-x8ahmum5yf] {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

/* ── Kids cards on green section — match home highlight cards ── */

.section-green .kids-feature[b-x8ahmum5yf] {
    background-color: transparent;
}

.section-green .kids-feature[b-x8ahmum5yf]::before {
    background: rgba(45, 51, 40, 0.55);
}

.section-green .kids-feature:hover[b-x8ahmum5yf] {
    background-color: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.section-green .kids-feature h4[b-x8ahmum5yf],
.section-green .kids-feature p[b-x8ahmum5yf] {
    color: #fff;
}

.section-green .kids-feature p[b-x8ahmum5yf] {
    opacity: 0.88;
}

.section-green .kids-feature-icon[b-x8ahmum5yf] {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .kids-grid[b-x8ahmum5yf] {
        gap: 16px;
    }

    .kids-pair[b-x8ahmum5yf] {
        flex-direction: column;
        gap: 16px;
    }

    .kids-pair-left[b-x8ahmum5yf],
    .kids-pair-right[b-x8ahmum5yf] {
        width: 100%;
    }

    .kids-pair-right[b-x8ahmum5yf] {
        margin-top: 0;
        margin-left: 0;
    }

    .kids-feature[b-x8ahmum5yf] {
        padding: 48px 28px;
        min-height: 240px;
    }

    .kids-feature h4[b-x8ahmum5yf] {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .kids-intro[b-x8ahmum5yf] {
        padding: 60px 0;
    }
}
/* _content/Padel/Components/Pages/ProductDetail.razor.rz.scp.css */
.product-back[b-wufdkmokif] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.product-back:hover[b-wufdkmokif] { color: var(--color-primary); }
.product-back svg[b-wufdkmokif] { width: 16px; height: 16px; }

/* ── Layout ── */
.product-detail-layout[b-wufdkmokif] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ── Gallery ── */
.product-gallery-main[b-wufdkmokif] {
    aspect-ratio: 1 / 1;
    background: var(--color-beige-light, #f9f4ee);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main img[b-wufdkmokif] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-placeholder[b-wufdkmokif] {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-gallery-thumbs[b-wufdkmokif] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.product-thumb[b-wufdkmokif] {
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.product-thumb img[b-wufdkmokif] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumb.active[b-wufdkmokif],
.product-thumb:hover[b-wufdkmokif] {
    border-color: var(--color-primary);
}

/* ── Info ── */
.product-detail-category[b-wufdkmokif] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.product-detail-name[b-wufdkmokif] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--color-text-primary);
}

.product-detail-desc[b-wufdkmokif] {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-detail-price[b-wufdkmokif] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-dark, #4a5a40);
    margin-bottom: 2rem;
}

/* ── Variants ── */
.product-variant-group[b-wufdkmokif] {
    margin-bottom: 1.25rem;
}

.product-variant-label[b-wufdkmokif] {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.product-variant-options[b-wufdkmokif] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-btn[b-wufdkmokif] {
    padding: 6px 16px;
    border: 1px solid var(--color-border-light, #ece6de);
    background: transparent;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.variant-btn:hover[b-wufdkmokif] {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.variant-btn.active[b-wufdkmokif] {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.product-variant-error[b-wufdkmokif] {
    font-size: 0.85rem;
    color: #d94040;
    margin-bottom: 0.75rem;
    margin-top: -0.25rem;
}

/* ── Actions ── */
.product-detail-actions[b-wufdkmokif] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.qty-control[b-wufdkmokif] {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border-light, #ece6de);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn[b-wufdkmokif] {
    width: 40px;
    height: 44px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-text-primary);
    transition: background 0.15s;
}

.qty-btn:hover:not(:disabled)[b-wufdkmokif] { background: var(--color-beige-light, #f9f4ee); }
.qty-btn:disabled[b-wufdkmokif] { opacity: 0.35; cursor: default; }

.qty-value[b-wufdkmokif] {
    width: 44px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-left: 1px solid var(--color-border-light, #ece6de);
    border-right: 1px solid var(--color-border-light, #ece6de);
    line-height: 44px;
}

.product-added-msg[b-wufdkmokif] {
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ── Related Products ── */
.related-title[b-wufdkmokif] {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.related-grid[b-wufdkmokif] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-card[b-wufdkmokif] {
    border: 1px solid var(--color-border-light);
    background: var(--color-white);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.related-card:hover[b-wufdkmokif] {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(109, 126, 97, 0.1);
}

.related-img[b-wufdkmokif] {
    aspect-ratio: 1 / 1;
    background: var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related-img img[b-wufdkmokif] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-img-placeholder[b-wufdkmokif] {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0.6;
}

.related-body[b-wufdkmokif] {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-name[b-wufdkmokif] {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.related-price[b-wufdkmokif] {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* ── Green section overrides ── */

.section-green .product-back[b-wufdkmokif] {
    color: rgba(255, 255, 255, 0.75);
}

.section-green .product-back:hover[b-wufdkmokif] {
    color: #fff;
}

.section-green .product-detail-category[b-wufdkmokif] {
    color: rgba(255, 255, 255, 0.65);
}

.section-green .product-detail-name[b-wufdkmokif] {
    color: #fff;
}

.section-green .product-detail-desc[b-wufdkmokif] {
    color: rgba(255, 255, 255, 0.85);
}

.section-green .product-detail-price[b-wufdkmokif] {
    color: #fff;
}

.section-green .product-variant-label[b-wufdkmokif] {
    color: rgba(255, 255, 255, 0.75);
}

.section-green .variant-btn[b-wufdkmokif] {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
}

.section-green .variant-btn:hover[b-wufdkmokif] {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.section-green .variant-btn.active[b-wufdkmokif] {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary-dark);
}

.section-green .qty-control[b-wufdkmokif] {
    border-color: rgba(255, 255, 255, 0.4);
}

.section-green .qty-btn[b-wufdkmokif] {
    color: #fff;
}

.section-green .qty-btn:hover:not(:disabled)[b-wufdkmokif] {
    background: rgba(255, 255, 255, 0.15);
}

.section-green .qty-value[b-wufdkmokif] {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.section-green .product-added-msg[b-wufdkmokif] {
    color: rgba(255, 255, 255, 0.9);
}

.section-green .product-gallery-placeholder[b-wufdkmokif] {
    color: rgba(255, 255, 255, 0.6);
}

.section-green .product-gallery-main[b-wufdkmokif] {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-green .product-thumb[b-wufdkmokif] {
    background: rgba(255, 255, 255, 0.18);
}

.section-green .product-thumb.active[b-wufdkmokif],
.section-green .product-thumb:hover[b-wufdkmokif] {
    border-color: #fff;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .product-detail-layout[b-wufdkmokif] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* _content/Padel/Components/Pages/Shop.razor.rz.scp.css */
/* ── Shop Toolbar ── */

.shop-toolbar[b-s7124g3vw2] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .shop-toolbar[b-s7124g3vw2] {
        flex-direction: column;
        gap: 16px;
    }
}

.shop-search-wrap[b-s7124g3vw2] {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.shop-search[b-s7124g3vw2] {
    width: 100%;
    padding: 9px 36px 9px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.shop-search[b-s7124g3vw2]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.shop-search:focus[b-s7124g3vw2] {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.22);
}

.shop-search-clear[b-s7124g3vw2] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.shop-search-clear:hover[b-s7124g3vw2] {
    color: #fff;
}

/* ── Shop Filters ── */

.shop-filters[b-s7124g3vw2] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.shop-filter[b-s7124g3vw2] {
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.25s ease;
}

.shop-filter:hover[b-s7124g3vw2] {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.shop-filter.active[b-s7124g3vw2] {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary-dark);
}

/* ── No results ── */

.shop-no-results[b-s7124g3vw2] {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    padding: 2.5rem 0;
}

/* ── Product Grid ── */

.product-grid[b-s7124g3vw2] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.product-card[b-s7124g3vw2] {
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    background: var(--color-white);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-card:hover[b-s7124g3vw2] {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(109, 126, 97, 0.1);
}

.product-img[b-s7124g3vw2] {
    aspect-ratio: 1 / 1;
    background: var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.product-img-label[b-s7124g3vw2] {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0.6;
}

.product-body[b-s7124g3vw2] {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name[b-s7124g3vw2] {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    text-decoration: none;
    margin-bottom: 4px;
}

.product-desc[b-s7124g3vw2] {
    font-size: 0.68rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
}

.product-price[b-s7124g3vw2] {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: 0.02em;
}

/* ── Shop Pagination ── */

.shop-pagination[b-s7124g3vw2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 2.5rem;
}

.shop-page-btn[b-s7124g3vw2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-page-btn svg[b-s7124g3vw2] {
    width: 14px;
    height: 14px;
}

.shop-page-btn:hover:not(:disabled)[b-s7124g3vw2] {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.shop-page-btn.active[b-s7124g3vw2] {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary-dark) !important;
}

.shop-page-btn:disabled[b-s7124g3vw2] {
    opacity: 0.25;
    cursor: default;
}

/* ── Responsive ── */

@media (max-width: 1199.98px) {
    .product-grid[b-s7124g3vw2] { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991.98px) {
    .product-grid[b-s7124g3vw2] { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575.98px) {
    .product-grid[b-s7124g3vw2] { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-body[b-s7124g3vw2] { padding: 10px; }
    .product-name[b-s7124g3vw2] { font-size: 0.72rem; }
    .product-desc[b-s7124g3vw2] { display: none; }
}
/* _content/Padel/Components/Pages/TheSport.razor.rz.scp.css */
/* ── Two-column layout ── */

.sport-columns[b-sqqxe1093b] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    align-items: start;
}

.sport-col-heading[b-sqqxe1093b] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 767.98px) {
    .sport-columns[b-sqqxe1093b] {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }
}

/* ── Sport Intro ── */

.sport-intro[b-sqqxe1093b] {
    max-width: 700px;
    margin: 0 auto;
}

.sport-lead[b-sqqxe1093b] {
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ── Visual ── */

.sport-visual[b-sqqxe1093b] {
    padding: 0 0 80px;
    background: var(--color-surface-light, #faf7f3);
}

.sport-visual-frame[b-sqqxe1093b] {
    overflow: hidden;
}

/* ── Rules Content ── */

.rules-content[b-sqqxe1093b] {
    max-width: 680px;
}

/* ── Rules accordion (mirrors FAQ styles) ── */

.faq-list[b-sqqxe1093b] {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.faq-item[b-sqqxe1093b] {
    border-bottom: 1px solid var(--color-border-light, #ece6de);
    padding: 0;
}

.faq-item:first-child[b-sqqxe1093b] {
    border-top: 1px solid var(--color-border-light, #ece6de);
}

.rule-num[b-sqqxe1093b] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-primary, #6d7e61);
    color: #fff;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.section-green .rule-num[b-sqqxe1093b] {
    background: var(--color-beige, #f5ede5);
    color: var(--color-primary, #6d7e61);
}

.rule-desc[b-sqqxe1093b] {
    padding: 0 0 1.25rem 2.5rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    animation: faq-slide-down-b-sqqxe1093b 0.25s ease forwards;
}

.rule-desc p[b-sqqxe1093b] { margin: 0 0 0.5rem; }
.rule-desc ul[b-sqqxe1093b], .rule-desc ol[b-sqqxe1093b] { margin: 0 0 0.5rem; padding-left: 1.25rem; }

.faq-item summary[b-sqqxe1093b] {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 2.5rem 1.25rem 0;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
    position: relative;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-item summary[b-sqqxe1093b]::-webkit-details-marker { display: none; }

.faq-item summary[b-sqqxe1093b]::after {
    content: '+';
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary[b-sqqxe1093b]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover[b-sqqxe1093b] { color: var(--color-primary); }

.section-green .faq-item[b-sqqxe1093b] { border-bottom-color: rgba(255,255,255,0.2); }
.section-green .faq-item:first-child[b-sqqxe1093b] { border-top-color: rgba(255,255,255,0.2); }
.section-green .faq-item summary[b-sqqxe1093b] { color: #fff; }
.section-green .faq-item summary[b-sqqxe1093b]::after { color: rgba(255,255,255,0.7); }
.section-green .faq-item summary:hover[b-sqqxe1093b] { color: rgba(255,255,255,0.8); }
.section-green .rule-desc[b-sqqxe1093b] { color: rgba(255,255,255,0.8); }
.section-green .faq-item-label[b-sqqxe1093b] { color: #fff; }

.faq-item p[b-sqqxe1093b] {
    padding: 0 0 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    animation: faq-slide-down-b-sqqxe1093b 0.25s ease forwards;
}

@keyframes faq-slide-down-b-sqqxe1093b {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-item-static[b-sqqxe1093b] {
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
}

.faq-item-label[b-sqqxe1093b] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
}
/* _content/Padel/Components/Pages/Training.razor.rz.scp.css */
.training-hero[b-8e4l0ek6jc] {
    position: relative;
    padding: 120px 0;
    background: var(--color-primary-dark, #4a5a40);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.training-hero-overlay[b-8e4l0ek6jc] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 90, 64, 0.9) 0%, rgba(58, 72, 50, 0.95) 100%);
}

.training-hero-content[b-8e4l0ek6jc] {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.training-hero-content h2[b-8e4l0ek6jc] {
    color: #fff;
    margin-bottom: 1rem;
}

.training-hero-content p[b-8e4l0ek6jc] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
}

/* ── Feature Cards Row ── */

.training-cards-row[b-8e4l0ek6jc] {
    display: flex;
    gap: 24px;
}

.training-card-col[b-8e4l0ek6jc] {
    flex: 1;
    min-width: 0;
}

/* ── Feature cards on green section ── */

.section-green .feature-card[b-8e4l0ek6jc] {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-green .feature-card:hover[b-8e4l0ek6jc] {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.section-green .feature-card h3[b-8e4l0ek6jc] {
    color: #fff;
}

.section-green .feature-card p[b-8e4l0ek6jc] {
    color: rgba(255, 255, 255, 0.85);
}

.section-green .feature-card-icon[b-8e4l0ek6jc] {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

@media (max-width: 1024px) {
    .training-cards-row[b-8e4l0ek6jc] {
        flex-wrap: wrap;
    }

    .training-card-col[b-8e4l0ek6jc] {
        flex: 0 0 calc(50% - 12px);
    }

    .training-card-col:last-child:nth-child(odd)[b-8e4l0ek6jc] {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .training-cards-row[b-8e4l0ek6jc] {
        flex-direction: column;
    }

    .training-card-col[b-8e4l0ek6jc] {
        flex: 1 1 auto;
    }
}

@media (max-width: 575.98px) {
    .training-hero[b-8e4l0ek6jc] {
        padding: 80px 0;
    }
}
/* _content/Padel/Components/Pages/Vouchers.razor.rz.scp.css */
/* ── Timeline ── */

.timeline[b-wyz3arfrxd] {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-line[b-wyz3arfrxd] {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
    opacity: 0.25;
    transform: translateX(-50%);
}

.timeline-item[b-wyz3arfrxd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 56px 0;
    align-items: center;
}

.timeline-item-left .timeline-content[b-wyz3arfrxd] {
    grid-column: 1;
    text-align: right;
    padding-right: 80px;
}

.timeline-item-right .timeline-content[b-wyz3arfrxd] {
    grid-column: 2;
    text-align: left;
    padding-left: 80px;
}

.timeline-number[b-wyz3arfrxd] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.timeline-title[b-wyz3arfrxd] {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-footer);
}

@media (max-width: 767.98px) {
    .timeline-line[b-wyz3arfrxd] {
        left: 20px;
        transform: none;
    }

    .timeline-item[b-wyz3arfrxd] {
        grid-template-columns: 1fr;
        padding: 32px 0;
    }

    .timeline-item-left .timeline-content[b-wyz3arfrxd],
    .timeline-item-right .timeline-content[b-wyz3arfrxd] {
        grid-column: 1;
        text-align: left;
        padding-left: 48px;
        padding-right: 0;
    }
}

/* ── Voucher Intro ── */

.voucher-intro[b-wyz3arfrxd] {
    max-width: 560px;
    margin: 0 auto;
}

.voucher-intro p[b-wyz3arfrxd] {
    font-size: 1.05rem;
}

/* ── Voucher Row ── */

.voucher-row[b-wyz3arfrxd] {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

/* ── Voucher Card — Vertical ── */

.voucher-card[b-wyz3arfrxd] {
    background: var(--color-beige, #f5ede5);
    border: 1px solid var(--color-beige-dark, #e8ddd2);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voucher-card:hover[b-wyz3arfrxd] {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(109, 126, 97, 0.1);
}

.voucher-card-featured[b-wyz3arfrxd] {
    background: var(--color-beige, #f5ede5);
    border-color: var(--color-primary-dark, #4a5a40);
    border-width: 2px;
}

/* ── Badge ── */

.voucher-card-badge[b-wyz3arfrxd] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary, #6d7e61);
    background: var(--color-beige-dark, #e8ddd2);
    padding: 5px 14px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.voucher-card-featured .voucher-card-badge[b-wyz3arfrxd] {
    background: var(--color-primary, #6d7e61);
    color: #fff;
}

/* ── Amount ── */

.voucher-card-amount[b-wyz3arfrxd] {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary-dark, #4a5a40);
    line-height: 1;
    margin-bottom: 1.75rem;
}

/* ── Body ── */

.voucher-card-body[b-wyz3arfrxd] {
    flex: 1;
    width: 100%;
    margin-bottom: 2rem;
}

.voucher-card-desc[b-wyz3arfrxd] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text, #2d3328);
    margin-bottom: 1rem;
}

.voucher-card-features[b-wyz3arfrxd] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voucher-card-features li[b-wyz3arfrxd] {
    font-size: 0.82rem;
    color: var(--color-text-secondary, #5c6356);
    padding-left: 16px;
    position: relative;
    text-align: left;
}

.voucher-card-features li[b-wyz3arfrxd]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--color-primary, #6d7e61);
    border-radius: 50%;
}

/* ── Action ── */

.voucher-card-action[b-wyz3arfrxd] {
    width: 100%;
}

.voucher-card-btn[b-wyz3arfrxd] {
    display: block !important;
    width: 100% !important;
    text-align: center;
    font-size: 0.7rem !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    white-space: nowrap;
}

/* ── Steps ── */

.step-number[b-wyz3arfrxd] {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-beige-dark, #e8ddd2);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.step-title[b-wyz3arfrxd] {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


/* ── Responsive ── */

@media (max-width: 767.98px) {
    .voucher-row[b-wyz3arfrxd] {
        flex-direction: column;
        align-items: center;
    }

    .voucher-card[b-wyz3arfrxd] {
        max-width: 100%;
        width: 100%;
    }
}
/* _content/Padel/Components/Shared/CartBadge.razor.rz.scp.css */
.nav-cart-badge[b-d5immaa0nx] {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* _content/Padel/Components/Shared/EventCard.razor.rz.scp.css */
/* ── Event Card ── */

.ev-card-link[b-mhy8dgt4sv] {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}


.ev-card[b-mhy8dgt4sv] {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.ev-card:hover[b-mhy8dgt4sv] {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(109, 126, 97, 0.15);
}

.ev-card-img[b-mhy8dgt4sv] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-bg-subtle, #e8e4de);
    overflow: hidden;
    flex-shrink: 0;
}

.ev-card-img img[b-mhy8dgt4sv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-card-badge[b-mhy8dgt4sv] {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
}

.ev-card-body[b-mhy8dgt4sv] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem 0.9rem 0.85rem;
    flex: 1;
}

.ev-card-title[b-mhy8dgt4sv] {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
}

.ev-card-meta[b-mhy8dgt4sv] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ev-card-meta-item[b-mhy8dgt4sv] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.ev-card-meta-item svg[b-mhy8dgt4sv] {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--color-primary);
}
/* _content/Padel/Components/Shared/FloatingIcon.razor.rz.scp.css */
@keyframes icon-float-b-11lriw64gr {
    0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
    50%       { transform: translateY(-20px) rotate(var(--rot, 0deg)); }
}

@keyframes icon-float-slow-b-11lriw64gr {
    0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
    50%       { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}

.icon-float[b-11lriw64gr] {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    width: var(--size, 120px);
    height: auto;
    opacity: 0.3;
    transform: rotate(var(--rot, 0deg));
}

/* ::deep reaches the SVG rendered via MarkupString (no scoped data-attr) */
.icon-float[b-11lriw64gr]  svg {
    width: 100%;
    height: auto;
    display: block;
}

.icon-green[b-11lriw64gr] {
    color: var(--color-primary-dark, #4a5a40);
}

.icon-white[b-11lriw64gr] {
    color: var(--color-beige, #f5ede5);
}

@media (max-width: 991.98px) {
    .icon-float[b-11lriw64gr] {
        z-index: -1;
    }
}

@media (max-width: 575.98px) {
    .icon-tablet-only[b-11lriw64gr] {
        display: none;
    }
}
/* _content/Padel/Components/Shared/LanguageSelector.razor.rz.scp.css */
/* ── Language selector ── */
/* !important flags override browser native <select> styling */

.language-picker select[b-tvql7t667h] {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 6px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    background: transparent !important;
    opacity: 0.8;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    border-radius: 0 !important;
    transition: opacity 0.3s ease;
}

.language-picker select:hover[b-tvql7t667h] {
    opacity: 1;
}

.language-picker option[b-tvql7t667h] {
    background: #2d3328;
    color: #fff;
}
/* _content/Padel/Components/Shared/MainFooter.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   FOOTER — Padel Tulln
   ═══════════════════════════════════════════════ */

/* ── Newsletter Band ── */

.newsletter-band[b-1vnznbz4e3] {
    padding: 60px 0;
    background: var(--color-beige-dark, #e8ddd2);
    color: var(--color-primary-dark, #4a5a40);
}

.newsletter-inner[b-1vnznbz4e3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-text[b-1vnznbz4e3] {
    flex: 1;
    min-width: 0;
}

.newsletter-text h2[b-1vnznbz4e3] {
    color: var(--color-primary-dark, #4a5a40);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.newsletter-text p[b-1vnznbz4e3] {
    color: var(--color-text-secondary, #5a6351);
    margin: 0;
    font-size: 0.95rem;
}

/* ── FAQ Section ── */

.faq-section[b-1vnznbz4e3] {
    background: var(--color-surface-light, #faf7f3);
}

.faq-heading[b-1vnznbz4e3] {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.faq-intro[b-1vnznbz4e3] {
    margin-bottom: 2rem;
}

.faq-cta[b-1vnznbz4e3] {
    padding: 12px 28px;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.faq-list[b-1vnznbz4e3] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item[b-1vnznbz4e3] {
    border-bottom: 1px solid var(--color-border, #e0d8cf);
}

.faq-item:first-child[b-1vnznbz4e3] {
    border-top: 1px solid var(--color-border, #e0d8cf);
}

.faq-item summary[b-1vnznbz4e3] {
    padding: 22px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text, #2d3328);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-item summary[b-1vnznbz4e3]::-webkit-details-marker {
    display: none;
}

.faq-item summary[b-1vnznbz4e3]::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary, #6d7e61);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item[open] summary[b-1vnznbz4e3]::after {
    transform: rotate(45deg);
}

.faq-item summary:hover[b-1vnznbz4e3] {
    color: var(--color-primary, #6d7e61);
}

.faq-item p[b-1vnznbz4e3] {
    padding: 0 0 22px;
    margin: 0;
    line-height: 1.8;
}


/* ── Partner Strip ── */

.partner-strip[b-1vnznbz4e3] {
    padding: 48px 0;
    border-top: 1px solid var(--color-border-light, #ece6de);
    border-bottom: 1px solid var(--color-border-light, #ece6de);
}

.partner-label[b-1vnznbz4e3] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light, #8a8e85);
    text-align: center;
    margin-bottom: 1.5rem;
}

.partner-logos[b-1vnznbz4e3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo[b-1vnznbz4e3] {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light, #8a8e85);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.partner-logo-img[b-1vnznbz4e3] {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ── Main Footer ── */

.main-footer[b-1vnznbz4e3] {
    background: var(--color-footer, #2d3328);
    color: #fff;
    padding-top: 80px;
}

.footer-grid[b-1vnznbz4e3] {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

/* Brand Column */
.footer-brand[b-1vnznbz4e3] {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: opacity 0.3s ease;
}

.footer-brand:hover[b-1vnznbz4e3] {
    opacity: 0.8;
}

.footer-brand-logo[b-1vnznbz4e3] {
    display: block;
    width: 190px;
    height: auto;
}

.footer-tagline[b-1vnznbz4e3] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Footer Headings */
.footer-heading[b-1vnznbz4e3] {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-link-list[b-1vnznbz4e3] {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-link-list li[b-1vnznbz4e3] {
    margin-bottom: 0.5rem;
}

.footer-link-list a[b-1vnznbz4e3] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-list a:hover[b-1vnznbz4e3] {
    color: var(--color-beige, #f5ede5);
}

.footer-text[b-1vnznbz4e3] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-cta[b-1vnznbz4e3] {
    color: var(--color-beige, #f5ede5);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-cta:hover[b-1vnznbz4e3] {
    opacity: 0.7;
    color: var(--color-beige, #f5ede5);
}

/* Address */
.footer-address[b-1vnznbz4e3] {
    font-style: normal;
    margin-bottom: 1.2rem;
}

.footer-address-item[b-1vnznbz4e3] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-address-item svg[b-1vnznbz4e3] {
    color: var(--color-primary-light, #8a9a7e);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-address-item div[b-1vnznbz4e3] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

/* Social Icons */
.social-icons[b-1vnznbz4e3] {
    display: flex;
    gap: 10px;
}

.social-icon[b-1vnznbz4e3] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-icon:hover[b-1vnznbz4e3] {
    border-color: var(--color-primary-light, #8a9a7e);
    color: var(--color-primary-light, #8a9a7e);
    background: rgba(255, 255, 255, 0.05);
}

/* ── Copyright ── */

.footer-copyright[b-1vnznbz4e3] {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.copyright-inner[b-1vnznbz4e3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.copyright-links[b-1vnznbz4e3] {
    display: flex;
    gap: 24px;
}

.copyright-links a[b-1vnznbz4e3] {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-links a:hover[b-1vnznbz4e3] {
    color: rgba(255, 255, 255, 0.7);
}

.copyright-sep[b-1vnznbz4e3] {
    opacity: 0.3;
}

/* ═══ Responsive ═══ */

@media (max-width: 991.98px) {
    .newsletter-inner[b-1vnznbz4e3] {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid[b-1vnznbz4e3] {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .main-footer[b-1vnznbz4e3] {
        padding-top: 48px;
    }

    /* Brand: full width, centered */
    .footer-col-brand[b-1vnznbz4e3] {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand-logo[b-1vnznbz4e3] {
        width: 150px;
    }

    .footer-tagline[b-1vnznbz4e3] {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .social-icons[b-1vnznbz4e3] {
        justify-content: center;
    }

    /* Quick Links + More side by side, Contact full width below */
    .footer-col:nth-child(2)[b-1vnznbz4e3] { order: 1; }
    .footer-col:nth-child(3)[b-1vnznbz4e3] { order: 2; }
    .footer-col:nth-child(4)[b-1vnznbz4e3] { order: 3; grid-column: 1 / -1; }

    .footer-heading[b-1vnznbz4e3] {
        font-size: 0.72rem;
        margin-bottom: 1rem;
    }

    .footer-link-list a[b-1vnznbz4e3],
    .footer-text[b-1vnznbz4e3],
    .footer-address-item div[b-1vnznbz4e3] {
        font-size: 0.82rem;
    }

    /* Copyright */
    .copyright-inner[b-1vnznbz4e3] {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright-links[b-1vnznbz4e3] {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Partners */
    .partner-logos[b-1vnznbz4e3] {
        gap: 20px;
    }

    .partner-logo[b-1vnznbz4e3] {
        width: 90px;
        height: 44px;
    }

    .faq-cta[b-1vnznbz4e3] {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .newsletter-band[b-1vnznbz4e3] {
        padding: 40px 0;
    }

}
/* _content/Padel/Components/Shared/NewsletterForm.razor.rz.scp.css */
.newsletter-form[b-n4psjiee2m] {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    flex-shrink: 0;
    min-width: 420px;
}

.newsletter-input[b-n4psjiee2m] {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--color-primary-dark, #4a5a40);
    background: transparent;
    min-width: 0;
}

.newsletter-input[b-n4psjiee2m]::placeholder {
    color: var(--color-text-light, #8a8e85);
}

.newsletter-btn[b-n4psjiee2m] {
    flex-shrink: 0;
    background: var(--color-primary, #6d7e61);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 16px 32px;
}

.newsletter-btn:hover[b-n4psjiee2m] {
    background: var(--color-primary-dark, #4a5a40);
    color: #fff;
}

.newsletter-success[b-n4psjiee2m] {
    margin: 0;
    padding: 16px 20px;
    color: #fff;
    font-weight: 600;
}

.newsletter-message[b-n4psjiee2m] {
    margin: 8px 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .newsletter-form[b-n4psjiee2m] {
        min-width: 0;
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 575px) {
    .newsletter-form[b-n4psjiee2m] {
        flex-direction: column;
    }

    .newsletter-btn[b-n4psjiee2m] {
        width: 100%;
    }
}
/* _content/Padel/Components/Shared/RichTextEditor.razor.rz.scp.css */
.rich-text-editor[b-kq0iyp2g40] {
    border: 1px solid var(--border-color, #ddd);
    border-radius: var(--border-radius, 8px);
    overflow: hidden;
}

.editor-toolbar[b-kq0iyp2g40] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem;
    background: var(--bg-secondary, #f5f5f5);
    border-bottom: 1px solid var(--border-color, #ddd);
}

.editor-toolbar button[b-kq0iyp2g40],
.editor-toolbar select[b-kq0iyp2g40] {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border-color, #ddd);
    background: white;
    cursor: pointer;
    font-size: 0.875rem;
}

.editor-toolbar button:hover[b-kq0iyp2g40] {
    background: var(--bg-secondary, #f0f0f0);
}

.toolbar-separator[b-kq0iyp2g40] {
    width: 1px;
    background: var(--border-color, #ddd);
    margin: 0 0.25rem;
}

.editor-content[b-kq0iyp2g40] {
    min-height: 300px;
    padding: 1rem;
    outline: none;
}

.editor-content:focus[b-kq0iyp2g40] {
    box-shadow: inset 0 0 0 2px var(--primary-color, #0066cc);
}

.editor-content h2[b-kq0iyp2g40],
.editor-content h3[b-kq0iyp2g40],
.editor-content h4[b-kq0iyp2g40] {
    margin-top: 1rem;
}

.editor-content ul[b-kq0iyp2g40],
.editor-content ol[b-kq0iyp2g40] {
    padding-left: 1.5rem;
}
/* _content/Padel/Components/Shared/Toast.razor.rz.scp.css */
.toast-stack[b-vbwduuzjgk] {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
    pointer-events: none;
}

.toast-notification[b-vbwduuzjgk] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    animation: toast-slide-in-b-vbwduuzjgk 0.25s ease;
    max-width: 320px;
}

@keyframes toast-slide-in-b-vbwduuzjgk {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.toast-error[b-vbwduuzjgk] {
    background: #5c1a1a;
    border-left: 3px solid #e05555;
}
/* _content/Padel/Components/Shared/TopNav.razor.rz.scp.css */
/* ═══ TopNav ═══ */

.top-nav[b-7mfl7ldrra] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* ── Solid state (default for non-home pages) ── */
.nav-solid[b-7mfl7ldrra] {
    background: var(--color-footer, #2d3328);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-solid .nav-brand[b-7mfl7ldrra],
.nav-solid .nav-link[b-7mfl7ldrra],
.nav-solid .hamburger-line[b-7mfl7ldrra] {
    color: #fff;
}

.nav-solid .hamburger-line[b-7mfl7ldrra] {
    background: #fff;
}

/* ── Home hero state (transparent) ── */
.nav-home[b-7mfl7ldrra] {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.nav-home .nav-brand[b-7mfl7ldrra],
.nav-home .nav-link[b-7mfl7ldrra] {
    color: #fff;
}

.nav-home .hamburger-line[b-7mfl7ldrra] {
    background: #fff;
}

/* ── Inner layout ── */
.nav-inner[b-7mfl7ldrra] {
    display: flex;
    align-items: center;
    height: var(--nav-height, 80px);
}

.nav-actions[b-7mfl7ldrra] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 1;
}

/* ── Brand ── */
.nav-brand[b-7mfl7ldrra] {
    display: flex;
    align-items: center;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}


.nav-brand:hover[b-7mfl7ldrra] {
    opacity: 0.7;
}

/* ── Hamburger ── */
.nav-hamburger[b-7mfl7ldrra] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger-line[b-7mfl7ldrra] {
    display: block;
    width: 24px;
    height: 2px;
    transition: all 0.3s ease;
}

/* ── Collapse wrapper ── */
.nav-collapse[b-7mfl7ldrra] {
    align-items: center;
    gap: 8px;
}

/* ── Nav links ── */
.nav-links[b-7mfl7ldrra] {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-link[b-7mfl7ldrra] {
    display: block;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover[b-7mfl7ldrra] {
    color: var(--color-beige, #f5ede5) !important;
    opacity: 0.8;
}

.nav-link-shop[b-7mfl7ldrra] {
    font-weight: 800;
}


/* ═══ Responsive ═══ */

@media (max-width: 1199.98px) {
    .nav-inner[b-7mfl7ldrra] {
        display: flex;
        flex-wrap: wrap;
        height: var(--nav-height, 70px);
    }

.nav-brand[b-7mfl7ldrra] { order: 1; }
    .nav-actions[b-7mfl7ldrra] { order: 2; margin-left: auto; }

    .nav-collapse[b-7mfl7ldrra] {
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: var(--color-footer, #2d3328);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* animation */
        display: flex;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.28s ease;
    }

    .nav-collapse.open[b-7mfl7ldrra] {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-collapse .nav-link[b-7mfl7ldrra] {
        color: rgba(255, 255, 255, 0.8);
        padding: 14px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        width: 100%;
    }

    .nav-collapse .nav-link:hover[b-7mfl7ldrra] {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.06);
        opacity: 1;
    }

    .nav-links[b-7mfl7ldrra] {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        padding: 8px 0;
    }

    .nav-links li[b-7mfl7ldrra] {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-links li:last-child[b-7mfl7ldrra] {
        border-bottom: none;
    }

    .nav-home .nav-collapse[b-7mfl7ldrra] {
        background: var(--color-footer, #2d3328);
    }
}

@media (min-width: 1200px) {
    .nav-hamburger[b-7mfl7ldrra] {
        display: none;
    }

    .nav-collapse[b-7mfl7ldrra] {
        display: flex !important;
        justify-content: center;
    }
}

/* ── Logo ── */

.nav-brand-logo[b-7mfl7ldrra] {
    display: block;
    width: 105px;
    height: auto;
}

@media (max-width: 1199.98px) {
    .nav-brand-logo[b-7mfl7ldrra] {
        width: 90px;
        margin: 0 8px;
    }
}

/* ── Logo switching (white ↔ green) ── */

/* Home (transparent nav): show white logo, hide green */
.nav-home .logo-green[b-7mfl7ldrra] { display: none !important; }
.nav-home .logo-white[b-7mfl7ldrra] { display: block; }

/* Solid nav: show white logo */
.nav-solid .logo-white[b-7mfl7ldrra] { display: block; }
.nav-solid .logo-green[b-7mfl7ldrra] { display: none !important; }

/* ── Scrolled state (JS-toggled class) ── */

.top-nav.nav-scrolled[b-7mfl7ldrra] {
    background: var(--color-footer, #2d3328) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.top-nav.nav-scrolled .nav-brand[b-7mfl7ldrra],
.top-nav.nav-scrolled .nav-link[b-7mfl7ldrra] {
    color: #fff !important;
}

.top-nav.nav-scrolled .logo-white[b-7mfl7ldrra] { display: block !important; }
.top-nav.nav-scrolled .logo-green[b-7mfl7ldrra] { display: none !important; }

.top-nav.nav-scrolled .hamburger-line[b-7mfl7ldrra] {
    background: #fff !important;
}

/* ── Click-outside backdrop ── */
.nav-backdrop[b-7mfl7ldrra] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
}

.nav-backdrop.show[b-7mfl7ldrra] {
    display: block;
}

/* ── Cart icon ── */

.nav-cart[b-7mfl7ldrra] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.nav-cart:hover[b-7mfl7ldrra] {
    opacity: 0.75;
}

.nav-solid .nav-cart[b-7mfl7ldrra],
.nav-scrolled .nav-cart[b-7mfl7ldrra] {
    color: #fff;
}

/* _content/Padel/Components/Shared/WhatsAppGroup.razor.rz.scp.css */
.wa-card[b-ubjyw7t2dd] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 36px;
    border: 1px solid var(--color-border-light, #ece6de);
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-card:hover[b-ubjyw7t2dd] {
    border-color: #25d366;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.1);
}

.wa-card-top[b-ubjyw7t2dd] {
    flex: 1;
}

.wa-card-bottom[b-ubjyw7t2dd] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 2rem;
}

.wa-icon[b-ubjyw7t2dd] {
    color: #25d366;
    margin-bottom: 1.5rem;
}

.wa-title[b-ubjyw7t2dd] {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text, #2d3328);
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.wa-desc[b-ubjyw7t2dd] {
    font-size: 0.95rem;
    color: var(--color-text-light, #8a8e85);
    margin: 0;
}

.wa-qr[b-ubjyw7t2dd] {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border: 1px solid var(--color-border-light, #ece6de);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 4px;
}

.wa-qr-label[b-ubjyw7t2dd] {
    color: var(--color-text-light, #8a8e85);
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wa-qr-img[b-ubjyw7t2dd] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-link[b-ubjyw7t2dd] {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #25d366;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.wa-link:hover[b-ubjyw7t2dd] {
    color: #1da851;
}

@media (max-width: 575.98px) {
    .wa-card[b-ubjyw7t2dd] {
        padding: 32px 24px;
    }

    .wa-qr[b-ubjyw7t2dd] {
        width: 80px;
        height: 80px;
    }
}
