:root {
    --bg-dark: #08080c;
    --card-bg: rgba(255, 255, 255, 0.015);
    --card-border: rgba(255, 255, 255, 0.04);
    --gold-primary: #cda472;
    --gold-light: #e6c59b;
    --gold-dark: #8c663b;
    --gold-glow: 0 0 20px rgba(205, 164, 114, 0.35);
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-splash: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
::-webkit-scrollbar-thumb {
    background: rgba(205, 164, 114, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Lüks Altın-Gold Auralı Arka Plan Küreleri */
.aurora-gold-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: #060608;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
    opacity: 0.25;
    animation: orbMove 30s infinite alternate ease-in-out;
}

.orb-1 {
    top: -15%;
    left: -10%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
    animation-duration: 25s;
}

.orb-2 {
    bottom: -15%;
    right: -10%;
    width: 75vw;
    height: 75vw;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    animation-duration: 35s;
    animation-delay: -5s;
}

.orb-3 {
    top: 30%;
    left: 30%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(140, 102, 59, 0.4) 0%, transparent 70%);
    animation-duration: 28s;
    animation-delay: -12s;
}

@keyframes orbMove {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(5vw, 10vh) scale(1.1) rotate(180deg); }
    100% { transform: translate(-3vw, -5vh) scale(0.9) rotate(360deg); }
}

/* 1. GİRİŞ EKRANI (SPLASH SCREEN) STİLLERİ */
.splash-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 40%, #161512 0%, #060608 100%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 60px;
    transition: var(--transition-splash);
}

.splash-container.fade-out {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.splash-meta {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: flex-end;
}

.splash-content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    margin: auto 0;
}

/* Vektörel Privado Logo Stilleri */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.large-logo {
    max-width: 480px;
    padding: 10px;
}

.small-logo {
    max-width: 320px;
    margin: 0 auto;
}

.privado-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(205, 164, 114, 0.25));
}

.privado-logo text {
    fill: #ffffff;
}

.privado-logo line {
    stroke: var(--gold-primary);
}

.privado-logo polygon {
    fill: var(--gold-primary);
}

/* Welcome Box & Table Badge */
.welcome-box {
    text-align: center;
    width: 100%;
    padding: 24px;
}

.welcome-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
    text-shadow: var(--gold-glow);
}

.welcome-box h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #ffffff;
}

.splash-table-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(205, 164, 114, 0.08);
    border: 1px solid rgba(205, 164, 114, 0.25);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(205, 164, 114, 0.05);
}

/* Gold CTA Button on Entrance */
.gold-cta-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: none;
    outline: none;
    color: #08080c;
    padding: 18px 44px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 1.5px;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--gold-glow), 0 10px 25px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.gold-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.5s;
}

.gold-cta-btn:hover::before {
    left: 100%;
}

.gold-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(205, 164, 114, 0.6);
}

/* Frosted Glass Panels */
.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(205, 164, 114, 0.15);
}

/* 2. ANA MENÜ EKRANI STİLLERİ */
.menu-view-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.menu-view-container.hidden {
    display: none;
    opacity: 0;
}

/* Top Bar */
.menu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.table-tag {
    background: rgba(205, 164, 114, 0.08);
    border: 1px solid rgba(205, 164, 114, 0.2);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(205, 164, 114, 0.08);
}

.lang-switch-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.lang-switch-btn:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    color: var(--gold-primary);
}

/* ── 4-Dil Pill Grubu (TR · EN · AR · DE) ─────────────────── */
.lang-pill-group {
    display: flex;
    gap: 4px;
    align-items: center;
}

.lang-pill {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 5px 9px;
    font-size: 1.15rem;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.22s ease;
    line-height: 1;
}

.lang-pill:hover { opacity: 0.82; }

.lang-pill.active {
    opacity: 1;
    background: rgba(205, 164, 114, 0.14);
    border-color: rgba(205, 164, 114, 0.4);
    box-shadow: 0 0 10px rgba(205, 164, 114, 0.15);
}

/* ── Tükendi Etiketi ─────────────────────────────────────── */
.sold-out-tag {
    font-size: 0.72rem;
    color: #ff4d4d;
    font-weight: 700;
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 4px 9px;
    border-radius: 15px;
    text-transform: uppercase;
    background: rgba(255, 77, 77, 0.06);
    letter-spacing: 0.5px;
}

/* ── RTL Desteği (Arapça) ────────────────────────────────── */
[dir="rtl"] .menu-navbar-inner { flex-direction: row-reverse; }
[dir="rtl"] .sidebar-nav-menu  { flex-direction: row-reverse; }
[dir="rtl"] .price-row         { flex-direction: row-reverse; }
[dir="rtl"] .rec-price-row     { flex-direction: row-reverse; }
[dir="rtl"] .cart-item         { flex-direction: row-reverse; }
[dir="rtl"] .cart-item-controls{ flex-direction: row-reverse; }


/* Menu Header styling */
.menu-header {
    text-align: center;
    padding: 30px 20px 15px;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.8;
}

/* Search Box style */
.search-section {
    padding: 10px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 2px 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.search-wrapper:focus-within {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.search-icon {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-right: 12px;
}

.search-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    width: 100%;
    padding: 12px 0;
    font-size: 0.95rem;
}

.clear-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}

.clear-btn:hover {
    color: var(--gold-primary);
}

/* Recommended Carousel Slider */
.recommended-section {
    padding: 20px 0 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: var(--gold-primary);
    text-shadow: var(--gold-glow);
}

.recommended-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    padding-right: 20px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.recommended-scroller::-webkit-scrollbar {
    display: none;
}

/* Rec Card */
.rec-card {
    flex: 0 0 270px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.rec-card:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 164, 114, 0.25);
    box-shadow: 0 10px 25px rgba(205, 164, 114, 0.05);
}

.rec-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.rec-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.rec-card:hover .rec-img-wrap img {
    transform: scale(1.05);
}

.rec-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(205, 164, 114, 0.15);
    border: 1px solid rgba(205, 164, 114, 0.3);
    color: var(--gold-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rec-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rec-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.rec-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.rec-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.rec-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Category Navigation (Sticky) */
.categories-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 12, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    scrollbar-width: none;
}

.categories-nav::-webkit-scrollbar {
    display: none;
}

.category-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-color);
    padding: 10px 22px;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.category-btn.active, .category-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-color: transparent;
    color: #08080c;
    font-weight: 700;
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

/* Menu Grid */
.menu-container {
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu Card */
.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(205, 164, 114, 0.05);
    border-color: rgba(205, 164, 114, 0.2);
}

.image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .product-img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(8, 8, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-details h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-details h3 {
    color: var(--gold-primary);
}

.menu-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.add-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--gold-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.add-btn:hover {
    background: var(--gold-primary);
    color: #08080c;
    box-shadow: var(--gold-glow);
}

/* Detail Modal Styles (Slide Up bottom drawer) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(12, 12, 16, 0.98);
    border: 1px solid var(--card-border);
    border-bottom: none;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 -15px 40px rgba(205, 164, 114, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    background: var(--text-color);
    color: #000;
}

.modal-hero {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.modal-badge-item {
    background: rgba(205, 164, 114, 0.15);
    border: 1px solid rgba(205, 164, 114, 0.3);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.modal-body {
    padding: 24px;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--gold-primary);
}

.modal-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.allergens-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-bottom: 30px;
}

.allergens-section h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.allergens-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.allergen-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
}

.modal-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-box span:first-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.modal-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.add-to-cart-btn-large {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #08080c;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: var(--gold-glow);
}

.add-to-cart-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(205, 164, 114, 0.5);
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 14, 0.9);
    border: 1px solid var(--gold-primary);
    box-shadow: var(--gold-glow), 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--text-color);
    padding: 12px 28px;
    border-radius: 40px;
    z-index: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    animation: pulseGlow 4s infinite;
}

.floating-cart-btn:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(205, 164, 114, 0.5);
}

.cart-icon-wrapper {
    position: relative;
}

.cart-icon-wrapper i {
    font-size: 1.15rem;
    color: var(--gold-primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--gold-dark);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(140, 102, 59, 0.4);
}

#floating-cart-total {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Cart Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: flex-end;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-content {
    background: rgba(12, 12, 16, 0.98);
    border-left: 1px solid var(--card-border);
    width: 100%;
    max-width: 440px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -15px 0 40px rgba(205, 164, 114, 0.05);
}

.drawer-overlay.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-header h3 i {
    color: var(--gold-primary);
}

.close-drawer-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-drawer-btn:hover {
    color: var(--gold-primary);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.empty-cart-view {
    text-align: center;
    padding: 40px 20px;
    margin: auto;
}

.empty-cart-view i {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.2;
    margin-bottom: 15px;
}

.empty-cart-view p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart-item-img {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cart-item-info .item-price {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 4px 10px;
    border-radius: 20px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    color: var(--gold-primary);
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 14px;
    text-align: center;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(8, 8, 12, 0.95);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-summary-row span:first-child {
    font-size: 1rem;
    color: var(--text-muted);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #08080c;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: var(--gold-glow);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(205, 164, 114, 0.5);
}

.checkout-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer Section */
.footer-info-section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.text-gold {
    color: var(--gold-primary);
}

/* WiFi Card */
.wifi-card .wifi-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wifi-text-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wifi-text-info p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.cred-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    padding: 3px 10px;
    border-radius: 6px;
    color: var(--text-color);
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 600;
}

.wifi-desc {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.wifi-qr-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 10px;
    border-radius: var(--border-radius-md);
}

#wifi-qr-container img {
    display: block;
    width: 100px;
    height: 100px;
}

/* Social Card */
.social-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links-row {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold-primary);
    color: #08080c;
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.survey-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(205, 164, 114, 0.06), rgba(140, 102, 59, 0.06));
    border: 1px solid rgba(205, 164, 114, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.survey-banner:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

.survey-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.survey-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.survey-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.survey-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.survey-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.survey-banner:hover .survey-arrow {
    transform: translateX(4px);
    color: var(--gold-primary);
}

/* Service Hours */
.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.hours-row span:first-child {
    color: var(--text-muted);
}

.hours-val {
    font-weight: 600;
}

.address-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.address-box h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.address-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.directions-btn:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    background: rgba(205, 164, 114, 0.04);
}

.phone-box {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    color: var(--gold-primary);
}

/* Disclaimer Footer */
.bottom-disclaimer {
    text-align: center;
    padding: 30px 20px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.6;
}

/* Order Success Screen */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 5, 0.96);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-card {
    background: rgba(12, 12, 16, 0.7);
    border: 1px solid rgba(205, 164, 114, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    max-width: 420px;
    backdrop-filter: blur(20px);
    box-shadow: var(--gold-glow);
    animation: zoomIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bell-animation {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.bell-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    animation: bellSwing 1s ease-in-out infinite alternate;
}

.sound-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: soundRipple 1.2s linear infinite;
}

.success-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.success-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Administrative Table testing console */
.admin-panel-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 800;
    background: rgba(12, 12, 16, 0.9);
    border-top: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.admin-toggle-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.admin-toggle-btn:hover {
    color: var(--gold-primary);
}

.admin-panel-content {
    width: 100%;
    max-width: 600px;
    padding: 0 20px 20px;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.admin-panel-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.admin-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
}

.input-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 20px;
    width: 70px;
    text-align: center;
    outline: none;
    font-weight: 600;
}

.input-group input:focus {
    border-color: var(--gold-primary);
}

.qr-display-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    padding: 15px;
    border-radius: var(--border-radius-md);
    margin-top: 10px;
}

#qrcode-img-container img {
    border: 6px solid #ffffff;
    border-radius: 8px;
}

.test-link {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
}

.test-link:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes spinGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(205, 164, 114, 0.35); }
    50% { box-shadow: 0 0 25px rgba(205, 164, 114, 0.6); }
}

@keyframes bellSwing {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}

@keyframes soundRipple {
    0% { width: 40px; height: 40px; opacity: 0.8; }
    100% { width: 90px; height: 90px; opacity: 0; }
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Desktop customization rules */
@media (min-width: 769px) {
    .modal-overlay {
        align-items: center;
    }
    
    .modal-content {
        border-radius: var(--border-radius-lg);
        max-height: 85vh;
    }
    
    .footer-info-section {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 1000px;
    }
    
    .wifi-card, .social-card, .contact-card {
        flex: 1 1 calc(50% - 20px);
    }
    
    .contact-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .large-logo {
        max-width: 320px;
    }
    
    .small-logo {
        max-width: 240px;
    }
    
    .wifi-content {
        flex-direction: column;
        text-align: center;
    }
    
    .wifi-qr-box {
        margin-top: 10px;
    }
    
    .menu-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }
    
    .floating-cart-btn {
        width: calc(100% - 40px);
        justify-content: space-between;
        bottom: 70px;
    }
}

/* =================================================================
   ALAN REKLAM - DUAL VIEW PRESENTATION WRAPPER STYLES
   ================================================================= */

/* Container wrappers */
.mobile-app-container {
    display: none;
    width: 100%;
}

.demo-stage-wrapper {
    display: none;
    position: relative;
    min-height: 100vh;
    background-color: #070709;
    background-image: radial-gradient(circle at 50% -20%, rgba(201, 168, 108, 0.15), transparent 70%);
    overflow-y: auto;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

/* Toggle visibility: Mobile/Iframe vs Desktop Sunum */
@media screen and (max-width: 768px) {
    .mobile-app-container {
        display: block !important;
    }
    .demo-stage-wrapper {
        display: none !important;
    }
}

@media screen and (min-width: 769px) {
    body:not(.view-mobile) .demo-stage-wrapper {
        display: block !important;
    }
    body:not(.view-mobile) .mobile-app-container {
        display: none !important;
    }
    
    body.view-mobile .mobile-app-container {
        display: block !important;
    }
    body.view-mobile .demo-stage-wrapper {
        display: none !important;
    }
}

/* Sunum sahnesi (Desktop Stage) Arayüz Tasarımı */
.stage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.stage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.stage-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c9a86c;
    text-transform: uppercase;
    border: 1px solid rgba(201, 168, 108, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(201, 168, 108, 0.05);
    display: inline-block;
    margin-bottom: 15px;
}

.stage-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gold-text {
    color: #c9a86c;
}

.stage-desc {
    color: #a0a0ab;
    font-size: 1.05rem;
    line-height: 1.6;
}

.stage-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* SOL: Cihaz Maketleri ve Sekmeler */
.stage-mocks-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.device-radio {
    display: none;
}

.device-tabs-nav {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 30px;
    position: relative;
    margin-bottom: 40px;
    z-index: 5;
}

.device-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a0a0ab;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.tab-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: #c9a86c;
    border-radius: 26px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(201, 168, 108, 0.3);
}

#device-phone:checked ~ .device-tabs-nav .tab-indicator {
    transform: translateX(0);
}
#device-phone:checked ~ .device-tabs-nav label[for="device-phone"] {
    color: #000000;
}

#device-tablet:checked ~ .device-tabs-nav .tab-indicator {
    transform: translateX(100%);
}
#device-tablet:checked ~ .device-tabs-nav label[for="device-tablet"] {
    color: #000000;
}

.device-panels {
    width: 100%;
    display: flex;
    justify-content: center;
}

.device-panel {
    display: none;
    width: 100%;
    justify-content: center;
}

#device-phone:checked ~ .device-panels .panel-phone {
    display: flex;
}
#device-tablet:checked ~ .device-panels .panel-tablet {
    display: flex;
}

/* Cihaz Maket Gövdeleri */
.mock-device {
    background: #17171c;
    border: 12px solid #0a0a0c;
    box-shadow: 
        0 35px 80px -15px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(201, 168, 108, 0.1);
    position: relative;
    overflow: hidden;
}

.mock-phone {
    width: 300px;
    height: 610px;
    border-radius: 44px;
}

.mock-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background: #0a0a0c;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 100;
}

.mock-speaker {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #2e2e38;
    border-radius: 2px;
    z-index: 110;
}

.mock-tablet {
    width: 480px;
    height: 640px;
    border-radius: 28px;
}

.mock-camera {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2e2e38;
    border-radius: 50%;
    z-index: 100;
}

.mock-screen {
    width: 100%;
    height: 100%;
    background: #000000;
}

.mock-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* SAĞ: QR Kartı & Bilgiler */
.stage-side-column {
    width: 100%;
}

.qr-card {
    background: rgba(15, 15, 20, 0.65);
    border: 1px solid rgba(201, 168, 108, 0.15);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.qr-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c9a86c;
    text-transform: uppercase;
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid rgba(201, 168, 108, 0.2);
    padding: 4px 12px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.qr-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}

.qr-card-desc {
    color: #a0a0ab;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 30px;
}

.qr-code-box {
    width: 220px;
    height: 220px;
    background: #ffffff;
    border-radius: 20px;
    margin: 0 auto 30px auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-code-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border: 2px dashed rgba(201, 168, 108, 0.4);
    border-radius: 24px;
    animation: rotateBorder 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.qr-card-url {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 25px;
}

.url-lbl {
    font-size: 0.75rem;
    color: #a0a0ab;
}

.qr-card-url code {
    font-size: 1rem;
    font-weight: 600;
    color: #c9a86c;
}

.qr-card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    position: relative;
}

.qr-card-divider::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.qr-card-divider span {
    background: #08080c;
    padding: 0 15px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #a0a0ab;
    letter-spacing: 1px;
    z-index: 2;
}

.qr-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qr-card-btn:hover {
    background: #c9a86c;
    color: #000000;
    border-color: #c9a86c;
    box-shadow: 0 6px 20px rgba(201, 168, 108, 0.25);
    transform: translateY(-2px);
}

.side-info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    padding: 0 10px;
}

.side-info-note i {
    font-size: 1.15rem;
    margin-top: 2px;
}

.side-info-note p {
    font-size: 0.8rem;
    color: #a0a0ab;
    line-height: 1.45;
    text-align: left;
}

/* =================================================================
   ALAN REKLAM BRANDING SIGNATURE STYLES (Mobile View & Footer)
   ================================================================= */
.splash-alan-branding {
    margin-top: 35px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.splash-alan-branding a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.splash-alan-branding a:hover {
    text-decoration: underline;
    color: var(--gold-light);
}

.alan-reklam-signature {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.alan-reklam-signature a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.alan-reklam-signature a i {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

.alan-reklam-signature a span {
    color: var(--gold-primary);
    font-weight: 600;
}

.alan-reklam-signature a:hover {
    color: #ffffff;
}

/* Responsive adjustment for desktop stage layout */
@media screen and (max-width: 991px) {
    .stage-container {
        padding: 40px 15px;
    }
    .stage-title {
        font-size: 2.2rem;
    }
    .stage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
