/* VibeFest Frontend — Base44 tasarım uyarlaması */
:root {
    --vf-bg: #050508;
    --vf-bg-alt: #09090f;
    --vf-bg-section: #11111b;
    --vf-orange-light: #fdbc4f;
    --vf-orange: #f58020;
    --vf-teal: #1c9095;
    --vf-teal-dark: #116677;
    /* Logo paleti: açık turuncu → turuncu → teal → koyu teal */
    --vf-gradient-brand: linear-gradient(135deg, var(--vf-orange-light) 0%, var(--vf-orange) 38%, var(--vf-teal) 72%, var(--vf-teal-dark) 100%);
    --vf-gradient-accent: linear-gradient(135deg, var(--vf-orange), var(--vf-teal));
    --vf-pink: var(--vf-orange);
    --vf-purple: var(--vf-teal);
    --vf-link: var(--vf-teal);
    --vf-link-hover: var(--vf-orange-light);
    --vf-text: #ffffff;
    --vf-muted: #a1a1aa;
    --vf-glass: rgba(255, 255, 255, 0.04);
    --vf-border: rgba(255, 255, 255, 0.1);
    --vf-radius: 1rem;
    --vf-radius-lg: 2rem;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.vf-body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--vf-bg);
    color: var(--vf-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

body.vf-body.vf-menu-open {
    overflow: hidden;
    touch-action: none;
}

.vf-page {
    position: relative;
    min-height: 100vh;
    background: var(--vf-bg);
    overflow-x: hidden;
}

/* Ambient blur blobs — disabled (clean background) */
.ambient-blur {
    display: none !important;
}

/* Typography */
.vf-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gradient-pink {
    background: var(--vf-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--vf-orange-light);
}

/* Glass effects */
.glass {
    background: var(--vf-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--vf-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--vf-radius);
}

.glass-nav {
    background: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-nav.scrolled {
    background: rgba(5, 5, 8, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-pill.btn-sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.8125rem;
}

.btn-primary {
    background: var(--vf-gradient-accent);
    color: #fff;
    box-shadow: 0 0 30px rgba(245, 128, 32, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(245, 128, 32, 0.5);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Satıldı / yakında gibi pasif durum etiketleri:
   opacity-50 tüm öğeyi soluklaştırıp yazıyı okunmaz yapıyordu. */
.btn-pill.btn-status-disabled {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    cursor: default;
}

.btn-pill.btn-danger {
    background: transparent;
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.45);
}

.btn-pill.btn-danger:hover {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.65);
    color: #fecaca;
    transform: none;
}

.btn-pill.btn-danger.btn-icon {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    font-size: 1.125rem;
    line-height: 1;
}

.btn-vf-primary,
.btn-pill.btn-primary.w-100 {
    width: 100%;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.btn-nav-link {
    background: none;
    border: none;
    color: var(--vf-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.btn-nav-link:hover,
.btn-nav-link.active {
    color: #fff;
}

.btn-nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--vf-pink);
    transition: width 0.3s;
}

.btn-nav-link:hover::after {
    width: 100%;
}

.glow-pink {
    box-shadow: 0 0 25px rgba(245, 128, 32, 0.4);
}

/* Navbar */
.vf-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0.75rem 0;
    transition: all 0.5s;
    overflow: visible;
}

.vf-navbar .navbar-brand-text {
    line-height: 0;
    text-decoration: none;
}

/* Site logosu — navbar / footer / mobil menü ölçekleri */
.vf-site-logo-link,
.vf-site-logo-wrap {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}

.vf-site-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.vf-site-logo--nav {
    height: 3rem;
    width: auto;
    max-width: 11rem;
}

.vf-site-logo--footer {
    height: 4rem;
    width: auto;
    max-width: 14rem;
}

.vf-site-logo--mobile-menu {
    height: 2.75rem;
    width: auto;
    max-width: 10rem;
}

.vf-site-logo--hero {
    height: clamp(6rem, 30vw, 13rem);
    width: auto;
    max-width: min(94vw, 36rem);
    filter: drop-shadow(0 0 48px rgba(245, 128, 32, 0.22));
}

.vf-hero-logo {
    margin: 0 0 1.5rem;
    line-height: 0;
    display: flex;
    justify-content: center;
}

.vf-hero-logo .vf-site-logo-wrap,
.vf-hero-logo .vf-site-logo-link {
    justify-content: center;
}

@media (max-width: 575.98px) {
    .vf-site-logo--nav {
        height: 2.75rem;
        max-width: 10rem;
    }
}

@media (min-width: 992px) {
    .vf-site-logo--nav {
        height: 3.25rem;
        max-width: 12rem;
    }
}

@media (min-width: 1200px) {
    .vf-site-logo--nav {
        height: 3.5rem;
        max-width: 13rem;
    }
}

.brand-city {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--vf-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0.5rem;
    margin-left: 0.25rem;
}

.vf-nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.vf-nav-desktop {
    margin-left: auto;
    gap: 1.25rem;
    flex-shrink: 0;
    min-width: 0;
}

.vf-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.vf-nav-form {
    margin: 0;
    display: inline-flex;
}

@media (min-width: 992px) {
    .vf-nav-links {
        gap: 1.5rem;
    }

    .vf-nav-desktop {
        gap: 1.5rem;
    }

    .vf-nav-links .btn-nav-link {
        padding: 0.25rem 0;
        font-size: 0.8125rem;
        white-space: nowrap;
    }

    .vf-nav-action,
    .vf-nav-actions .btn-nav-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.25rem;
        padding: 0.4rem 0.85rem;
        font-size: 0.8125rem;
        font-weight: 600;
        line-height: 1.2;
        border-radius: 999px;
        white-space: nowrap;
    }

    .vf-nav-actions .btn-nav-link.btn-nav-action {
        background: transparent;
        border: 1px solid transparent;
    }

    .vf-nav-actions .btn-nav-link.btn-nav-action:hover,
    .vf-nav-actions .btn-nav-link.btn-nav-action.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .vf-nav-form button.btn-nav-action {
        background: transparent;
        border: 1px solid transparent;
        cursor: pointer;
        font-family: inherit;
    }

    .vf-nav-actions .btn-outline-white {
        min-height: 2.25rem;
        padding: 0.4rem 0.85rem;
        font-size: 0.8125rem;
        font-weight: 600;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .vf-nav-actions .btn-nav-cta {
        min-height: 2.25rem;
        padding: 0.4rem 1rem;
        font-size: 0.8125rem;
        gap: 0.4rem;
        box-shadow: 0 4px 18px rgba(245, 128, 32, 0.28);
    }

    .vf-nav-actions .btn-nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 22px rgba(245, 128, 32, 0.38);
    }

    .vf-nav-actions .btn-nav-icon {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        min-height: 2.25rem;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        flex-shrink: 0;
        line-height: 0;
    }

    .vf-nav-actions .btn-nav-icon svg {
        display: block;
        flex-shrink: 0;
    }

    .vf-nav-actions .btn-nav-icon:hover {
        background: rgba(245, 128, 32, 0.12);
        border-color: rgba(245, 128, 32, 0.35);
        color: #fff;
    }

    .vf-nav-actions .btn-nav-icon::after {
        display: none;
    }

    .vf-nav-icon-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 1.05rem;
        height: 1.05rem;
        padding: 0 0.2rem;
        border-radius: 999px;
        background: var(--vf-pink);
        color: #fff;
        font-size: 0.6rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .vf-nav-actions .lang-switch {
        margin-right: 0.15rem;
        padding-right: 0.65rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .vf-nav-actions .lang-switch a {
        min-width: 1.75rem;
        text-align: center;
        padding: 0.3rem 0.45rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .vf-nav-links {
        gap: 1rem;
    }

    .vf-nav-desktop {
        gap: 1rem;
    }

    .vf-nav-links .btn-nav-link {
        font-size: 0.78rem;
    }

    .vf-nav-action,
    .vf-nav-actions .btn-nav-action,
    .vf-nav-actions .btn-outline-white,
    .vf-nav-actions .btn-nav-cta {
        font-size: 0.78rem;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}

.lang-switch {
    display: flex;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.lang-switch a {
    color: var(--vf-muted);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-switch a.active,
.lang-switch a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Mobile menu — sol drawer */
.vf-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1045;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.vf-mobile-backdrop.show {
    display: block;
    opacity: 1;
}

.vf-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1055;
    width: min(88vw, 320px);
    max-width: 100%;
    background: rgba(8, 8, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--vf-border);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.vf-mobile-menu.open {
    transform: translateX(0);
}

.vf-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid var(--vf-border-soft);
    flex-shrink: 0;
}

.vf-mobile-menu-title {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.vf-mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--vf-border);
    background: var(--vf-glass);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.vf-mobile-menu-cta {
    padding: 1rem;
    flex-shrink: 0;
}

.vf-mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vf-mobile-menu-nav a,
.vf-mobile-menu-nav button {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    cursor: pointer;
}

.vf-mobile-menu-nav form button {
    color: inherit;
    font: inherit;
}

.vf-mobile-menu-footer {
    padding: 1rem;
    border-top: 1px solid var(--vf-border-soft);
    flex-shrink: 0;
}

.vf-navbar-row {
    min-height: 2.75rem;
}

@media (min-width: 992px) {
    .vf-navbar-row {
        min-height: 3.25rem;
    }
}

@media (min-width: 1200px) {
    .vf-navbar-row {
        min-height: 3.5rem;
    }
}

.vf-nav-mobile-actions {
    margin-left: auto;
    flex-shrink: 0;
    z-index: 2;
}

.vf-mobile-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--vf-border);
    background: var(--vf-glass);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.vf-mobile-icon-btn--cart {
    border-color: rgba(245, 128, 32, 0.45);
    background: rgba(245, 128, 32, 0.1);
    color: var(--vf-orange-light);
}

.vf-mobile-icon-btn--cart:active,
.vf-mobile-icon-btn--cart:hover {
    background: rgba(245, 128, 32, 0.18);
    border-color: rgba(245, 128, 32, 0.65);
    color: #fff;
}

.vf-mobile-icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--vf-pink);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s ease;
}

.vf-cart-link.is-bump .vf-mobile-icon-badge,
.vf-cart-link.is-bump .vf-nav-icon-badge,
.vf-cart-link.is-bump [data-cart-badge] {
    animation: vf-cart-badge-pop 0.45s ease;
}

@keyframes vf-cart-badge-pop {
    0%, 100% { transform: scale(1); }
    35% { transform: scale(1.35); }
    65% { transform: scale(0.9); }
}

.vf-cart-link.is-bump {
    animation: vf-cart-link-bump 0.45s ease;
}

@keyframes vf-cart-link-bump {
    0%, 100% { transform: scale(1); }
    40% { transform: scale(1.08); }
}

.vf-toast-container {
    position: fixed;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11050;
    width: min(92vw, 22rem);
    pointer-events: none;
}

body:has(.vf-announcement) .vf-toast-container {
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

.vf-toast {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 14px;
    border: 1px solid var(--vf-border);
    background: rgba(12, 12, 18, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
}

.vf-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.vf-flash {
    position: fixed;
    top: calc(76px + env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 11040;
    width: min(92vw, 24rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--vf-border);
    background: rgba(12, 12, 18, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body:has(.vf-announcement) .vf-flash {
    top: calc(112px + env(safe-area-inset-top, 0px));
}

.vf-flash--success {
    border-color: rgba(245, 128, 32, 0.35);
}

.vf-flash--error {
    border-color: rgba(239, 68, 68, 0.4);
    color: #fecaca;
}

.vf-flash.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    pointer-events: none;
}

.vf-flash-close {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: var(--vf-muted);
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.vf-flash-close:hover {
    color: #fff;
}

.vf-toast--success {
    border-color: rgba(245, 128, 32, 0.35);
}

.vf-toast--error {
    border-color: rgba(239, 68, 68, 0.4);
}

.vf-toast-icon {
    flex-shrink: 0;
    color: var(--vf-orange-light);
    margin-top: 0.1rem;
}

.vf-toast--error .vf-toast-icon {
    color: #f87171;
}

.vf-toast-body {
    flex: 1;
    min-width: 0;
}

.vf-toast-message {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

.vf-toast-action {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vf-link);
    text-decoration: none;
}

.vf-toast-action:hover {
    color: #fff;
}

.vf-toast-close {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: var(--vf-muted);
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.vf-toast-close:hover {
    color: #fff;
}

[data-cart-add] [type="submit"].is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.vf-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--vf-border);
    background: var(--vf-glass);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

/* Kaydırılabilir sekme grupları */
.vf-tab-scroll {
    width: auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
}

.vf-tab-scroll--centered {
    width: 100%;
}

.vf-tab-scroll::-webkit-scrollbar {
    display: none;
}

.vf-tab-scroll .tab-pill-group {
    display: inline-flex;
    min-width: max-content;
}

/* Hero */
.vf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vf-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vf-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: saturate(0.78) hue-rotate(-32deg) brightness(0.9);
}

.vf-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            160deg,
            rgba(17, 102, 119, 0.5) 0%,
            rgba(5, 5, 8, 0.15) 42%,
            rgba(28, 144, 149, 0.36) 78%,
            rgba(249, 156, 54, 0.14) 100%
        ),
        linear-gradient(to top, rgba(249, 156, 54, 0.1) 0%, transparent 28%),
        linear-gradient(to bottom, rgba(5, 5, 8, 0.72), rgba(5, 5, 8, 0.58) 40%, var(--vf-bg));
}

.vf-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    max-width: 56rem;
    margin: 0 auto;
}

.vf-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 60px rgba(245, 128, 32, 0.2);
    margin-bottom: 1.5rem;
}

.vf-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.vf-hero-badges .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.vf-hero-badges .icon-pink {
    color: var(--vf-orange-light);
    width: 1rem;
    height: 1rem;
}

.vf-hero-subtitle {
    color: var(--vf-muted);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Countdown */
.vf-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.countdown-box {
    min-width: 72px;
    padding: 1rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-box .num {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    display: block;
    font-variant-numeric: tabular-nums;
}

.countdown-box .label {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--vf-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
}

.countdown-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(245, 128, 32, 0.4);
}

.vf-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 576px) {
    .vf-hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.vf-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--vf-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.vf-scroll-hint:hover {
    color: #fff;
}

/* Sections */
.vf-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .vf-section {
        padding: 7rem 0;
    }
}

.vf-section-alt {
    background: var(--vf-bg-alt);
}

.vf-section-dark {
    background: var(--vf-bg-section);
}

/* Stat cards */
.stat-card {
    padding: 1.25rem 1.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(245, 128, 32, 0.3);
    transform: translateY(-4px);
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 128, 32, 0.1);
    border: 1px solid rgba(245, 128, 32, 0.2);
    color: var(--vf-orange-light);
    margin-bottom: 0.75rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

.stat-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-detail {
    font-size: 0.75rem;
    color: var(--vf-muted);
}

/* Image frames */
.vf-image-frame {
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    position: relative;
}

.vf-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
    filter: saturate(0.82) hue-rotate(-28deg) brightness(0.93);
}

.vf-image-frame:hover img {
    transform: scale(1.05);
}

.vf-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--vf-radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.vf-float-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: vf-float 4s ease-in-out infinite;
    z-index: 2;
}

.vf-about-aside {
    position: relative;
}

.vf-about-media {
    position: relative;
    margin-bottom: 2.5rem;
}

.vf-about-content-card {
    margin-bottom: 1rem;
}

.vf-organizer-badge {
    line-height: 1;
}

.vf-medvibe-logo {
    display: block;
    height: 2.25rem;
    width: auto;
    max-width: 9rem;
    object-fit: contain;
}

.vf-medvibe-logo--badge {
    height: 2.25rem;
    max-width: 9rem;
}

.vf-medvibe-logo--footer {
    height: 1.35rem;
    max-width: 5.5rem;
}

.vf-footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    line-height: 1.5;
}

.vf-footer-organizer {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pulse-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--vf-pink);
    animation: vf-pulse-glow 2s ease-in-out infinite;
}

/* Tabs pill */
.tab-pill-group {
    display: inline-flex;
    padding: 0.375rem;
    border-radius: 9999px;
    gap: 0.25rem;
}

.tab-pill {
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: var(--vf-muted);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    white-space: nowrap;
}

.tab-pill:hover {
    color: #fff;
}

.tab-pill.active {
    color: #fff;
}

.tab-pill .tab-bg {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: var(--vf-gradient-brand);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.tab-pill.active .tab-bg {
    opacity: 1;
    box-shadow: 0 0 25px rgba(245, 128, 32, 0.4);
}

.tab-pill span {
    position: relative;
    z-index: 1;
}

.tab-pill .tab-sub {
    display: block;
    font-size: 0.625rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Artist cards */
.artist-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--vf-radius);
    overflow: hidden;
    cursor: pointer;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.artist-card img[src*="base44"] {
    filter: saturate(0.78) hue-rotate(-32deg) brightness(0.9);
}

.artist-card:hover img {
    transform: scale(1.1);
    filter: saturate(1.15) brightness(1.05);
}

.artist-card:hover img[src*="base44"] {
    filter: saturate(0.88) hue-rotate(-28deg) brightness(0.95);
}

.artist-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--vf-bg), transparent 60%);
}

.artist-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
}

.artist-card .time-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vf-orange-light);
    background: rgba(245, 128, 32, 0.1);
    border: 1px solid rgba(245, 128, 32, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
}

.artist-card .name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.artist-card.tba {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.artist-card.tba .tba-icon {
    color: var(--vf-orange-light);
    width: 3rem;
    height: 3rem;
    animation: vf-pulse-mystery 2s ease-in-out infinite;
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.gallery-grid--four {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1080px;
    margin: 0 auto;
    gap: 1rem;
}

@media (max-width: 991px) {
    .gallery-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 520px;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--vf-radius);
    overflow: hidden;
    width: clamp(180px, 22vw, 280px);
    height: clamp(240px, 30vw, 380px);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid--four .gallery-item {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
}

.gallery-item:hover {
    transform: scale(1.03) !important;
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) hue-rotate(-28deg) brightness(0.93);
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.8), transparent);
    font-size: 0.875rem;
    font-weight: 600;
}

/* FAQ */
.faq-item {
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(245, 128, 32, 0.3);
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--vf-muted);
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    background: var(--vf-pink);
    border-color: var(--vf-pink);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--vf-muted);
    line-height: 1.7;
    padding: 0 1.5rem;
}

/* Açık öğenin yüksekliği JS ile içeriğe göre (scrollHeight) verilir;
   sabit max-height uzun cevapları kesiyordu. */
.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.25rem;
}

/* Contact */
.contact-card {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(245, 128, 32, 0.3);
    transform: translateY(-2px);
    color: inherit;
}

.contact-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 128, 32, 0.1);
    border: 1px solid rgba(245, 128, 32, 0.2);
    color: var(--vf-orange-light);
    flex-shrink: 0;
}

.vf-form label:not(.vf-form-check) {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--vf-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    display: block;
}

.vf-form-consents {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.vf-form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--vf-muted);
    line-height: 1.45;
    margin-bottom: 0.65rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.vf-form-check:last-child {
    margin-bottom: 0;
}

.vf-form-check a {
    color: var(--vf-orange-light);
    text-decoration: none;
}

.vf-form-check a:hover {
    text-decoration: underline;
}

.vf-form input:not([type="checkbox"]):not([type="radio"]),
.vf-form textarea,
.vf-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.3s;
    font-family: var(--font-body);
}

.vf-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.25rem;
}

.vf-form select option {
    background: #11111b;
    color: #fff;
}

.vf-form input:focus,
.vf-form textarea:focus,
.vf-form select:focus {
    border-color: var(--vf-pink);
}

.vf-form input::placeholder,
.vf-form textarea::placeholder {
    color: rgba(161, 161, 170, 0.5);
}

.vf-form textarea {
    resize: none;
}

.vf-form input[type="checkbox"],
.vf-form input[type="radio"] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    padding: 0;
    border: none;
    border-bottom: none;
    accent-color: var(--vf-pink);
    cursor: pointer;
}

.vf-form-field {
    display: flex;
    flex-direction: column;
}

.vf-form input:not([type="checkbox"]):not([type="radio"]).is-invalid,
.vf-form textarea.is-invalid,
.vf-form select.is-invalid {
    border-color: rgba(239, 68, 68, 0.75);
}

.vf-form-consents.is-invalid {
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(239, 68, 68, 0.06);
}

.vf-form-check.is-invalid {
    color: #fca5a5;
}

.vf-form-error {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: #fca5a5;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Footer */
.vf-footer {
    position: relative;
    padding: 5rem 0 2rem;
    background: var(--vf-bg-alt);
    overflow: hidden;
}

.vf-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 128, 32, 0.4), rgba(28, 144, 149, 0.4), transparent);
}

.vf-footer h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.vf-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vf-footer ul li {
    margin-bottom: 0.75rem;
}

.vf-footer ul a,
.vf-footer ul button {
    color: var(--vf-muted);
    text-decoration: none;
    font-size: 0.875rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s;
}

.vf-footer ul a:hover,
.vf-footer ul button:hover {
    color: var(--vf-orange-light);
}

.vf-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.payment-badges {
    display: flex;
    gap: 0.5rem;
}

.payment-badges span {
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--vf-muted);
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vf-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: #fff;
    background: rgba(245, 128, 32, 0.1);
    border-color: rgba(245, 128, 32, 0.4);
}

/* Announcement bar */
.vf-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: var(--vf-gradient-brand);
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.vf-announcement a {
    color: #fff;
    text-decoration: underline;
}

.vf-navbar.has-announcement {
    top: 2.5rem;
}

/* Popup */
.vf-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.vf-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.vf-popup {
    background: var(--vf-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vf-radius-lg);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
}

.vf-popup-overlay.show .vf-popup {
    transform: scale(1);
}

.vf-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--vf-muted);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

/* Afiş (görselli) popup */
.vf-popup.vf-popup--image {
    padding: 0.625rem;
    max-width: min(30rem, calc((85vh - 1.25rem) * 3 / 4));
    background: var(--vf-bg-alt);
}

.vf-popup-poster {
    display: block;
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: calc(var(--vf-radius-lg) - 0.625rem);
}

.vf-popup--image .vf-popup-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    z-index: 2;
}

/* Tickets page */
.ticket-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.ticket-card:hover {
    border-color: rgba(245, 128, 32, 0.3);
    transform: translateY(-4px);
}

.ticket-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vf-orange-light);
}

/* Teşekkür / bilet onay sayfası */
.vf-thankyou-tickets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.vf-thankyou-ticket {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 220px;
}

.vf-thankyou-ticket img {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.5rem;
}

/* Legal page */
.vf-legal-content {
    color: var(--vf-muted);
    line-height: 1.8;
}

.vf-legal-content h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-top: 2rem;
}

/* Animations */
@keyframes vf-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes vf-pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--vf-pink); }
    50% { opacity: 0.6; box-shadow: 0 0 16px var(--vf-pink); }
}

@keyframes vf-pulse-mystery {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes vf-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.vf-scroll-hint svg {
    animation: vf-bounce 2s ease-in-out infinite;
}

/* Utilities */
.text-muted-vf {
    color: var(--vf-muted) !important;
}

/* Breadcrumb — koyu tema (Bootstrap varsayılanı koyu zeminde okunmuyor) */
.vf-breadcrumb .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.35);
    --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.vf-breadcrumb .breadcrumb-item a {
    color: var(--vf-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vf-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.vf-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-md {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .vf-nav-desktop,
    .vf-nav-links,
    .vf-nav-actions {
        display: none !important;
    }

    .vf-navbar.has-announcement ~ .vf-mobile-backdrop,
    .vf-navbar.has-announcement ~ .vf-mobile-menu {
        top: var(--vf-announcement-offset, 2.5rem);
    }

    .vf-navbar.has-announcement ~ .vf-mobile-menu {
        height: calc(100% - var(--vf-announcement-offset, 2.5rem));
    }

    .vf-navbar.has-announcement ~ .vf-mobile-backdrop {
        height: calc(100% - var(--vf-announcement-offset, 2.5rem));
    }

    .vf-section {
        padding: 3.5rem 0;
    }

    .vf-hero {
        min-height: 100svh;
        min-height: 100dvh;
    }

    .vf-hero-content {
        padding: 5.5rem 1rem 5rem;
    }

    .vf-hero-logo {
        margin-bottom: 1rem;
    }

    .vf-site-logo--hero {
        height: clamp(5rem, 30vw, 8.5rem);
        max-width: min(96vw, 28rem);
    }

    .vf-hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        padding: 0 0.25rem;
    }

    .vf-hero-badges {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .vf-hero-badges .badge-pill {
        font-size: 0.75rem;
        padding: 0.45rem 0.75rem;
        max-width: 100%;
    }

    .vf-hero-badges .badge-pill span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 220px;
    }

    .countdown-box {
        min-width: 58px;
        padding: 0.65rem 0.75rem;
    }

    .countdown-sep {
        font-size: 1.125rem;
    }

    .vf-hero-cta {
        width: 100%;
        max-width: 22rem;
        margin: 0 auto;
    }

    .vf-hero-cta .btn-pill {
        width: 100%;
    }

    .vf-scroll-hint {
        bottom: 1rem;
        font-size: 0.65rem;
    }

    .vf-heading.display-5 {
        font-size: clamp(1.65rem, 7vw, 2.5rem);
    }

    .text-muted-vf.fs-5 {
        font-size: 1rem !important;
    }

    .vf-float-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -1.5rem;
        margin-bottom: 1.25rem;
        display: inline-flex;
    }

    .vf-about-media {
        margin-bottom: 0;
    }

    .vf-image-frame {
        height: min(320px, 55vw) !important;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .artist-card .name {
        font-size: 1rem;
    }

    .artist-card .info {
        padding: 0.85rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        padding: 0 0.25rem;
    }

    .gallery-item {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 4;
        transform: none !important;
        margin: 0 !important;
    }

    .faq-toggle {
        font-size: 0.9375rem;
        padding: 1rem 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
        font-size: 0.9375rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1rem 1rem;
    }

    .contact-card {
        padding: 0.85rem;
    }

    .vf-footer {
        padding: 3rem 0 2rem;
    }

    .vf-footer-bottom {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.25rem;
    }

    .payment-badges {
        flex-wrap: wrap;
    }

    .vf-popup {
        max-width: calc(100vw - 2rem);
        margin: 0 1rem;
    }
}

@media (min-width: 992px) {
    .vf-menu-btn,
    .vf-nav-mobile-actions,
    .vf-mobile-backdrop,
    .vf-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    :root {
        --vf-announcement-offset: 2.25rem;
    }

    .vf-announcement {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .vf-navbar {
        padding: 0.5rem 0;
    }

    .vf-section {
        padding: 2.75rem 0;
    }

    .vf-hero-content {
        padding-top: 5rem;
        padding-bottom: 4.5rem;
    }

    .countdown-sep.seconds-sep,
    .countdown-box.seconds-box {
        display: none;
    }

    .countdown-sep:nth-of-type(4) {
        display: none;
    }

    .tab-pill {
        padding: 0.65rem 1rem;
        font-size: 0.8125rem;
    }

    .btn-pill {
        padding: 0.7rem 1.15rem;
        font-size: 0.8125rem;
    }

    .vf-scroll-hint {
        display: none;
    }

    .container-xl.px-4,
    .container.px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Auth — Giriş / Kayıt */
.vf-auth {
    position: relative;
    min-height: 100vh;
    padding: 7rem 0 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vf-auth-card {
    padding: 2rem 2rem 2.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.vf-auth-brand {
    padding-right: 2rem;
}

.vf-auth-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 128, 32, 0.12);
    border: 1px solid rgba(245, 128, 32, 0.25);
    color: var(--vf-orange-light);
}

.vf-auth-form .vf-auth-field {
    margin-bottom: 1.15rem;
}

.vf-auth-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vf-muted);
    margin-bottom: 0.45rem;
}

.vf-auth-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.vf-auth-input::placeholder {
    color: rgba(161, 161, 170, 0.45);
}

.vf-auth-input:focus {
    outline: none;
    border-color: rgba(245, 128, 32, 0.55);
    box-shadow: 0 0 0 3px rgba(245, 128, 32, 0.12);
}

.vf-auth-input.is-invalid {
    border-color: rgba(239, 68, 68, 0.65);
}

.vf-auth-error {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: #fca5a5;
}

.vf-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--vf-muted);
    line-height: 1.45;
    margin-bottom: 0.65rem;
}

.vf-auth-check input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--vf-pink);
    width: 1rem;
    height: 1rem;
}

.vf-auth-check a {
    color: var(--vf-orange-light);
    text-decoration: none;
}

.vf-auth-check a:hover {
    text-decoration: underline;
}

.vf-auth-consents {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.vf-auth-link {
    color: var(--vf-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.vf-auth-link:hover {
    color: var(--vf-orange-light);
}

.vf-auth-alert {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.vf-auth-alert ul {
    margin: 0;
}

.vf-auth-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #bbf7d0;
}

.vf-auth-alert--info {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #bfdbfe;
}

.vf-auth-alert--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

.vf-auth .tab-pill-group {
    width: 100%;
    max-width: 320px;
}

.vf-auth .tab-pill {
    flex: 1;
    text-align: center;
}

@media (max-width: 991.98px) {
    .vf-auth {
        padding-top: 6rem;
    }

    .vf-auth-card {
        padding: 1.5rem;
    }
}

/* ─── Bootstrap uyumu & tutarlı UI ─── */
.vf-body .glass-card .form-control,
.vf-body .glass-card .form-select,
.vf-body .vf-section .form-control:not(.vf-auth-input),
.vf-body .vf-section .form-select:not(.vf-auth-input) {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 0.625rem;
    font-size: 0.875rem;
}

.vf-body .glass-card .form-control::placeholder,
.vf-body .vf-section .form-control:not(.vf-auth-input)::placeholder {
    color: rgba(161, 161, 170, 0.65);
}

.vf-body .glass-card .form-control:focus,
.vf-body .glass-card .form-select:focus,
.vf-body .vf-section .form-control:not(.vf-auth-input):focus,
.vf-body .vf-section .form-select:not(.vf-auth-input):focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 128, 32, 0.45);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(245, 128, 32, 0.12);
}

.vf-body .glass-card .form-control.is-invalid,
.vf-body .vf-section .form-control.is-invalid {
    border-color: rgba(248, 113, 113, 0.65);
}

.vf-body .form-select option {
    background: #16161f;
    color: #fff;
}

.vf-body .alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fecaca;
}

.vf-body .alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86efac;
}

.vf-body .alert-warning {
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.25);
    color: #fde68a;
}

.vf-body .ticket-card .badge.bg-primary,
.vf-body .badge.bg-primary-subtle {
    background: linear-gradient(135deg, rgba(245, 128, 32, 0.85), rgba(28, 144, 149, 0.85)) !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.vf-body .vf-section .text-secondary {
    color: var(--vf-muted) !important;
}

.vf-body .vf-section a:not([class*="btn"]):not(.text-gradient-pink):not(.text-white):not(.nav-link):not(.vf-auth-link) {
    color: var(--vf-link);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vf-body .vf-section a:not([class*="btn"]):not(.text-gradient-pink):not(.text-white):not(.nav-link):not(.vf-auth-link):hover {
    color: var(--vf-link-hover);
}

.vf-coupon-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.vf-coupon-row .form-control {
    flex: 1;
    min-width: 0;
}

.vf-input-qty {
    width: 4rem !important;
    text-align: center;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

.btn-vf-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--vf-gradient-accent);
    color: #fff;
    box-shadow: 0 0 30px rgba(245, 128, 32, 0.35);
}

.btn-vf-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(245, 128, 32, 0.5);
    color: #fff;
}

.vf-body .badge.bg-success {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #86efac !important;
    border: 1px solid rgba(34, 197, 94, 0.35);
    font-weight: 600;
}

.vf-body .badge.bg-warning {
    background: rgba(234, 179, 8, 0.18) !important;
    color: #fde68a !important;
    border: 1px solid rgba(234, 179, 8, 0.35);
    font-weight: 600;
}

.vf-body .badge.bg-secondary {
    background: rgba(161, 161, 170, 0.15) !important;
    color: #d4d4d8 !important;
    border: 1px solid rgba(161, 161, 170, 0.3);
    font-weight: 600;
}

.vf-body .badge.bg-info {
    background: rgba(56, 189, 248, 0.15) !important;
    color: #7dd3fc !important;
    border: 1px solid rgba(56, 189, 248, 0.35);
    font-weight: 600;
}
