/* ====================================
   گذر فرهنگ — Tiwall-inspired layout
   Brand palette (photo): Navy #051C33 | Mahogany #5C2D1B | Teal #22C1C3 | White
   ==================================== */

:root {
    --gf-teal: #22c1c3;
    --gf-teal-dark: #1a9fa1;
    --gf-teal-light: #e6f7f7;
    --gf-navy: #051c33;
    --gf-navy-light: #0a2d4d;
    --gf-mahogany: #5c2d1b;
    --gf-mahogany-light: #7a3d26;
    --gf-white: #ffffff;
    --gf-surface: #f3f4f6;
    --gf-surface-2: #e9ecef;

    --primary: var(--gf-teal);
    --primary-dark: var(--gf-teal-dark);
    --primary-light: var(--gf-teal-light);
    --secondary: var(--gf-navy);
    --accent: var(--gf-mahogany);
    --white: var(--gf-white);
    --light: var(--gf-surface);
    --gray: #6b7280;
    --dark: var(--gf-navy);
    --border: #e5e7eb;
    --border-light: #f0f1f3;
    --shadow: 0 1px 3px rgba(5, 28, 51, 0.06);
    --shadow-md: 0 4px 14px rgba(5, 28, 51, 0.1);
    --shadow-lg: 0 10px 28px rgba(5, 28, 51, 0.14);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.22s ease;

    /* Typography — base text size matches header search placeholder */
    --gf-fs-base: 14px;
    --gf-fs-text: 1rem;
    --gf-fw: 400;
    --gf-fw-emphasis: 400;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: var(--gf-fs-base);
}

body {
    font-family: 'IRANSans', 'IranSans', Tahoma, sans-serif;
    font-size: var(--gf-fs-text);
    font-weight: var(--gf-fw);
    background: transparent;
    color: var(--dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Typography: same size as header search (footer keeps its own scale) */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: var(--gf-fw-emphasis);
    color: var(--gf-navy);
    font-size: var(--gf-fs-text);
}
p, li, label, td, th, .form-control, .form-select, .btn {
    font-weight: var(--gf-fw);
    font-size: var(--gf-fs-text);
}
b, strong {
    font-weight: var(--gf-fw-emphasis);
}

/* Soften Bootstrap utility bold classes (used in many views) */
.fw-bold, .fw-bolder, .fw-semibold,
.font-weight-bold, .font-weight-bolder {
    font-weight: var(--gf-fw-emphasis) !important;
}

button, input, select, textarea, .btn, .form-control, .form-select, .navbar, .dropdown-menu {
    font-family: inherit;
}

.fa, .fas, .far, .fal, .fat, .fad, .fab, .fa-solid, .fa-regular, .fa-brands, .fa-classic, .fa-sharp {
    font-family: var(--fa-style-family-classic, "Font Awesome 6 Free") !important;
}
.fab, .fa-brands {
    font-family: var(--fa-style-family-brands, "Font Awesome 6 Brands") !important;
}

a { color: var(--gf-navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gf-teal-dark); }

/* ---- Page atmosphere + brand logo background (all pages) ---- */
.gf-page-atmosphere {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(34, 193, 195, 0.12), transparent 55%),
        radial-gradient(ellipse 70% 45% at -10% 100%, rgba(92, 45, 27, 0.1), transparent 50%),
        linear-gradient(180deg, #eef1f4 0%, var(--gf-surface) 40%, #ebe7e2 100%);
}
.gf-brand-watermark {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.07;
    mix-blend-mode: multiply;
    filter: grayscale(0.1) contrast(1.05);
}
.gf-brand-watermark img {
    width: min(72vw, 680px);
    max-height: 70vh;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    animation: gfWatermarkBreath 18s ease-in-out infinite alternate;
}
@keyframes gfWatermarkBreath {
    from { transform: scale(1) translateY(0); opacity: 0.85; }
    to { transform: scale(1.04) translateY(-12px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .gf-brand-watermark img { animation: none; }
}

.site-main {
    position: relative;
    isolation: isolate;
    min-height: 60vh;
}

/* ---- Topbar ---- */
.site-topbar {
    background: var(--gf-navy);
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    padding: 0.35rem 0;
}
.site-topbar i { color: var(--gf-teal); margin-left: 0.35rem; }

/* ---- Header (Tiwall-like) ---- */
.site-header {
    background: var(--gf-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.gf-header-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0 0.65rem;
}

.gf-header-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
}

.navbar-brand {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    min-height: 0;
}

.navbar-brand .brand-logo--main {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.brand-text {
    color: var(--secondary) !important;
    font-weight: 700 !important;
    font-size: var(--gf-fs-text);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.site-header .navbar-brand .brand-text {
    font-size: 1.2rem;
    font-weight: 700 !important;
}

.gf-header-search {
    flex: 1;
    max-width: 420px;
    margin: 0 auto;
}
.gf-header-search .form-control {
    border: 1px solid var(--border);
    border-radius: 999px;
    height: 40px;
    padding-right: 1rem;
    padding-left: 2.75rem;
    background: var(--gf-surface);
    font-size: var(--gf-fs-text);
}
.gf-header-search .form-control:focus {
    border-color: var(--gf-teal);
    box-shadow: 0 0 0 3px rgba(34, 193, 195, 0.18);
    background: #fff;
}
.gf-header-search .search-btn {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--gf-teal);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gf-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-inline-start: auto;
}

.gf-header-search--mobile {
    display: none;
    width: 100%;
    max-width: none;
    margin: 0.65rem 0 0;
}

.navbar-toggler {
    border: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-navy);
    background: var(--gf-surface);
    border: 1px solid var(--border);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { font-size: 1.1rem; }

.gf-header-actions .gf-header-btn {
    height: 40px;
    min-height: 40px;
    padding: 0 0.95rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    line-height: 1;
    box-sizing: border-box;
    font-size: var(--gf-fs-text);
    font-weight: 400;
    white-space: nowrap;
}

.gf-cart-btn {
    position: relative;
    width: 40px;
    min-width: 40px;
    padding: 0 !important;
}
.gf-cart-badge {
    position: absolute;
    top: -0.35rem;
    inset-inline-start: -0.25rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--gf-mahogany);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.15rem;
    text-align: center;
    pointer-events: none;
}

/* Category strip — like Tiwall wall filters */
.gf-category-strip {
    background: var(--gf-white);
    border-bottom: 1px solid var(--border);
    padding: 0.55rem 0;
}
.gf-category-strip .strip-inner {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}
.gf-category-strip .strip-inner::-webkit-scrollbar { display: none; }

.gf-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--gf-surface);
    color: var(--gf-navy);
    font-size: 0.8rem;
    font-weight: 400;
    transition: var(--transition);
}
.gf-cat-chip:hover,
.gf-cat-chip.active {
    background: var(--gf-navy);
    border-color: var(--gf-navy);
    color: #fff;
}
.gf-cat-chip i { color: var(--gf-teal); font-size: 0.8rem; }
.gf-cat-chip:hover i,
.gf-cat-chip.active i { color: var(--gf-teal); }

.nav-link {
    color: var(--dark) !important;
    font-weight: 400;
    padding: 0.45rem 0.85rem !important;
    border-radius: 6px;
    font-size: 0.84rem;
}
.nav-link:hover,
.nav-link.active {
    background: var(--gf-teal-light);
    color: var(--gf-navy) !important;
}

.btn-user {
    background: var(--gf-teal-light);
    border: none;
    color: var(--secondary);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-user:hover { background: var(--gf-teal); color: #fff; }
.gf-header-actions .btn-user.gf-header-btn {
    padding: 0 0.85rem;
}
.user-avatar-sm {
    width: 24px;
    height: 24px;
    background: var(--gf-teal);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ---- Buttons ---- */
.btn {
    border-radius: var(--radius);
    font-weight: 400;
    font-size: 0.86rem;
    transition: var(--transition);
}
.btn-primary {
    --bs-btn-bg: var(--gf-teal);
    --bs-btn-border-color: var(--gf-teal);
    --bs-btn-hover-bg: var(--gf-teal-dark);
    --bs-btn-hover-border-color: var(--gf-teal-dark);
    --bs-btn-active-bg: var(--gf-mahogany);
    --bs-btn-active-border-color: var(--gf-mahogany);
    background: var(--gf-teal);
    border-color: var(--gf-teal);
    color: #fff;
}
.btn-primary:hover {
    background: var(--gf-teal-dark);
    border-color: var(--gf-teal-dark);
    color: #fff;
}
.btn-outline-primary {
    color: var(--gf-navy);
    border-color: var(--gf-navy);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--gf-navy);
    border-color: var(--gf-navy);
    color: #fff;
}
.btn-accent {
    background: var(--gf-mahogany);
    border-color: var(--gf-mahogany);
    color: #fff;
}
.btn-accent:hover {
    background: var(--gf-mahogany-light);
    color: #fff;
}
.btn-white { background: #fff; color: var(--gf-navy); }
.btn-white:hover { background: var(--gf-surface); color: var(--gf-navy); }

.text-primary { color: var(--gf-teal-dark) !important; }
.bg-primary { background-color: var(--gf-teal) !important; }

/* ---- Wall / Poster cards (Tiwall-like) ---- */
.gf-wall {
    padding: 2rem 0 2.75rem;
    position: relative;
}
.gf-wall-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(5, 28, 51, 0.12);
    position: relative;
}
.gf-wall-head::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--gf-teal), var(--gf-mahogany));
}
.gf-wall-head h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gf-navy);
    margin: 0;
}
.gf-wall-head a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gf-teal-dark);
}
.gf-wall-head a:hover { color: var(--gf-mahogany); }

.poster-card {
    background: #fff;
    border: 1px solid rgba(5, 28, 51, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 2px 10px rgba(5, 28, 51, 0.04);
}
.poster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(5, 28, 51, 0.12);
    border-color: rgba(34, 193, 195, 0.4);
}
.poster-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--gf-navy);
    overflow: hidden;
}
.poster-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.poster-card:hover .poster-card__media img { transform: scale(1.04); }
.poster-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gf-mahogany);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 400;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    z-index: 1;
}
.poster-card__badge--past {
    left: 10px;
    right: auto;
    background: rgba(5, 28, 51, 0.78);
}
.poster-card--past .poster-card__media img {
    filter: grayscale(0.25);
}
.poster-card__soldout {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 10, 10, 0.28);
    pointer-events: none;
}
.poster-card__soldout > span {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border: 2px solid #c62828;
    border-radius: 4px;
    color: #c62828;
    background: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.85rem, 2.4vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    transform: rotate(-28deg);
    box-shadow: 0 4px 14px rgba(198, 40, 40, 0.25);
    white-space: nowrap;
}
.poster-card--soldout .poster-card__media img {
    filter: grayscale(0.35) brightness(0.92);
}
.poster-card--soldout:hover {
    transform: none;
}
.gf-wall--past {
    padding-top: 0.5rem;
}
.poster-card__body {
    padding: 0.85rem 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
}
.poster-card__title {
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--gf-navy);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.poster-card__meta {
    font-size: 0.72rem;
    color: var(--gray);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.poster-card__meta i { color: var(--gf-teal); }
.poster-card__cta {
    margin-top: auto;
    padding-top: 0.55rem;
}
.poster-card__cta .btn {
    width: 100%;
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
}

/* Legacy event-card maps to poster look where used */
.event-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.event-card .card-img-wrapper { aspect-ratio: 3/4; overflow: hidden; background: var(--gf-navy); }
.event-card .card-img-top { height: 100%; width: 100%; object-fit: cover; transition: transform 0.45s ease; }
.event-card:hover .card-img-top { transform: scale(1.04); }
.event-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gf-mahogany);
    color: #fff;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 400;
    z-index: 2;
}
.event-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 400;
}

/* ---- Home slider (admin-managed) ---- */
.gf-home-slider {
    position: relative;
    overflow: hidden;
    background: #051c33;
}
.gf-home-slider__carousel {
    position: relative;
}
.gf-home-slider__media {
    display: block;
    position: relative;
    width: 100%;
    height: clamp(280px, 48vw, 520px);
    overflow: hidden;
}
.gf-home-slider__media--short {
    height: clamp(180px, 28vw, 320px);
}
.gf-home-slider__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 6s ease;
}
.carousel-item.active .gf-home-slider__media img {
    transform: scale(1.08);
}
.gf-home-slider__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 28, 51, 0.15) 0%, rgba(5, 28, 51, 0.55) 55%, rgba(5, 28, 51, 0.82) 100%);
    z-index: 2;
    padding: 1.5rem 0 2rem;
}
.gf-home-slider__brand {
    display: flex;
    align-items: center;
    gap: 0.9rem 1.1rem;
    color: #fff;
    max-width: 42rem;
}
.gf-home-slider__logo {
    height: 56px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.gf-home-slider__title {
    margin: 0 0 0.25rem;
    font-size: clamp(1.25rem, 2.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}
.gf-home-slider__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    line-height: 1.55;
    max-width: 42rem;
}
.gf-home-slider__text p { margin: 0; }
.gf-home-slider__caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.85rem 0;
    background: linear-gradient(180deg, transparent, rgba(5, 28, 51, 0.75));
    color: #fff;
    pointer-events: none;
}
.gf-home-slider__caption-text {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    opacity: 0.9;
}
.gf-home-slider__caption-text p { margin: 0; }
.gf-home-slider .carousel-indicators {
    margin-bottom: 0.75rem;
    z-index: 3;
}
.gf-home-slider .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.55);
    border: 0;
    opacity: 1;
}
.gf-home-slider .carousel-indicators .active {
    background-color: var(--gf-teal);
}
.gf-home-slider .carousel-control-prev,
.gf-home-slider .carousel-control-next {
    width: 8%;
    z-index: 3;
    opacity: 0.75;
}
.gf-home-slider--bottom {
    margin: 1.5rem 0 0;
}
@media (max-width: 767px) {
    .gf-home-slider__brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }
    .gf-home-slider__logo { height: 44px; }
    .gf-home-slider__overlay { padding: 1.1rem 0 1.4rem; }
}

/* ---- Home hero (compact teal) ---- */
.gf-hero {
    position: relative;
    overflow: hidden;
    color: #05303a;
    min-height: 0;
    display: flex;
    align-items: center;
    background: var(--gf-teal);
}
.gf-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 120% at 100% 0%, rgba(255, 255, 255, 0.28), transparent 55%),
        radial-gradient(ellipse 50% 90% at 0% 100%, rgba(5, 28, 51, 0.18), transparent 50%),
        linear-gradient(120deg, #1aadb0 0%, var(--gf-teal) 45%, #2ec8ca 100%);
}
.gf-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0.95rem 0 1.05rem;
}
.gf-hero__row {
    display: flex;
    align-items: center;
    gap: 0.85rem 1rem;
    width: 100%;
}
.gf-hero__logo {
    height: 64px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.gf-hero__copy {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}
.gf-hero__brand {
    margin: 0;
    color: #051c33;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.gf-hero__slogan {
    margin: 0;
    color: rgba(5, 28, 51, 0.72);
    font-size: clamp(0.82rem, 1.5vw, 0.98rem);
    font-weight: 400;
    line-height: 1.55;
    max-width: 28rem;
}
.gf-hero__find {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr auto;
    gap: 0.35rem;
    align-items: stretch;
    flex: 1 1 320px;
    min-width: 0;
    padding: 0.35rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(5, 28, 51, 0.08);
}
.gf-hero__input,
.gf-hero__select {
    height: 40px;
    border: 0;
    border-radius: 9px;
    padding: 0 0.75rem;
    background: #fff;
    color: var(--gf-navy);
    font-family: inherit;
    font-size: 0.82rem;
    outline: none;
    min-width: 0;
    width: 100%;
}
.gf-hero__input:focus,
.gf-hero__select:focus {
    box-shadow: 0 0 0 3px rgba(5, 28, 51, 0.12);
}
.gf-hero__submit {
    height: 40px;
    border: 0;
    border-radius: 9px;
    padding: 0 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: var(--gf-navy);
    color: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.gf-hero__submit:hover { background: #0a2d4d; }
.gf-hero__submit:active { transform: translateY(1px); }

@media (max-width: 991px) {
    .gf-hero__row {
        flex-wrap: wrap;
    }
    .gf-hero__copy {
        flex: 1 1 calc(100% - 90px);
    }
    .gf-hero__find {
        flex: 1 1 100%;
    }
}
@media (max-width: 767px) {
    .gf-hero__row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }
    .gf-hero__logo {
        height: 52px;
        max-width: 160px;
        align-self: flex-start;
    }
    .gf-hero__find {
        grid-template-columns: 1fr;
    }
    .gf-hero__submit { width: 100%; }
}

.gf-wall--past {
    padding-top: 0.5rem;
}
.gf-wall--news {
    padding: 2rem 0 2.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 193, 195, 0.06) 40%, transparent 100%);
}

/* News / article cards */
.gf-news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(5, 28, 51, 0.08);
    box-shadow: 0 8px 24px rgba(5, 28, 51, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gf-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(5, 28, 51, 0.1);
}
.gf-news-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9ecef;
}
.gf-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.gf-news-card:hover .gf-news-card__media img {
    transform: scale(1.04);
}
.gf-news-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(5, 28, 51, 0.88);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}
.gf-news-card__body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.gf-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    color: var(--gray);
    font-size: 0.78rem;
}
.gf-news-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
}
.gf-news-card__title a {
    color: var(--gf-navy);
}
.gf-news-card__title a:hover {
    color: var(--gf-teal-dark);
}
.gf-news-card__excerpt {
    margin: 0 0 0.35rem;
    color: rgba(5, 28, 51, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}
.gf-news-card .btn {
    align-self: flex-start;
}

/* MainLogo watermark behind events wall */
.gf-wall {
    position: relative;
    overflow: hidden;
}
.gf-wall__emblem {
    position: absolute;
    left: -2%;
    top: 8%;
    width: min(46vw, 420px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    filter: contrast(1.25);
}
.gf-wall__emblem img {
    width: 100%;
    height: auto;
    display: block;
}
.gf-wall > .container {
    position: relative;
    z-index: 1;
}

.brand-logo--mark-footer {
    height: 52px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}
.brand-logo--hero {
    width: min(100%, 360px);
    height: auto;
    max-height: 200px;
    object-fit: contain;
    opacity: 0.92;
}

/* ---- Sections / pages ---- */
/* هم‌عرض با .container بوت‌استرپ صفحه اصلی (xxl = 1320px) */
.page-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.5rem calc(var(--bs-gutter-x, 1.5rem) * 0.5) 3rem;
}

.page-container.gf-events-page {
    max-width: 1320px;
    width: 100%;
}

/* Compact branded page band (Events list, reusable) */
.gf-page-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 120% at 100% 0%, rgba(255, 255, 255, 0.28), transparent 55%),
        linear-gradient(120deg, #1aadb0 0%, var(--gf-teal) 50%, #2ec8ca 100%);
    padding: 1rem 0 1.15rem;
}
.gf-page-band__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.gf-page-band__logo {
    height: 44px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.gf-page-band__copy h1 {
    margin: 0 0 0.15rem;
    color: #051c33;
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    font-weight: 400;
    line-height: 1.35;
}
.gf-page-band__copy p {
    margin: 0;
    color: rgba(5, 28, 51, 0.78);
    font-size: 0.8rem;
}
.gf-events-page {
    position: relative;
    overflow: hidden;
}
.gf-events-page__emblem {
    position: absolute;
    left: -2%;
    top: 4rem;
    width: min(42vw, 380px);
    opacity: 0.055;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
}
.gf-events-page__emblem img {
    width: 100%;
    height: auto;
    display: block;
}
.gf-events-page > *:not(.gf-events-page__emblem) {
    position: relative;
    z-index: 1;
}
.gf-filter-bar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
}
@media (max-width: 767px) {
    .gf-page-band__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}
.section-title {
    text-align: right;
    margin-bottom: 1.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--gf-navy);
}
.section-title h2 {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gf-navy);
    margin: 0 0 0.25rem;
}
.section-title p {
    color: var(--gray);
    font-size: 0.82rem;
    margin: 0;
}
.section-title::after { display: none; }

.features,
.gf-features {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f7f5f2 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.gf-features__wash {
    position: absolute;
    right: -6%;
    top: 50%;
    width: min(42vw, 380px);
    transform: translateY(-50%) rotate(6deg);
    opacity: 0.05;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.gf-features__wash img {
    width: 100%;
    height: auto;
    display: block;
}
.feature-box {
    text-align: center;
    padding: 1.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(5, 28, 51, 0.06);
    height: 100%;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 193, 195, 0.35);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(145deg, var(--gf-teal-light), #fff);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.85rem;
    font-size: 1.35rem;
    color: var(--gf-navy);
    box-shadow: inset 0 0 0 1px rgba(34, 193, 195, 0.25);
}
.feature-title { font-size: 1rem; font-weight: 400; color: var(--gf-navy); margin-bottom: 0.35rem; }

/* Cards generic */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-title { font-weight: 400; color: var(--gf-navy); }
.card-text { color: var(--gray); }

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gf-navy) 0%, #020f1c 100%);
    color: #fff;
    padding: 3rem 0 1.25rem;
    margin-top: 2rem;
}
.site-footer__emblem {
    position: absolute;
    left: 1.5%;
    bottom: 8%;
    width: min(28vw, 220px);
    opacity: 0.32;
    pointer-events: none;
    mix-blend-mode: screen;
    filter:
        contrast(1.15)
        brightness(1.08)
        drop-shadow(0 0 4px rgba(255, 255, 255, 0.35));
}
.site-footer__emblem img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.25));
}
.site-footer__brand {
    display: inline-block;
    margin-bottom: 0.65rem;
    line-height: 0;
}
.site-footer__org-name {
    margin: 0 0 0.75rem;
    color: var(--gf-teal);
    font-size: 1.35rem;
    font-weight: 700 !important;
    line-height: 1.35;
}
.footer-title {
    font-size: 1rem;
    font-weight: 700 !important;
    margin-bottom: 1rem;
    color: var(--gf-teal);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.78); }
.footer-links a:hover { color: var(--gf-teal); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    margin-top: 1.75rem;
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}
.footer-sep {
    margin: 0 0.45rem;
    opacity: 0.45;
}
.footer-designer-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--gf-teal);
    font: inherit;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-designer-link:hover {
    color: #fff;
}

/* مودال طراح سایت — همان فونت صفحه (IRANSans) */
.gf-designer-modal,
.gf-designer-modal .modal-content,
.gf-designer-modal .modal-title,
.gf-designer-modal .modal-body,
.gf-designer-modal .gf-designer-modal__lead,
.gf-designer-modal .gf-designer-modal__phone {
    font-family: 'IRANSans', 'IranSans', Tahoma, sans-serif !important;
}
.gf-designer-modal .modal-dialog,
.gf-designer-modal .gf-designer-modal__dialog {
    max-width: 380px;
    width: calc(100% - 2rem);
    margin: 0 auto 2.25rem;
    /* افقی وسط، عمودی پایین صفحه */
    display: flex;
    align-items: flex-end;
    min-height: calc(100% - 1.5rem);
}
.gf-designer-modal.show .modal-dialog {
    transform: none;
}
@media (max-width: 575.98px) {
    .gf-designer-modal .modal-dialog,
    .gf-designer-modal .gf-designer-modal__dialog {
        margin-bottom: 1.25rem;
        min-height: calc(100% - 1rem);
    }
}
.gf-designer-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(5, 28, 51, 0.28);
    background: #fff;
}
.gf-designer-modal .modal-header {
    background: linear-gradient(120deg, var(--gf-navy) 0%, #0a2d4d 100%);
    border: none;
    padding: 1rem 1.15rem;
    align-items: center;
}
.gf-designer-modal .modal-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}
.gf-designer-modal .btn-close {
    margin: 0;
    opacity: 0.85;
}
.gf-designer-modal .btn-close:hover {
    opacity: 1;
}
.gf-designer-modal .modal-body {
    text-align: center;
    padding: 1.75rem 1.35rem 1.85rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 193, 195, 0.12), transparent 70%),
        #fff;
}
.gf-designer-modal__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gf-teal-light);
    color: var(--gf-teal-dark);
    font-size: 1.45rem;
    box-shadow: inset 0 0 0 1px rgba(34, 193, 195, 0.25);
}
.gf-designer-modal__lead {
    margin: 0 0 1.25rem;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
}
.gf-designer-modal__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-width: 220px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--gf-teal) 0%, var(--gf-teal-dark) 100%);
    color: #fff !important;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(34, 193, 195, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gf-designer-modal__phone:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(34, 193, 195, 0.45);
}
.gf-designer-modal__phone i {
    font-size: 0.95rem;
    opacity: 0.95;
}
.social-links { display: flex; gap: 0.65rem; margin-top: 0.85rem; }
.social-links a {
    min-width: 36px; min-height: 36px; padding: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
}
.social-links a:hover { background: var(--gf-teal); }
.social-links .social-link-icon { object-fit: contain; max-width: 100%; max-height: 100%; }
.social-links--contact a { background: var(--gf-teal-light); color: var(--gf-navy); }
.social-links--contact a:hover { background: var(--gf-teal); color: #fff; }

/* Forms */
.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gf-teal);
    box-shadow: 0 0 0 3px rgba(34, 193, 195, 0.18);
}
.form-label { font-weight: 400; color: var(--gf-navy); margin-bottom: 0.4rem; }

.breadcrumb {
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.55rem 1rem;
    border-radius: var(--radius);
}
.breadcrumb-item.active { color: var(--gf-teal-dark); }

.alert { border-radius: var(--radius); border: none; }
.alert-info { background: var(--gf-teal-light); color: var(--gf-navy); }

.reveal-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }
.fade-in { animation: fadeIn 0.5s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--gf-teal); border-radius: 4px; }

@media (max-width: 991px) {
    .gf-header-main {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .gf-header-actions {
        direction: ltr; /* همبرگر → سبد → ورود از چپ به راست */
        margin-inline-start: 0;
        gap: 0.4rem;
    }

    .gf-header-search.d-none.d-lg-block {
        display: none !important;
    }

    .gf-header-search--mobile {
        display: block !important;
        max-width: none;
        margin: 0.7rem 0 0;
        flex: none;
    }

    .gf-header-search--mobile .form-control {
        height: 42px;
        font-size: 0.9rem;
    }

    .gf-header-btn-label {
        display: none;
    }

    .gf-header-actions .btn-user.gf-header-btn {
        width: 40px;
        min-width: 40px;
        padding: 0 !important;
    }

    .gf-header-actions .btn-user.gf-header-btn .user-avatar-sm {
        margin: 0;
    }

    .gf-header-actions .dropdown-toggle::after {
        display: none;
    }

    .gf-brand-watermark { opacity: 0.055; }
    .gf-brand-watermark img { width: min(88vw, 520px); }
}
@media (prefers-reduced-motion: reduce) {
    .gf-brand-watermark img { animation: none; }
}
/* ---- Event details (Tiwall-like poster + info) ---- */
.event-poster {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--gf-navy);
    border: 1px solid var(--border);
}
.event-poster__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}
.event-poster__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gf-mahogany);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    z-index: 2;
}
.event-poster--soldout .event-poster__img {
    filter: grayscale(0.35) brightness(0.92);
}
.event-detail-head h1 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gf-navy);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.event-detail-summary {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.event-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
}
.event-meta-list li {
    font-size: 0.9rem;
    color: var(--gf-navy);
    font-weight: 400;
}
.event-meta-list i {
    color: var(--gf-teal);
    margin-left: 0.35rem;
}
.event-section h2 {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gf-navy);
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}
.event-description {
    color: #374151;
    line-height: 1.85;
    font-size: 0.92rem;
}
.event-description p { margin-bottom: 0.75rem; }
.event-description ul,
.event-description ol { padding-right: 1.2rem; margin-bottom: 0.75rem; }
.event-description img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* Event details page */
.gf-event-details { max-width: 1140px; }
.gf-event-details__crumb {
    margin-bottom: 1.1rem;
}
.gf-event-details__crumb .breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 0.8rem;
}
.gf-event-details__layout {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 1.5rem 1.75rem;
    align-items: start;
}
.gf-event-details__aside {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gf-event-facts {
    list-style: none;
    margin: 0;
    padding: 0.85rem 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.gf-event-facts li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}
.gf-event-facts i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gf-teal-light);
    color: var(--gf-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.gf-event-facts strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gray);
}
.gf-event-facts span {
    font-size: 0.84rem;
    color: var(--gf-navy);
}
.gf-event-lead {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    color: rgba(5, 28, 51, 0.78);
    line-height: 1.7;
}
.gf-event-block {
    margin-bottom: 1.75rem;
}
.gf-event-block > h2 {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gf-navy);
    padding: 0;
    border: 0;
}
.gf-event-empty {
    margin: 0;
    font-size: 0.86rem;
    color: var(--gray);
}
.gf-event-artists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}
.gf-event-artist {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gf-navy);
    box-shadow: 0 2px 10px rgba(5, 28, 51, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid rgba(5, 28, 51, 0.05);
}
.gf-event-artist:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(34, 193, 195, 0.35);
    color: var(--gf-navy);
}
.gf-event-artist__photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gf-surface);
    box-shadow: inset 0 0 0 2px rgba(34, 193, 195, 0.35);
}
.gf-event-artist__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gf-event-artist__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.gf-event-artist__meta strong {
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.35;
}
.gf-event-artist__meta small {
    font-size: 0.74rem;
    color: var(--gray);
}
.gf-session-hint {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    color: var(--gray);
}
.gf-session-picker {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}
.gf-session-picker.is-collapsed .gf-session-option:not(.is-active) {
    display: none;
}
.gf-session-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-align: right;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(5, 28, 51, 0.1);
    background: #fff;
    color: var(--gf-navy);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.gf-session-option:hover:not(:disabled) {
    border-color: rgba(34, 193, 195, 0.55);
    box-shadow: var(--shadow);
}
.gf-session-option.is-active {
    border-color: var(--gf-teal);
    background: linear-gradient(120deg, rgba(34, 193, 195, 0.12), rgba(255, 255, 255, 0.95));
    box-shadow: 0 0 0 3px rgba(34, 193, 195, 0.15);
}
.gf-session-option.is-disabled,
.gf-session-option:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.gf-session-option__check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    flex-shrink: 0;
    font-size: 0.7rem;
    background: #fff;
}
.gf-session-option.is-active .gf-session-option__check {
    background: var(--gf-teal);
    border-color: var(--gf-teal);
    color: #fff;
}
.gf-session-option__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}
.gf-session-option__body strong {
    font-size: 0.9rem;
    font-weight: 400;
}
.gf-session-option__when {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
}
.gf-session-option__when i { color: var(--gf-teal); }
.gf-session-option__warn {
    font-size: 0.75rem;
    color: var(--gf-mahogany);
}
.gf-session-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.75rem 0.95rem;
    margin-bottom: 0.85rem;
    border-radius: var(--radius-lg);
    background: var(--gf-navy);
    color: #fff;
}
.gf-session-active__label {
    display: block;
    font-size: 0.72rem;
    opacity: 0.75;
    margin-bottom: 0.15rem;
}
.gf-session-active strong {
    font-size: 0.88rem;
    font-weight: 400;
}
.gf-session-active .btn {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}
.gf-session-active .btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}
.gf-seat-panel {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    padding: 0.85rem;
    box-shadow: var(--shadow);
}
.gf-session-placeholder {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.7);
    color: var(--gray);
}
.gf-session-placeholder i {
    font-size: 1.4rem;
    color: var(--gf-teal);
    margin-bottom: 0.55rem;
    display: block;
}
.gf-session-placeholder p {
    margin: 0;
    font-size: 0.86rem;
}
.gf-event-soldout-note {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(198, 40, 40, 0.08);
    color: #c62828;
    font-size: 0.88rem;
}
@media (max-width: 991px) {
    .gf-event-details__layout { grid-template-columns: 1fr; }
    .gf-event-details__aside { position: static; max-width: 360px; }
}
@media (max-width: 575px) {
    .gf-event-artists { grid-template-columns: 1fr; }
}
/* ---- Artists directory (6 per row on desktop) ---- */
.gf-artists-page {
    max-width: 1140px;
}
.gf-artists-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem 0.75rem;
}
.gf-artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 0.85rem 0.55rem 0.95rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(5, 28, 51, 0.06);
    border-radius: var(--radius-lg);
    color: var(--gf-navy);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 8px rgba(5, 28, 51, 0.04);
}
.gf-artist-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 193, 195, 0.4);
    box-shadow: var(--shadow-md);
    color: var(--gf-navy);
}
.gf-artist-card__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    background: var(--gf-surface);
    box-shadow: inset 0 0 0 2px rgba(34, 193, 195, 0.35);
    flex-shrink: 0;
}
.gf-artist-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gf-artist-card__name {
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}
.gf-artist-card__role {
    font-size: 0.68rem;
    color: var(--gray);
    line-height: 1.2;
}
@media (max-width: 991px) {
    .gf-artists-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .gf-artists-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem 0.55rem; }
    .gf-artist-card { padding: 0.7rem 0.4rem 0.8rem; }
    .gf-artist-card__photo { width: 64px; height: 64px; }
}
@media (max-width: 480px) {
    .gf-artists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.artist-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}
.artist-chip:hover {
    border-color: var(--gf-teal);
    box-shadow: var(--shadow);
    color: var(--gf-navy);
}
.artist-chip img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.artist-chip strong {
    display: block;
    font-size: 0.9rem;
}
.artist-chip small {
    color: var(--gray);
    font-size: 0.78rem;
}
.session-card {
    border-color: var(--border);
}
.session-card .card-body {
    background: var(--gf-surface);
}

@media (max-width: 576px) {
    .poster-card__title { font-size: 0.88rem; }
    .event-detail-head h1 { font-size: 1.3rem; }
}

/* ---- Contact page ---- */
.gf-contact-page { max-width: 1100px; }
.gf-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.75fr);
    gap: 1.25rem;
    align-items: start;
}
.gf-contact-form-panel,
.gf-contact-info-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(5, 28, 51, 0.07);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.35rem 1.25rem 1.5rem;
}
.gf-contact-form-panel__title,
.gf-contact-info-panel__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gf-navy);
}
.gf-contact-form-panel__hint {
    margin: 0 0 1.1rem;
    font-size: 0.8rem;
    color: var(--gray);
}
.gf-contact-form__errors:empty { display: none; }
.gf-contact-form__errors {
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
    padding: 0.65rem 0.8rem;
    background: #fff5f5;
    border-radius: var(--radius);
    border: 1px solid #f5c2c7;
}
.gf-contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.75rem;
}
.gf-contact-field--full { grid-column: 1 / -1; }
.gf-contact-field label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
    color: var(--gf-navy);
}
.gf-contact-field .req { color: var(--gf-mahogany); }
.gf-contact-field .opt {
    color: var(--gray);
    font-size: 0.75rem;
}
.gf-contact-field .form-control {
    font-size: 0.86rem;
    border-radius: 9px;
    border-color: var(--border);
    min-height: 42px;
}
.gf-contact-field textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.gf-contact-captcha {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.gf-contact-captcha__img {
    height: 48px;
    width: 160px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #eef6f6;
    flex-shrink: 0;
}
.gf-contact-captcha__refresh {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--gf-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.gf-contact-captcha__refresh:hover {
    border-color: var(--gf-teal);
    color: var(--gf-teal-dark);
}
.gf-contact-captcha__input {
    flex: 1 1 140px;
    min-width: 120px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.gf-contact-submit {
    margin-top: 1.1rem;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.gf-contact-info-list {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.gf-contact-info-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.gf-contact-info-list__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gf-teal-light);
    color: var(--gf-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.gf-contact-info-list strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 0.1rem;
}
.gf-contact-info-list a,
.gf-contact-info-list span {
    font-size: 0.86rem;
    color: var(--gf-navy);
    word-break: break-word;
}
.gf-contact-social {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.gf-contact-social > strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 400;
    margin-bottom: 0.65rem;
    color: var(--gf-navy);
}
@media (max-width: 899px) {
    .gf-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .gf-contact-form__grid { grid-template-columns: 1fr; }
}

/* ---- Cart page ---- */
.gf-cart-page {
    position: relative;
}

.gf-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 1.5rem;
    align-items: start;
}

.gf-cart-items__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}
.gf-cart-items__head h2 {
    margin: 0;
    color: var(--gf-navy);
}
.gf-cart-items__head span {
    color: var(--gray);
}

.gf-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
}

.gf-cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 0.15rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.22s ease, transform 0.22s ease;
}
.gf-cart-item:hover {
    background: rgba(34, 193, 195, 0.06);
}

.gf-cart-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gf-teal-light);
    color: var(--gf-teal-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gf-cart-item__title {
    margin: 0 0 0.35rem;
    color: var(--gf-navy);
    line-height: 1.4;
}

.gf-cart-item__session {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
    color: var(--gf-mahogany);
    line-height: 1.5;
}
.gf-cart-item__session i {
    margin-top: 0.15rem;
    color: var(--gf-teal);
}
.gf-cart-item__session strong {
    font-weight: 700 !important;
    color: var(--gf-navy);
}

.gf-cart-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    color: var(--gray);
}
.gf-cart-item__meta i {
    color: var(--gf-teal);
    margin-left: 0.25rem;
}

.gf-cart-item__price {
    text-align: left;
    white-space: nowrap;
}
.gf-cart-item__price strong {
    display: block;
    color: var(--gf-navy);
}
.gf-cart-item__price span {
    color: var(--gray);
}

.gf-cart-remove-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--gf-mahogany);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.gf-cart-remove-btn:hover {
    background: var(--gf-mahogany);
    border-color: var(--gf-mahogany);
    color: #fff;
}

.gf-cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.1rem;
    color: var(--gf-navy);
    transition: color 0.2s ease;
}
.gf-cart-continue:hover {
    color: var(--gf-teal-dark);
}

.gf-cart-summary {
    position: sticky;
    top: 5.5rem;
    padding: 1.15rem 1.2rem 1.25rem;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(230, 247, 247, 0.9));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.gf-cart-summary h2 {
    margin: 0 0 1rem;
    color: var(--gf-navy);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.gf-cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    color: var(--gray);
}
.gf-cart-summary__row strong {
    color: var(--gf-navy);
}
.gf-cart-summary__row--total {
    margin: 0.9rem 0 1.15rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border);
    color: var(--gf-navy);
}
.gf-cart-summary__row--total strong {
    color: var(--gf-mahogany);
}
.gf-cart-summary__row--total small {
    color: var(--gray);
    font-weight: 400;
}

.gf-cart-checkout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gf-cart-email-opt {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    cursor: pointer;
    color: var(--gf-navy);
}
.gf-cart-email-opt .form-check-input {
    margin: 0;
    float: none;
}
.gf-cart-email-hint {
    margin: 0;
    color: var(--gray);
    line-height: 1.5;
}
.gf-cart-email-field label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--gf-navy);
}
.gf-cart-email-field small {
    display: block;
    margin-top: 0.35rem;
    color: var(--gray);
}

.gf-cart-login-hint {
    margin: 0 0 0.85rem;
    color: var(--gray);
    line-height: 1.55;
}

.gf-cart-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--gf-teal) 0%, var(--gf-teal-dark) 100%);
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 8px 18px rgba(26, 159, 161, 0.28);
}
.gf-cart-pay-btn:hover {
    color: #fff !important;
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(26, 159, 161, 0.34);
}
.gf-cart-pay-btn--ghost {
    width: auto;
    background: var(--gf-navy);
    box-shadow: var(--shadow-md);
}

.gf-cart-empty {
    max-width: 480px;
    margin: 2rem auto;
    text-align: center;
    padding: 2.25rem 1.25rem;
}
.gf-cart-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gf-teal-light);
    color: var(--gf-teal-dark);
    font-size: 1.6rem;
    animation: gf-cart-float 2.8s ease-in-out infinite;
}
.gf-cart-empty h2 {
    margin: 0 0 0.5rem;
    color: var(--gf-navy);
}
.gf-cart-empty p {
    margin: 0 0 1.25rem;
    color: var(--gray);
    line-height: 1.7;
}

@keyframes gf-cart-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 899px) {
    .gf-cart-layout {
        grid-template-columns: 1fr;
    }
    .gf-cart-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 575px) {
    .gf-cart-item {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "icon body remove"
            "icon price remove";
        gap: 0.45rem 0.75rem;
    }
    .gf-cart-item__icon { grid-area: icon; align-self: start; }
    .gf-cart-item__body { grid-area: body; }
    .gf-cart-item__price {
        grid-area: price;
        text-align: right;
    }
    .gf-cart-item__remove { grid-area: remove; align-self: start; }
}

/* ---- Unified text size (= header search); footer excluded ---- */
.site-topbar,
.site-header,
.site-main,
.user-dashboard-body {
    font-size: var(--gf-fs-text);
}

.site-topbar *:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.gf-cart-badge),
.site-header *:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.gf-cart-badge),
.site-main *:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.gf-cart-badge),
.user-dashboard-body *:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.gf-cart-badge) {
    font-size: inherit !important;
}
