/* Sep Space — Cosmic Coworking / Vintage Warm */
:root {
    --bg: #1c1830;
    --bg-deep: #14101f;
    --bg-card: #2a2540;
    --bg-card-hover: #342e4a;
    --cosmic: #9b7ed9;
    --cosmic-light: #c4b5fd;
    --cyan: #8ecae6;
    --yellow: #e8c547;
    --amber: #d4a017;
    --cream: #f5e6c8;
    --orange: #c4843a;
    --text: #f2ebe0;
    --text-muted: #b8a898;
    --border: rgba(232, 197, 71, 0.14);
    --glow-cosmic: 0 0 24px rgba(155, 126, 217, 0.35);
    --glow-warm: 0 0 22px rgba(232, 197, 71, 0.35);
    --glow-cyan: var(--glow-warm);
    --glow-yellow: var(--glow-warm);
    --radius: 12px;
    --font: 'Vazirmatn', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(155, 126, 217, 0.22), transparent 55%),
        radial-gradient(ellipse 80% 60% at 100% 50%, rgba(212, 160, 23, 0.08), transparent 50%),
        radial-gradient(ellipse 70% 50% at 0% 80%, rgba(142, 202, 230, 0.1), transparent 45%),
        linear-gradient(175deg, #221c38 0%, #1c1830 40%, #1a1528 100%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: var(--yellow); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--cream); }

img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Cosmic background layers */
.stars-bg {
    position: fixed; inset: 0; z-index: -4;
    background:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(245, 230, 200, 0.7), transparent),
        radial-gradient(1px 1px at 45% 15%, rgba(196, 181, 253, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 75% 35%, rgba(232, 197, 71, 0.5), transparent),
        radial-gradient(1px 1px at 25% 65%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 85% 75%, rgba(142, 202, 230, 0.4), transparent),
        radial-gradient(1px 1px at 55% 85%, rgba(245, 230, 200, 0.45), transparent),
        radial-gradient(1px 1px at 10% 90%, rgba(155, 126, 217, 0.35), transparent),
        radial-gradient(1px 1px at 65% 45%, rgba(255, 255, 255, 0.25), transparent);
    background-size: 100% 100%;
    animation: twinkle 10s ease-in-out infinite alternate;
}

.nebula-bg {
    position: fixed; inset: 0; z-index: -3; pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(124, 58, 237, 0.18), transparent 70%),
        radial-gradient(ellipse 45% 35% at 80% 20%, rgba(212, 160, 23, 0.12), transparent 65%),
        radial-gradient(ellipse 60% 45% at 60% 90%, rgba(59, 130, 246, 0.1), transparent 70%),
        radial-gradient(ellipse 40% 30% at 10% 70%, rgba(232, 197, 71, 0.08), transparent 60%);
    animation: nebulaDrift 20s ease-in-out infinite alternate;
}

.film-grain {
    position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes twinkle {
    0% { opacity: 0.55; }
    100% { opacity: 1; }
}

@keyframes nebulaDrift {
    0% { transform: scale(1) translate(0, 0); opacity: 0.85; }
    100% { transform: scale(1.05) translate(-1%, 1%); opacity: 1; }
}

.orbit-ring {
    position: fixed; border-radius: 50%;
    z-index: -2; pointer-events: none;
}
.ring-1 {
    width: 700px; height: 700px;
    top: -250px; right: -250px;
    border: 1px solid rgba(155, 126, 217, 0.15);
    box-shadow: inset 0 0 60px rgba(155, 126, 217, 0.06);
    animation: orbitSpin 40s linear infinite;
}
.ring-2 {
    width: 450px; height: 450px;
    bottom: -120px; left: -120px;
    border: 1px solid rgba(232, 197, 71, 0.12);
    box-shadow: inset 0 0 40px rgba(232, 197, 71, 0.05);
    animation: orbitSpin 32s linear infinite reverse;
}
.ring-3 {
    width: 300px; height: 300px;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(142, 202, 230, 0.1);
    animation: orbitSpin 50s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.ring-3 {
    animation-name: orbitSpinCenter;
}
@keyframes orbitSpinCenter {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.8rem 2rem;
    background: rgba(28, 24, 48, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.nav-brand {
    display: flex; align-items: center; gap: 0.8rem;
    color: var(--cream); font-weight: 700; font-size: 1.2rem;
}
.nav-logo { width: 40px; height: 40px; object-fit: contain; filter: sepia(0.15) saturate(1.1); }

.nav-links {
    display: flex; list-style: none; gap: 1.5rem;
}
.nav-links a {
    color: var(--text-muted); font-weight: 500; font-size: 0.95rem;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; right: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--cosmic-light));
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

main { padding-top: 70px; }

/* Buttons */
.btn {
    display: inline-block; padding: 0.7rem 1.5rem;
    border-radius: 8px; font-family: var(--font);
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; border: none; transition: all 0.3s;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--amber));
    color: #2a2010;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.25);
}
.btn-primary:hover {
    box-shadow: var(--glow-warm);
    transform: translateY(-2px);
    color: #1a1408;
}
.btn-outline {
    background: rgba(42, 37, 64, 0.5);
    border: 1px solid rgba(232, 197, 71, 0.45);
    color: var(--yellow);
}
.btn-outline:hover {
    background: rgba(232, 197, 71, 0.12);
    box-shadow: var(--glow-warm);
    color: var(--cream);
}
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn.glow { animation: pulseGlow 3s ease-in-out infinite; }
.full-width { width: 100%; }

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(232, 197, 71, 0.25); }
    50% { box-shadow: 0 0 28px rgba(232, 197, 71, 0.45), 0 0 50px rgba(155, 126, 217, 0.15); }
}

/* Hero — Static (no slider) */
.hero-static {
    padding: 5rem 0 3rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(232, 197, 71,0.06) 0%, transparent 70%);
}
.hero-static-inner { max-width: 700px; margin: 0 auto; }
.hero-logo {
    width: 100px; height: 100px; object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(232, 197, 71,0.4));
    animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--cream), var(--yellow), var(--cosmic-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Homepage — professional layout */
.home-eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.home-section-head .section-title { margin-bottom: 0; }
.home-section-head .home-eyebrow { margin-bottom: 0.4rem; }

.home-hero {
    padding: 4rem 0 3rem;
    background:
        radial-gradient(circle at 80% 20%, rgba(155, 126, 217, 0.14), transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(232, 197, 71, 0.1), transparent 40%);
}
.home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}
.home-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cream) 10%, var(--yellow) 55%, var(--cosmic-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.home-hero-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 1.75rem;
    line-height: 1.9;
}
.home-hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.home-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 420px;
}
.home-stat {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
}
.home-stat strong {
    display: block;
    color: var(--yellow);
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
}
.home-stat span {
    color: var(--text-muted);
    font-size: 0.82rem;
}
.home-hero-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.home-hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.home-hero-placeholder,
.showcase-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3d3555, #2a2540);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.5rem;
}
.showcase-image-placeholder { height: 360px; width: 100%; border-radius: 16px; }
.home-hero-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    background: rgba(10,10,15,0.82);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}
.home-hero-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.home-hero-badge strong {
    display: block;
    font-size: 0.9rem;
}
.home-hero-badge span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.home-notice {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(232, 197, 71, 0.06);
}
.home-notice-list {
    display: grid;
    gap: 0.75rem;
}
.home-notice-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.home-notice-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 0.15rem;
}
.home-notice-icon { font-size: 1.1rem; line-height: 1.4; }

.home-quick {
    padding: 3rem 0 1rem;
}
.home-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.home-quick-card {
    display: block;
    padding: 1.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    transition: all 0.35s ease;
}
.home-quick-card:hover {
    color: var(--text);
    border-color: rgba(232, 197, 71, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--glow-warm);
}
.home-quick-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0.75rem;
}
.home-quick-card h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}
.home-quick-card p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
    cursor: pointer;
    font-family: var(--font);
}

/* Location & Map */
.location-section {
    padding: 4rem 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.location-lead {
    color: var(--text-muted);
    max-width: 680px;
    margin-top: 0.5rem;
    line-height: 1.9;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
}
.location-info { display: grid; gap: 0.85rem; }
.location-card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
}
.location-card strong { display: block; margin-bottom: 0.2rem; }
.location-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; }
.location-card a { color: var(--yellow); }
.location-icon { font-size: 1.2rem; line-height: 1.5; }
.map-apps { margin-top: 0.5rem; }
.map-apps strong { display: block; margin-bottom: 0.65rem; font-size: 0.92rem; }
.map-apps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.map-app-btn {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s ease;
}
.map-app-btn:hover {
    color: var(--text);
    border-color: rgba(232, 197, 71,0.35);
    box-shadow: var(--glow-cyan);
}
.map-app-neshan:hover { border-color: rgba(255,80,0,0.4); }
.map-app-balad:hover { border-color: rgba(0,120,255,0.4); }
.map-app-google:hover { border-color: rgba(66,133,244,0.4); }
.location-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 320px;
    background: var(--bg-card);
}
.location-map {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}
.location-map-placeholder {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-muted);
}

.seo-content-section { padding-top: 2rem; }
.seo-content { max-width: 900px; }
.seo-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}
.seo-block {
    color: var(--text-muted);
    line-height: 2;
    font-size: 0.98rem;
}
.seo-block p { margin-bottom: 1rem; }
.seo-more { margin-top: 1.5rem; }

/* Showcase sections — images in descriptions with effects */
.showcase-section {
    padding: 4rem 0;
    overflow: hidden;
}
.showcase-section:nth-child(odd) { background: rgba(155, 126, 217, 0.04); }
.showcase-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
}
.showcase-reverse .showcase-grid { direction: ltr; }
.showcase-reverse .showcase-content { direction: rtl; }
.showcase-image-wrap {
    position: relative; border-radius: 16px; overflow: hidden;
}
.showcase-glow {
    position: absolute; inset: -20%;
    background: radial-gradient(circle, rgba(232, 197, 71,0.15), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
.showcase-image {
    width: 100%; height: 360px; object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    display: block;
}
.showcase-section.visible .showcase-image,
.showcase-image-wrap:hover .showcase-image {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(232, 197, 71,0.15), 0 0 40px rgba(255,215,0,0.08);
}
.showcase-content { padding: 1rem 0; }
.showcase-label {
    color: var(--yellow); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
}
.showcase-content h2 {
    font-size: 1.8rem; margin: 0.8rem 0;
    background: linear-gradient(90deg, var(--cream), var(--yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.showcase-content p {
    color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.9;
}

/* Image hover effect utility */
.img-effect {
    transition: transform 0.5s ease, filter 0.5s ease;
    overflow: hidden;
}
.img-effect:hover { transform: scale(1.05); filter: brightness(1.1); }
.card-image.img-effect { background-size: cover; background-position: center; }

/* Animations */
.animate-fade-up {
    animation: fadeUp 1s ease-out both;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

.animate-on-scroll {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1; transform: translateY(0);
}

/* Sections */
.section { padding: 5rem 0; }
.section-title {
    font-size: 2rem; font-weight: 700; margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--cream), var(--yellow), var(--cosmic-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem;
}
.link-arrow { color: var(--yellow); font-weight: 500; }

.page-header {
    padding: 4rem 0 2rem; text-align: center;
    background: linear-gradient(180deg, rgba(155, 126, 217, 0.1) 0%, rgba(232, 197, 71, 0.05) 50%, transparent 100%);
}
.page-title {
    font-size: 2.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--cream), var(--yellow), var(--cosmic-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-subtitle { color: var(--text-muted); margin-top: 0.5rem; font-size: 1.1rem; }

/* Features */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    transition: all 0.4s;
}
.feature-card:hover {
    border-color: rgba(232, 197, 71, 0.35);
    transform: translateY(-5px);
    box-shadow: var(--glow-warm);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Cards Grid */
.cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s; color: var(--text);
}
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 197, 71,0.3);
    box-shadow: var(--glow-cyan);
}
.card-image {
    height: 180px; background-size: cover; background-position: center;
}
.card-image-placeholder {
    background: linear-gradient(135deg, #3d3555, #2a2540);
}
.card-body { padding: 1.5rem; }
.card-badge {
    display: inline-block; padding: 0.2rem 0.8rem;
    background: rgba(232, 197, 71,0.1); color: var(--yellow);
    border-radius: 20px; font-size: 0.8rem; margin-bottom: 0.8rem;
}
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--text-muted); font-size: 0.9rem; }
.card-meta {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted);
}

/* Articles */
.articles-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.article-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s; color: var(--text);
    display: flex; flex-direction: column;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,215,0,0.2);
}
.article-image {
    height: 200px; background-size: cover; background-position: center;
}
.article-image-placeholder {
    background: linear-gradient(135deg, #3d3555 0%, #2a2540 100%);
}
.article-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-category {
    color: var(--yellow); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
}
.article-body h3 { margin: 0.5rem 0; font-size: 1.15rem; line-height: 1.5; }
.article-body p { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.article-date, .article-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }
.article-meta { display: flex; justify-content: space-between; }

/* Article Detail */
.article-hero { height: 400px; background-size: cover; background-position: center; position: relative; }
.article-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}
.article-detail-body { max-width: 800px; padding: 3rem 1.5rem; }
.article-detail-body h1 { font-size: 2.2rem; margin: 1rem 0; line-height: 1.4; }
.article-meta-bar {
    display: flex; gap: 2rem; color: var(--text-muted);
    margin-bottom: 2rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.article-content { line-height: 2; font-size: 1.05rem; margin-bottom: 2rem; }
.article-content p { margin-bottom: 1rem; }

/* Products */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s;
}
.product-card:hover {
    border-color: rgba(255,215,0,0.3);
    box-shadow: var(--glow-yellow);
}
.product-image { height: 180px; background-size: cover; background-position: center; }
.product-image-placeholder { background: linear-gradient(135deg, #3d3830, #2a2540); }
.product-body { padding: 1.2rem; }
.product-category { color: var(--cyan); font-size: 0.75rem; font-weight: 600; }
.product-body h3 { margin: 0.3rem 0; }
.product-body p { color: var(--text-muted); font-size: 0.85rem; margin: 0.5rem 0; }
.product-price { color: var(--yellow); font-weight: 700; font-size: 1.1rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }

/* Announcements */
.announcements-bar { padding: 1.5rem 0; }
.announcement-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.2rem; margin: 0.3rem;
    background: rgba(232, 197, 71,0.08); border: 1px solid rgba(232, 197, 71,0.2);
    border-radius: 30px; font-size: 0.9rem;
}
.announcement-chip.priority-high {
    background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.3);
}
.announcement-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem;
}
.announcement-card h3 { margin-bottom: 0.5rem; }
.ann-date { font-size: 0.8rem; color: var(--text-muted); }

/* CTA */
.cta-section { padding: 3rem 0 5rem; }
.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 197, 71, 0.2);
    background: linear-gradient(135deg, rgba(155, 126, 217, 0.12), rgba(232, 197, 71, 0.08));
    box-shadow: inset 0 1px 0 rgba(245, 230, 200, 0.08);
}
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0.5rem 0 0.75rem; }
.cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Forms */
.form-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block; margin-bottom: 0.4rem;
    font-weight: 500; color: var(--text-muted); font-size: 0.9rem;
}
.form-input, select.form-input, input.form-input, textarea.form-input {
    width: 100%; padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--text); font-family: var(--font); font-size: 0.95rem;
    transition: border-color 0.3s;
}
.form-input:focus {
    outline: none; border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(232, 197, 71,0.1);
}
.field-error { color: #ff6b6b; font-size: 0.8rem; margin-top: 0.3rem; display: block; }
.form-errors {
    background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.3);
    padding: 1rem; border-radius: 8px; margin-bottom: 1rem; color: #ff6b6b;
}

/* Reserve Layout */
.reserve-layout {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem;
}
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
}
.info-card h3 { margin-bottom: 1rem; font-size: 1rem; }
.hours-list { list-style: none; }
.hours-list li {
    display: flex; justify-content: space-between;
    padding: 0.4rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.hours-list li.closed { opacity: 0.5; }
.badge-closed { color: #ff6b6b; font-size: 0.8rem; }
.notice-card { border-color: rgba(255,215,0,0.3); background: rgba(255,215,0,0.05); }
.desk-list { list-style: none; }
.desk-list li {
    padding: 0.5rem 0; border-bottom: 1px solid var(--border);
    display: flex; flex-direction: column;
}
.desk-list li span { color: var(--text-muted); font-size: 0.85rem; }

/* Event Detail */
.event-hero { height: 350px; background-size: cover; background-position: center; position: relative; }
.event-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg), transparent);
}
.event-detail-layout {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem;
    padding: 3rem 1.5rem;
}
.event-info h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.event-meta-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
    margin-bottom: 2rem;
}
.meta-item {
    background: var(--bg-card); padding: 0.8rem 1rem;
    border-radius: 8px; font-size: 0.9rem;
}
.event-description { line-height: 2; color: var(--text-muted); }
.full-notice { text-align: center; padding: 3rem; }

/* Market */
.market-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chip {
    padding: 0.4rem 1rem; border-radius: 20px;
    border: 1px solid var(--border); color: var(--text-muted);
    font-size: 0.85rem; transition: all 0.3s;
}
.filter-chip.active, .filter-chip:hover {
    border-color: var(--cyan); color: var(--cyan);
    background: rgba(232, 197, 71,0.08);
}

/* Cart */
.cart-layout { max-width: 700px; margin: 0 auto; }
.cart-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 0.8rem;
}
.cart-subtotal { color: var(--yellow); font-weight: 700; }
.btn-remove {
    color: #ff6b6b; font-size: 1.2rem; margin-right: 1rem;
    cursor: pointer;
}
.cart-total {
    display: flex; justify-content: space-between;
    padding: 1.5rem 0; font-size: 1.2rem;
    border-top: 1px solid var(--border); margin: 1rem 0;
}
.checkout-layout { max-width: 600px; margin: 0 auto; }
.checkout-summary { margin: 1.5rem 0; padding-top: 1rem; border-top: 1px solid var(--border); }
.checkout-row {
    display: flex; justify-content: space-between;
    padding: 0.4rem 0; color: var(--text-muted); font-size: 0.9rem;
}
.checkout-total {
    display: flex; justify-content: space-between;
    padding-top: 1rem; margin-top: 0.5rem;
    border-top: 1px solid var(--border); font-size: 1.1rem;
}

/* Success */
.success-page { min-height: 60vh; display: flex; align-items: center; }
.success-card {
    text-align: center; max-width: 500px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 3rem;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.ticket-code { color: var(--yellow); font-family: monospace; letter-spacing: 2px; }

/* Messages */
.messages-container {
    position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
    z-index: 200; width: 90%; max-width: 500px;
}
.alert {
    padding: 1rem 1.5rem; border-radius: 8px; margin-bottom: 0.5rem;
    animation: fadeUp 0.5s ease;
}
.alert-success { background: rgba(232, 197, 71, 0.15); border: 1px solid var(--yellow); color: var(--yellow); }
.alert-error { background: rgba(255,107,107,0.15); border: 1px solid #ff6b6b; color: #ff6b6b; }
.alert-warning { background: rgba(255,215,0,0.15); border: 1px solid var(--yellow); color: var(--yellow); }

.empty-state { text-align: center; color: var(--text-muted); padding: 3rem; font-size: 1.1rem; }

.page-header.compact { padding: 2.5rem 0 1rem; }

/* Reserve page — clean layout */
.reserve-page { padding: 2rem 0 4rem; }
.reserve-shell { max-width: 520px; margin: 0 auto; }
.reserve-head { text-align: center; margin-bottom: 1.5rem; }
.reserve-head h1 {
    font-size: 1.75rem; font-weight: 800; margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--cyan), var(--yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reserve-head p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.reserve-head strong { color: var(--cyan); }
.reserve-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem;
}
.reserve-block { margin-bottom: 1.25rem; }
.block-label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text-muted); margin-bottom: 0.6rem;
}
.date-inline {
    display: flex; align-items: center; gap: 0.6rem; margin-top: 0.75rem;
}
.date-inline span { color: var(--text-muted); font-size: 0.85rem; flex-shrink: 0; }
.date-inline .form-input { flex: 1; padding: 0.65rem 0.8rem; font-size: 0.9rem; }

.jalali-date-picker {
    position: relative;
    flex: 1;
    min-width: 0;
}
.jalali-date-display {
    width: 100%;
    text-align: right;
    cursor: pointer;
    color: var(--text);
    background: rgba(255,255,255,0.04);
}
.jalali-date-display::after {
    content: '📅';
    margin-right: 0.5rem;
    opacity: 0.7;
}
.jalali-calendar {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    left: 0;
    z-index: 40;
    padding: 0.85rem;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.jalali-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.jalali-cal-head strong {
    color: var(--cyan);
    font-size: 0.92rem;
}
.jalali-cal-head button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    cursor: pointer;
}
.jalali-cal-weekdays,
.jalali-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}
.jalali-cal-weekdays {
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-align: center;
}
.jalali-cal-day,
.jalali-cal-empty {
    aspect-ratio: 1;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    font-size: 0.82rem;
    cursor: pointer;
}
.jalali-cal-day:hover { background: rgba(0,245,255,0.12); }
.jalali-cal-day.is-selected {
    background: rgba(255,215,0,0.18);
    color: var(--yellow);
    font-weight: 700;
}
.jalali-cal-day.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.date-summary {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid rgba(0, 245, 255, 0.15);
    color: var(--cyan);
    font-size: 0.92rem;
    line-height: 1.7;
    text-align: center;
}

.terms-block { margin-top: 0.5rem; }
.terms-box {
    max-height: 180px;
    overflow: auto;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.9;
    margin-bottom: 0.85rem;
}
.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}
.terms-check input {
    margin-top: 0.25rem;
    accent-color: var(--cyan);
    flex-shrink: 0;
}
.field-error {
    color: #ff8a8a;
    font-size: 0.82rem;
    margin-top: 0.5rem;
}

.desk-grid-compact { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
.reserve-checkout {
    background: rgba(232, 197, 71,0.05); border: 1px solid rgba(232, 197, 71,0.15);
    border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1rem;
}
.checkout-line { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.checkout-discount { font-size: 0.85rem; color: var(--yellow); margin-bottom: 0.5rem; }
.checkout-total {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 0.6rem; border-top: 1px dashed var(--border);
}
.checkout-total strong { color: var(--yellow); font-size: 1.25rem; }
.checkout-hint { font-size: 0.8rem; color: var(--cyan); margin-top: 0.5rem; }
.checkout-error { font-size: 0.85rem; color: #ff6b6b; margin-top: 0.5rem; }
.reserve-details {
    margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted);
}
.reserve-details summary {
    cursor: pointer; padding: 0.5rem 0; color: var(--text-muted);
    list-style: none;
}
.reserve-details summary::-webkit-details-marker { display: none; }
.reserve-details[open] summary { color: var(--cyan); margin-bottom: 0.5rem; }
#submitBtn { margin-top: 0.25rem; }
#submitBtn:disabled { opacity: 0.45; cursor: not-allowed; }

.reserve-easy-wrap { max-width: 640px; margin: 0 auto; }
.hours-banner, .notice-banner {
    padding: 0.8rem 1.2rem; border-radius: 10px;
    margin-bottom: 1.5rem; text-align: center; font-size: 0.95rem;
}
.hours-banner {
    background: rgba(232, 197, 71,0.08); border: 1px solid rgba(232, 197, 71,0.2);
}
.notice-banner {
    background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.25);
}
.reserve-step {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    margin-bottom: 1.2rem;
}
.step-header {
    display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem;
}
.step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--yellow));
    color: #0a0a0f; font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
}
.step-header h3 { font-size: 1.05rem; }
.date-big { font-size: 1.1rem; text-align: center; padding: 1rem; }
.date-range-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.price-preview {
    margin-top: 1rem; padding: 1rem 1.2rem;
    background: rgba(232, 197, 71,0.06); border: 1px solid rgba(232, 197, 71,0.2);
    border-radius: 10px;
}
.price-preview-inner {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.price-preview-inner strong { color: var(--yellow); font-size: 1.2rem; }
#previewDiscount {
    color: var(--cyan); font-size: 0.9rem;
    background: rgba(232, 197, 71,0.1); padding: 0.2rem 0.6rem; border-radius: 20px;
}
.price-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }
.price-note.error { color: #ff6b6b; }
.compact-hours { font-size: 0.85rem; }
.discount-info { border-color: rgba(255,215,0,0.2); }
.discount-tiers { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.discount-chip {
    padding: 0.4rem 0.9rem; border-radius: 20px; font-size: 0.85rem;
    background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.25);
    color: var(--yellow);
}

/* Tomorrow banner & pricing */
.tomorrow-banner {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    padding: 1rem 1.2rem; margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 197, 71,0.1), rgba(255,215,0,0.08));
    border: 1px solid rgba(232, 197, 71,0.25); border-radius: var(--radius);
}
.tomorrow-banner strong { display: block; color: var(--cyan); }
.tomorrow-banner span { font-size: 0.9rem; color: var(--text-muted); }
.tomorrow-icon { font-size: 1.8rem; }
.tomorrow-banner .btn { margin-right: auto; }

.duration-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.duration-chip {
    padding: 0.5rem 1rem; border-radius: 20px; cursor: pointer;
    border: 1px solid var(--border); background: rgba(255,255,255,0.03);
    color: var(--text-muted); font-family: var(--font); font-size: 0.9rem;
    transition: all 0.3s;
}
.duration-chip.active, .duration-chip:hover {
    border-color: var(--cyan); color: var(--cyan);
    background: rgba(232, 197, 71,0.1); box-shadow: var(--glow-cyan);
}

.price-box {
    margin-top: 1rem; padding: 1.2rem;
    background: var(--bg-card); border: 1px solid rgba(232, 197, 71,0.2);
    border-radius: var(--radius);
}
.price-box-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem; padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}
.price-box-header span:first-child { font-weight: 700; font-size: 1.1rem; }
.discount-badge {
    padding: 0.25rem 0.7rem; border-radius: 20px; font-size: 0.8rem;
    background: rgba(255,215,0,0.15); color: var(--yellow);
}
.price-breakdown { margin-bottom: 0.8rem; }
.price-line {
    display: flex; justify-content: space-between;
    padding: 0.35rem 0; font-size: 0.9rem; color: var(--text-muted);
}
.price-line.discount-line span:last-child { color: var(--yellow); }
.price-total-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0 0.5rem; border-top: 1px dashed var(--border);
}
.price-total-row strong { color: var(--yellow); font-size: 1.3rem; }
.price-hint {
    color: var(--cyan); font-size: 0.85rem; margin-top: 0.5rem;
    padding: 0.5rem; background: rgba(232, 197, 71,0.05); border-radius: 8px;
}
.discount-table { display: flex; flex-direction: column; gap: 0.4rem; }
.discount-row {
    display: flex; justify-content: space-between;
    padding: 0.5rem 0.8rem; border-radius: 8px;
    border: 1px solid var(--border); font-size: 0.85rem;
    opacity: 0.5; transition: all 0.3s;
}
.discount-row.active {
    opacity: 1; border-color: rgba(255,215,0,0.4);
    background: rgba(255,215,0,0.08); color: var(--yellow);
}
.pay-summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.2rem; margin-bottom: 1rem;
    background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.2);
    border-radius: var(--radius);
}
.pay-summary strong { color: var(--yellow); font-size: 1.2rem; }
.reserve-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.desk-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.8rem;
}
.desk-card input { display: none; }
.desk-card-inner {
    padding: 1rem; border: 2px solid var(--border); border-radius: 10px;
    text-align: center; cursor: pointer; transition: all 0.3s;
}
.desk-card input:checked + .desk-card-inner {
    border-color: var(--cyan); background: rgba(232, 197, 71,0.08);
    box-shadow: var(--glow-cyan);
}
.desk-card:hover .desk-card-inner { border-color: rgba(232, 197, 71,0.4); }
.desk-name { display: block; font-weight: 700; font-size: 1rem; }
.desk-zone { display: block; color: var(--text-muted); font-size: 0.8rem; margin-top: 0.2rem; }
.slot-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.slot-chip input { display: none; }
.slot-chip span {
    display: inline-block; padding: 0.6rem 1.2rem;
    border: 1px solid var(--border); border-radius: 30px;
    cursor: pointer; transition: all 0.3s; font-size: 0.9rem;
}
.slot-chip input:checked + span {
    background: var(--cyan); color: #0a0a0f; border-color: var(--cyan);
    font-weight: 600; box-shadow: var(--glow-cyan);
}
.slot-chip:hover span { border-color: var(--cyan); }
.empty-slots { color: var(--text-muted); font-size: 0.9rem; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-row .form-group { margin: 0; }
.reserve-submit { margin-top: 0.5rem; }

/* Shop — unified purchase */
.shop-section { padding-top: 0; }
.shop-layout {
    display: grid; grid-template-columns: 1fr 340px;
    gap: 2rem; align-items: start;
}
.shop-products {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}
.shop-product-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s;
}
.shop-product-card:hover {
    border-color: rgba(255,215,0,0.3); box-shadow: var(--glow-yellow);
    transform: translateY(-3px);
}
.shop-product-image {
    height: 160px; overflow: hidden; position: relative;
}
.shop-product-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.shop-product-card:hover .shop-product-image img { transform: scale(1.08); }
.shop-product-info { padding: 1rem; }
.shop-product-info h3 { font-size: 1rem; margin: 0.3rem 0; }
.shop-product-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.8rem; }
.shop-product-bottom {
    display: flex; justify-content: space-between; align-items: center;
}
.shop-product-bottom .product-price { font-size: 1rem; }
.shop-product-bottom .product-price small { font-size: 0.75rem; color: var(--text-muted); }
.add-btn { min-width: 90px; }
.add-form { margin: 0; }

.shop-cart { position: sticky; top: 90px; }
.shop-cart-inner {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
}
.shop-cart-inner h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.cart-items-list { max-height: 280px; overflow-y: auto; margin-bottom: 1rem; }
.cart-row {
    display: grid; grid-template-columns: 1fr auto auto;
    gap: 0.5rem; align-items: center;
    padding: 0.8rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.cart-row-info { display: flex; flex-direction: column; }
.cart-row-info span { color: var(--text-muted); font-size: 0.8rem; }
.cart-row-controls { display: flex; align-items: center; gap: 0.3rem; }
.qty-form { margin: 0; }
.qty-btn {
    width: 28px; height: 28px; border-radius: 6px;
    border: 1px solid var(--border); background: rgba(255,255,255,0.05);
    color: var(--text); cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.qty-num { min-width: 24px; text-align: center; font-weight: 600; }
.cart-row-total { color: var(--yellow); font-weight: 700; font-size: 0.85rem; }
.cart-summary { padding: 1rem 0; border-top: 1px solid var(--border); }
.cart-summary-row {
    display: flex; justify-content: space-between; font-size: 1.1rem;
}
.cart-empty { text-align: center; padding: 2rem 0; color: var(--text-muted); }
.cart-empty span { font-size: 0.85rem; display: block; margin-top: 0.3rem; }
.quick-checkout { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.mobile-cart-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(10,10,15,0.95); backdrop-filter: blur(10px);
    border-top: 1px solid var(--border); padding: 0.8rem 1.5rem;
    justify-content: space-between; align-items: center; z-index: 99;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem; margin-top: 3rem;
    background: rgba(20, 16, 31, 0.65);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    text-align: right;
    margin-bottom: 2rem;
}
.footer-grid.footer-inner:has(.footer-trust) {
    grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
}
.footer-brand { margin-bottom: 0; }
.footer-logo { width: 50px; height: 50px; margin-bottom: 0.5rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-about { margin-top: 0.75rem; font-size: 0.85rem; line-height: 1.8; }
.footer-col h4 {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: flex-start;
}
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-contact {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-contact .contact-icon {
    flex-shrink: 0;
    line-height: 1;
}
.footer-contact a { color: var(--yellow); }
.phone-number {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
    text-align: left;
}
.location-card .phone-number {
    color: var(--yellow);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 42px;
    min-height: 42px;
    padding: 0.35rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.social-link:hover {
    border-color: rgba(255, 215, 0, 0.45);
    background: rgba(255, 215, 0, 0.08);
    color: var(--yellow);
    transform: translateY(-2px);
}
.social-link-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}
.social-link-fallback {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}
.social-link-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.social-links-footer { margin-top: 0.85rem; }
.social-links-cards {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem 1.5rem 0;
    border-top: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badges {
    display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center;
    gap: 0.75rem;
}
.footer-trust .trust-badges {
    border: 0;
    margin: 0;
    padding: 0;
}
.trust-badge-item img { max-height: 80px; width: auto; }
.trust-badge-item a { display: inline-block; }

/* Auth & Panel */
.auth-section { min-height: 60vh; display: flex; align-items: center; }
.auth-card {
    max-width: 420px; margin: 0 auto; padding: 2.5rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); text-align: center;
}
.auth-card .page-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
.auth-form { margin-top: 1.5rem; text-align: right; }
.otp-input { text-align: center; font-size: 1.5rem; letter-spacing: 8px; }
.dev-otp {
    margin: 1rem 0; padding: 0.8rem; border-radius: 8px;
    background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.3);
    color: var(--yellow); font-size: 0.9rem;
}
.auth-link { display: block; margin-top: 1rem; font-size: 0.9rem; }
.panel-layout { max-width: 700px; margin: 0 auto; }
.panel-actions { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.panel-section { margin-bottom: 2rem; }
.panel-section .section-title { font-size: 1.3rem; margin-bottom: 1rem; }
.panel-hint, .field-hint {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.45rem;
    line-height: 1.6;
}
.profile-name-form { max-width: 360px; }
.profile-name-form .form-group { margin-bottom: 0.75rem; }
.ticket-card {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    padding: 1.2rem; margin-bottom: 0.8rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); transition: border-color 0.3s;
}
.ticket-card:hover { border-color: rgba(232, 197, 71,0.3); }
.ticket-card-info { display: flex; flex-direction: column; gap: 0.2rem; }
.ticket-card-info strong { color: var(--cyan); font-family: monospace; }
.ticket-card-info span { color: var(--text-muted); font-size: 0.85rem; }
.ticket-price { color: var(--yellow) !important; font-weight: 600; }
.ticket-card-actions { display: flex; gap: 0.5rem; }
.pending-card { border-color: rgba(255,215,0,0.2); }
.badge-pending {
    padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem;
    background: rgba(255,215,0,0.1); color: var(--yellow);
}

/* Responsive — Mobile-first compact layout */
@media (max-width: 768px) {
    .container { padding: 0 0.75rem; }

    .navbar {
        padding: 0.5rem 0.75rem;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    .nav-toggle { display: inline-block; padding: 0.35rem 0.5rem; font-size: 0.9rem; }
    .nav-brand { font-size: 0.95rem; gap: 0.5rem; min-width: 0; }
    .nav-brand span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 42vw;
    }
    .nav-logo { width: 32px; height: 32px; flex-shrink: 0; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        padding: 0.5rem 0 0.15rem;
        border-top: 1px solid var(--border);
        margin-top: 0.35rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 0.82rem; }
    .nav-cta { display: none; }
    main { padding-top: 52px; }

    /* Hero — text + image side by side, no scroll needed */
    .home-hero {
        padding: 0.6rem 0 0.85rem;
    }
    .home-hero-grid {
        grid-template-columns: 1fr min(36vw, 128px);
        gap: 0.6rem;
        align-items: stretch;
    }
    .home-hero-content { min-width: 0; }
    .home-eyebrow {
        font-size: 0.68rem;
        margin-bottom: 0.25rem;
        letter-spacing: 0;
    }
    .home-hero-title {
        font-size: 1.15rem;
        line-height: 1.3;
        margin-bottom: 0.35rem;
    }
    .home-hero-lead {
        font-size: 0.72rem;
        line-height: 1.55;
        margin-bottom: 0.55rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .home-hero-actions {
        gap: 0.35rem;
        margin-bottom: 0.55rem;
        flex-wrap: nowrap;
    }
    .home-hero-actions .btn {
        padding: 0.38rem 0.55rem;
        font-size: 0.72rem;
        flex: 1;
        min-width: 0;
    }
    .home-hero-actions .btn-lg { padding: 0.38rem 0.55rem; font-size: 0.72rem; }
    .home-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.3rem;
        max-width: none;
    }
    .home-stat {
        padding: 0.35rem 0.4rem;
        border-radius: 8px;
        text-align: center;
    }
    .home-stat strong { font-size: 0.78rem; margin-bottom: 0; }
    .home-stat span { font-size: 0.62rem; line-height: 1.2; }
    .home-hero-visual { min-width: 0; }
    .home-hero-frame {
        height: 100%;
        min-height: 148px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }
    .home-hero-image,
    .home-hero-placeholder {
        height: 100%;
        min-height: 148px;
        max-height: 170px;
    }
    .home-hero-placeholder { font-size: 0.85rem; }
    .home-hero-badge { display: none; }

    /* Quick links — 4 in a row, compact */
    .home-quick { padding: 0.85rem 0 0.5rem; }
    .home-quick-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.4rem;
    }
    .home-quick-card {
        padding: 0.55rem 0.35rem;
        text-align: center;
        border-radius: 10px;
    }
    .home-quick-icon { font-size: 1.1rem; margin-bottom: 0.2rem; }
    .home-quick-card h3 { font-size: 0.68rem; margin-bottom: 0; line-height: 1.35; }
    .home-quick-card p { display: none; }

    /* Showcase — image on the side (left), text on the right */
    .showcase-section { padding: 1rem 0; }
    .showcase-grid {
        grid-template-columns: 1fr min(34vw, 120px);
        gap: 0.6rem;
        align-items: center;
        direction: rtl;
    }
    .showcase-image-wrap { order: 2; }
    .showcase-content { order: 1; min-width: 0; }
    .showcase-reverse .showcase-grid {
        grid-template-columns: 1fr min(34vw, 120px);
        direction: rtl;
    }
    .showcase-reverse .showcase-image-wrap { order: 2; }
    .showcase-reverse .showcase-content { order: 1; }
    .showcase-image-wrap { border-radius: 10px; }
    .showcase-glow { display: none; }
    .showcase-image {
        height: 108px;
        border-radius: 10px;
    }
    .showcase-content { padding: 0; }
    .showcase-label { font-size: 0.62rem; letter-spacing: 0; margin-bottom: 0.15rem; }
    .showcase-content h2 { font-size: 0.88rem; margin: 0.15rem 0; line-height: 1.35; }
    .showcase-content p {
        font-size: 0.68rem;
        line-height: 1.45;
        margin-bottom: 0.45rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .showcase-content .btn-sm {
        padding: 0.28rem 0.55rem;
        font-size: 0.68rem;
    }

    /* Sections — tighter */
    .section { padding: 1.25rem 0; }
    .section-title { font-size: 1.15rem; margin-bottom: 0.85rem; }
    .home-section-head .section-title { font-size: 1.1rem; }
    .location-lead { font-size: 0.78rem; line-height: 1.6; }
    .location-section { padding: 1.25rem 0; }
    .location-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 0.85rem;
    }
    .location-card { padding: 0.65rem 0.75rem; gap: 0.5rem; }
    .location-card p { font-size: 0.78rem; }
    .location-map { height: 180px; }
    .map-apps-grid { gap: 0.35rem; }
    .map-app-btn { padding: 0.3rem 0.55rem; font-size: 0.72rem; }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }
    .feature-card { padding: 0.85rem; }
    .feature-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
    .feature-card h3 { font-size: 0.82rem; }
    .feature-card p { font-size: 0.72rem; line-height: 1.5; }

    .cards-grid,
    .articles-grid,
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }
    .card-image { height: 82px; }
    .article-image { height: 82px; }
    .product-image { height: 82px; }
    .card-body,
    .article-body,
    .product-body { padding: 0.65rem; }
    .card-body h3,
    .article-body h3,
    .product-body h3 { font-size: 0.82rem; }
    .card-body p,
    .article-body p { font-size: 0.72rem; }
    .card-meta { font-size: 0.68rem; gap: 0.35rem; margin-top: 0.45rem; }
    .card-badge { font-size: 0.65rem; padding: 0.12rem 0.45rem; }

    .home-notice { padding: 0.55rem 0; }
    .home-notice-item { padding: 0.55rem 0.65rem; }
    .home-notice-item p { font-size: 0.72rem; }

    .cta-section { padding: 1rem 0 1.5rem; }
    .cta-box { padding: 1.25rem 0.85rem; border-radius: 14px; }
    .cta-box h2 { font-size: 1rem; }
    .cta-box p { font-size: 0.78rem; margin-bottom: 0.85rem; }
    .cta-box .btn-lg { padding: 0.55rem 1rem; font-size: 0.82rem; }

    .page-header { padding: 1.25rem 0 0.75rem; }
    .page-title { font-size: 1.35rem; }
    .page-subtitle { font-size: 0.82rem; }

    .footer { padding: 1.5rem 0 1rem; margin-top: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-trust { grid-column: 1 / -1; }

    .hero-cta { flex-direction: row; flex-wrap: wrap; }
    .contact-row { grid-template-columns: 1fr; }
    .date-range-row { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-cart { position: static; order: -1; }
    .mobile-cart-bar { display: flex; }
    body { padding-bottom: 56px; }
    .reserve-layout, .event-detail-layout { grid-template-columns: 1fr; }
    .event-meta-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .section-header { flex-direction: row; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
    .section-header .link-arrow { font-size: 0.78rem; }

    .orbit-ring.ring-1 { width: 280px; height: 280px; top: -80px; right: -80px; }
    .orbit-ring.ring-2 { width: 200px; height: 200px; }
    .orbit-ring.ring-3 { display: none; }
}

@media (max-width: 380px) {
    .home-hero-grid {
        grid-template-columns: 1fr min(32vw, 108px);
    }
    .home-hero-title { font-size: 1.05rem; }
    .home-hero-lead { -webkit-line-clamp: 1; }
    .home-hero-actions .btn { font-size: 0.68rem; padding: 0.32rem 0.4rem; }
    .home-quick-card h3 { font-size: 0.62rem; }
    .showcase-grid,
    .showcase-reverse .showcase-grid {
        grid-template-columns: 1fr min(30vw, 100px);
    }
    .showcase-image { height: 96px; }
}

@media print {
    .navbar, .footer, .ticket-actions, .stars-bg, .orbit-ring { display: none !important; }
    body { background: white; color: black; }
    .ticket { box-shadow: none; border: 2px solid #333; }
}
