:root {
    --vt-blue: #000000;
    --vt-blue-dark: #2b0fd1;
    --vt-text: #0e0e12;
    --vt-muted: #6b7280;
    --vt-line: #e9ebf0;
    --vt-bg: #f7f8fc;
    --vt-white: #ffffff;
    --vt-footer: #09090f;
    --vt-shadow: 0 18px 60px rgba(17, 24, 39, 0.08);
    --vt-shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.06);
    --vt-radius: 22px;
}

.fa-calendar {
    color: #2b0fd1 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--vt-text);
    background: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.vt-navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-v {
    color: var(--vt-blue);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.brand-text {
    color: #0b0b14;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-link {
    color: #4b5563 !important;
    font-weight: 600;
    position: relative;
    transition: all 0.25s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--vt-blue) !important;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.45rem;
        height: 2px;
        border-radius: 999px;
        background: var(--vt-blue);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
    }

.btn-vt-primary {
    background: linear-gradient(135deg, var(--vt-blue) 0%, #6b4eff 100%);
    border: none;
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(77, 39, 255, 0.18);
    transition: all 0.25s ease;
}

    .btn-vt-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(77, 39, 255, 0.24);
    }

.btn-vt-outline {
    border: 1px solid #d7dbeb;
    color: var(--vt-text);
    background: #fff;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

    .btn-vt-outline:hover {
        border-color: var(--vt-blue);
        color: var(--vt-blue);
        background: #f8f7ff;
    }

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0e0e12;
    padding: 90px 0 80px;
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../img/club-performance.avif");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(14, 14, 18, 0.45) 0%, rgba(14, 14, 18, 0.72) 100%), radial-gradient(circle at 20% 20%, rgba(77, 39, 255, 0.18), transparent 45%);
        z-index: 1;
    }

    .hero-section > .container {
        position: relative;
        z-index: 2;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(77, 39, 255, 0.08);
    color: var(--vt-blue);
    border: 1px solid rgba(77, 39, 255, 0.12);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.05em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-subtext {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-search-card {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-wrap {
    position: relative;
    background: #fff;
    border: 1px solid #e7eaf2;
    border-radius: 20px;
    padding: 10px;
    box-shadow: var(--vt-shadow);
}

    .search-input-wrap i {
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        color: #8b93a7;
        font-size: 1rem;
    }

.hero-search-input {
    border: none;
    box-shadow: none !important;
    padding-left: 52px;
    padding-right: 150px;
    min-height: 58px;
    border-radius: 16px;
    font-size: 1rem;
}

.hero-search-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 10px;
    min-width: 130px;
    border-radius: 14px;
}

.section-kicker {
    display: inline-block;
    color: var(--vt-blue);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section-subtitle {
    color: var(--vt-muted);
    font-size: 1rem;
}

.section-link {
    color: var(--vt-text);
    font-weight: 700;
    transition: all 0.25s ease;
}

    .section-link:hover {
        color: var(--vt-blue);
    }

.products-section {
    background: #fff;
}

/* Super Admin — Configure hub */
.admin-config-section {
    background: #fff;
}

.admin-config-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 168px;
    padding: 1rem 1rem 1.1rem;
    background: #fff;
    border: 1px solid #eceff5;
    border-radius: 16px;
    box-shadow: var(--vt-shadow-soft);
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

    .admin-config-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(17, 24, 39, 0.1);
        border-color: rgba(77, 39, 255, 0.22);
        color: inherit;
    }

.admin-config-card-disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    background: #fafbfc;
}

.admin-config-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    background: rgba(77, 39, 255, 0.1);
    color: var(--vt-blue);
    font-size: 1.1rem;
}

.admin-config-card-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
    color: var(--vt-text);
}

.admin-config-card-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--vt-muted);
    margin: 0 0 0.65rem;
    flex: 1;
}

.admin-config-card-cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--vt-text);
}

    .admin-config-card-cta i {
        margin-left: 4px;
        font-size: 0.72rem;
        transition: transform 0.2s ease;
    }

.admin-config-card:hover .admin-config-card-cta i {
    transform: translateX(3px);
}

/* Admin module pages (CRUD shells) */
.admin-module-section {
    background: #fff;
}

.admin-breadcrumb {
    font-size: 0.85rem;
    color: var(--vt-muted);
}

    .admin-breadcrumb a {
        color: var(--vt-blue);
        font-weight: 600;
    }

.admin-breadcrumb-sep {
    margin: 0 0.4rem;
    color: #c5cad6;
}

.admin-datatable-shell {
    min-height: 200px;
}

.admin-datatable-toolbar {
    padding: 0 2px;
}

/* DataTables — global (Bootstrap 5) */
.vt-datatable-wrapper .dataTables_filter input,
div.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dfe4ee;
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
    margin-left: 0.5rem;
}

div.dataTables_wrapper .dataTables_length select {
    border: 1px solid #dfe4ee;
    border-radius: 10px;
    padding: 0.35rem 0.5rem;
}

table.vt-datatable thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7a8195;
    font-weight: 700;
    border-bottom-width: 1px;
    white-space: nowrap;
}

table.vt-datatable tbody td {
    vertical-align: middle;
    font-size: 0.9rem;
}

div.dataTables_wrapper .dataTables_info,
div.dataTables_wrapper .dataTables_paginate {
    font-size: 0.85rem;
}

.page-item.active .page-link {
    background-color: var(--vt-blue);
    border-color: var(--vt-blue);
}

/* Admin datatable badges — ensure readable dark text */
.admin-datatable-shell .badge,
table.vt-datatable .badge,
table.dataTable .badge {
    color: #0e0e12 !important;
}

.vt-badge-type {
    display: inline-block;
    padding: 0.28em 0.65em;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 8px;
    background: #eef1f7;
    color: #0e0e12 !important;
    border: 1px solid #e5e7eb;
}

.vt-badge-active {
    display: inline-block;
    padding: 0.28em 0.65em;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    color: #15803d !important;
}

/* Order workflow progress */
.order-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.order-progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3f4f8;
    color: #7a8195;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-progress-step.active {
    background: rgba(77, 39, 255, 0.1);
    color: var(--vt-blue);
}

.order-progress-step.done {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.order-progress-step.disabled {
    opacity: 0.55;
}

.order-progress-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

.order-option-block {
    background: #fafbfc;
}

.vt-badge-inactive {
    display: inline-block;
    padding: 0.28em 0.65em;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(107, 114, 128, 0.14);
    color: #4b5563 !important;
}

/* Product cards (catalog) */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eceff5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--vt-shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    color: inherit;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 55px rgba(17, 24, 39, 0.12);
        border-color: rgba(77, 39, 255, 0.2);
        color: inherit;
    }

.product-card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 2.5rem 1.25rem 1.25rem;
    background: linear-gradient(135deg, #f3f4f8 0%, #e8ebf4 100%);
    text-align: center;
}

.product-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.25;
    color: var(--vt-text);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.product-tag-active {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.product-tag-inactive {
    background: rgba(107, 114, 128, 0.12);
    color: #4b5563;
}

.product-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 8px;
    padding: 4px 10px;
    background: rgba(77, 39, 255, 0.08);
    color: var(--vt-blue);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-description {
    color: var(--vt-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.product-details {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 8px;
    border-top: 1px solid var(--vt-line);
    padding-top: 14px;
}

    .product-details li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 12px;
        font-size: 0.88rem;
    }

.product-detail-label {
    color: #7a8195;
    font-weight: 500;
}

.product-detail-value {
    color: var(--vt-text);
    font-weight: 700;
    text-align: right;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
}

.product-price {
    font-weight: 800;
    color: var(--vt-blue);
    font-size: 1rem;
    line-height: 1.2;
}

    .product-price small {
        font-weight: 600;
        font-size: 0.78rem;
        color: var(--vt-muted);
    }

.product-cta {
    font-weight: 700;
    color: var(--vt-text);
    font-size: 0.9rem;
    white-space: nowrap;
}

    .product-cta i {
        margin-left: 4px;
        font-size: 0.8rem;
        transition: transform 0.25s ease;
    }

.product-card:hover .product-cta i {
    transform: translateX(3px);
}

.inner-hero {
    padding: 80px 0 50px;
    background: radial-gradient(circle at top right, rgba(77, 39, 255, 0.08), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.inner-hero-image {
    position: relative;
    overflow: hidden;
    background: #0e0e12;
}

    .inner-hero-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../img/
        
        
        -party.avif");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .inner-hero-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(14, 14, 18, 0.45) 0%, rgba(14, 14, 18, 0.72) 100%);
        z-index: 1;
    }

    .inner-hero-image > .container {
        position: relative;
        z-index: 2;
    }

    .inner-hero-image .section-kicker {
        color: #c2b7ff;
    }

    .inner-hero-image .inner-title {
        color: #fff;
        text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
    }

    .inner-hero-image .inner-subtitle {
        color: rgba(255, 255, 255, 0.9);
    }

.inner-title {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inner-subtitle {
    max-width: 700px;
    color: var(--vt-muted);
    line-height: 1.8;
}

.legal-page .legal-body {
    max-width: 720px;
}

.legal-page h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--vt-text);
}

    .legal-page h2:first-of-type {
        margin-top: 0;
    }

.legal-page h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--vt-text);
}

.legal-page p,
.legal-page li {
    color: var(--vt-muted);
    line-height: 1.75;
}

.legal-page .legal-lead {
    color: var(--vt-text);
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.legal-page li + li {
    margin-top: 0.35rem;
}

.legal-page a {
    color: var(--vt-blue);
    font-weight: 600;
}

    .legal-page a:hover {
        color: var(--vt-blue-dark);
    }

.content-card {
    background: #fff;
    border: 1px solid #eceff5;
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--vt-shadow-soft);
}

.shadow-soft {
    box-shadow: var(--vt-shadow-soft);
}

.icon-list {
    display: grid;
    gap: 16px;
}

    .icon-list div {
        display: flex;
        align-items: start;
        gap: 12px;
        color: var(--vt-text);
        font-weight: 500;
    }

    .icon-list i,
    .contact-list i {
        color: var(--vt-blue);
        margin-top: 4px;
    }

.faq-shell {
    max-width: 900px;
}

.vt-accordion .accordion-item {
    border: 1px solid #eceff5;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--vt-shadow-soft);
}

.vt-accordion .accordion-button {
    font-weight: 700;
    padding: 22px 24px;
    box-shadow: none !important;
    background: #fff;
}

    .vt-accordion .accordion-button:not(.collapsed) {
        color: var(--vt-blue);
        background: rgba(77, 39, 255, 0.04);
    }

.vt-accordion .accordion-body {
    color: var(--vt-muted);
    line-height: 1.8;
    padding: 0 24px 22px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

    .contact-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--vt-text);
        font-weight: 500;
    }

.vt-input {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid #dfe4ee;
    padding: 0.85rem 1rem;
    box-shadow: none !important;
}

textarea.vt-input {
    min-height: unset;
}

.vt-input:focus {
    border-color: rgba(77, 39, 255, 0.45);
}

.vt-footer {
    background: var(--vt-footer);
    color: #d3d8e6;
    padding: 70px 0 24px;
}

.footer-brand .brand-v {
    color: #6f55ff;
}

.footer-brand .brand-text {
    color: #fff;
}

.footer-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.footer-text {
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    line-height: 1.8;
}

.footer-links-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-lg-end;
    gap: 14px 24px;
}

    .footer-links-wrap a {
        color: rgba(255, 255, 255, 0.86);
        font-weight: 500;
        transition: color 0.25s ease;
    }

        .footer-links-wrap a:hover {
            color: #8d79ff;
        }

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 28px 0 20px;
}

@media (max-width: 991.98px) {
    .nav-link::after {
        display: none;
    }

    .hero-section {
        padding: 72px 0 64px;
    }

    .hero-title {
        font-size: clamp(2rem, 7.2vw, 3.1rem);
    }
}

@media (max-width: 767.98px) {
    .search-input-wrap {
        padding: 8px;
    }

    .hero-search-input {
        padding-right: 18px;
        padding-left: 46px;
    }

    .hero-search-btn {
        position: static;
        width: 100%;
        margin-top: 10px;
        min-height: 48px;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-card {
        padding: 24px;
    }

    .vt-footer {
        padding-top: 50px;
    }

    .footer-links-wrap {
        justify-content: flex-start;
    }
}
