/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a96e;
    --gold-light: #e0c992;
    --gold-dark: #a07d3a;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-primary: #f0ece4;
    --text-secondary: #8a8578;
    --text-muted: #5a5549;
    --border-color: rgba(201, 169, 110, 0.15);
    --smoke-color: rgba(201, 169, 110, 0.06);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== SMOKE CANVAS ===== */
#smokeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.logo:hover { color: var(--gold); }

.logo-o { color: var(--gold); }
.logo-g { color: var(--gold); }
.logo-lounge { font-weight: 400; font-size: 1.2rem; letter-spacing: 4px; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
    background: var(--gold) !important;
    color: var(--bg-dark) !important;
    padding: 8px 20px;
    border-radius: 4px;
    letter-spacing: 1px !important;
    transition: all 0.3s !important;
}

.nav-btn::after { display: none !important; }
.nav-btn:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center bottom, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 30px;
    animation: heroFadeIn 1.5s ease-out;
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    border: 1px solid var(--border-color);
    padding: 8px 24px;
    margin-bottom: 40px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { border-color: var(--border-color); }
    50% { border-color: var(--gold-dark); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    line-height: 0.9;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 80px rgba(201, 169, 110, 0.3);
    letter-spacing: -2px;
}

.title-line-2 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 40px;
    position: relative;
}

.hero-divider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 22px; }
    100% { opacity: 1; top: 8px; }
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-desc {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-dark);
    background: var(--bg-card-hover);
}

.about-card:hover::before { opacity: 1; }

.about-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.about-icon svg {
    width: 100%;
    height: 100%;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== HOOKAH ===== */
.hookah {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
}

.hookah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.hookah-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hookah-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 169, 110, 0.08);
}

.hookah-card-featured {
    border-color: var(--gold-dark);
    grid-column: span 1;
}

.hookah-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 5;
}

.hookah-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.hookah-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.hookah-card:hover .hookah-visual { transform: scale(1.05); }

.hookah-visual-1 { background: linear-gradient(135deg, #1a1510 0%, #2a2015 50%, #1a1510 100%); }
.hookah-visual-2 { background: linear-gradient(135deg, #151018 0%, #251525 50%, #151018 100%); }
.hookah-visual-3 { background: linear-gradient(135deg, #101a15 0%, #152520 50%, #101a15 100%); }
.hookah-visual-4 { background: linear-gradient(135deg, #1a1510 0%, #201815 50%, #1a1510 100%); }

.hookah-visual::after {
    content: '🌬️';
    font-size: 3rem;
    opacity: 0.8;
    filter: grayscale(0.3);
}

.hookah-card > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    padding: 24px 24px 8px;
    color: var(--text-primary);
}

.hookah-desc {
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.hookah-details {
    display: flex;
    gap: 12px;
    padding: 12px 24px;
    flex-wrap: wrap;
}

.detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(201, 169, 110, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

.hookah-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    padding: 16px 24px 24px;
}

/* ===== MENU ===== */
.menu {
    background: var(--bg-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.menu-tab:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
}

.menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    transition: all 0.3s;
    animation: menuFadeIn 0.4s ease-out;
}

.menu-item.hidden {
    display: none;
}

.menu-item:hover {
    border-color: var(--gold-dark);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

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

.menu-item-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(201, 169, 110, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-item-img span { font-size: 1.5rem; }

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.menu-item-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-item:hover .gp-smoke { opacity: 0.8; }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s;
    overflow: hidden;
}

.gp-1 { background: linear-gradient(135deg, #1a1510 0%, #2d2318 50%, #1a1510 100%); }
.gp-2 { background: linear-gradient(135deg, #18101a 0%, #2a1a30 50%, #18101a 100%); }
.gp-3 { background: linear-gradient(135deg, #101810 0%, #1a2a1a 50%, #101810 100%); }
.gp-4 { background: linear-gradient(135deg, #10151a 0%, #18252d 50%, #10151a 100%); }
.gp-5 { background: linear-gradient(135deg, #1a1015 0%, #2d1a22 50%, #1a1015 100%); }

.gallery-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.gp-smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    transition: opacity 0.6s;
    animation: gallerySmoke 4s ease-in-out infinite alternate;
}

@keyframes gallerySmoke {
    from { transform: translateY(10px) scale(0.95); }
    to { transform: translateY(-10px) scale(1.05); }
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--bg-dark);
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: 360px;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.review-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.review-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== PROMO ===== */
.promo {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d0d 0%, var(--bg-dark) 100%);
}

.promo-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
    animation: promoGlow 6s ease-in-out infinite alternate;
}

@keyframes promoGlow {
    from { transform: scale(0.8); }
    to { transform: scale(1.2); }
}

.promo-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
}

.promo-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
}

.promo-title span { color: var(--gold); }

.promo-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
}

.promo-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ===== CONTACTS ===== */
.contacts {
    position: relative;
    z-index: 2;
    padding: 100px 0 60px;
    background: var(--bg-dark);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover { color: var(--gold-light); }

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 350px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder .map-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
}

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

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-color);
    }

    .nav-links.active { right: 0; }
    .burger { display: flex; }

    .hero-cta { flex-direction: column; align-items: center; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .gallery-item-large { grid-column: span 2; }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .review-card { min-width: 300px; }

    .hookah-grid {
        grid-template-columns: 1fr;
    }

    .section { padding: 80px 0; }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }
    .gallery-item-large { grid-column: span 1; }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== PARTICLES ===== */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) translateX(20px); }
}