/* Navbar logo tweaks */
.nav-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 180ms ease;
}

.nav-logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.3);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-logo-text {
    font-weight: inherit;
    font-size: 1.25rem;
    color: inherit;
}

.nav-logo-link:hover .nav-logo-img {
    transform: scale(1.08);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.55), 0 6px 18px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05);
}

.nav-logo-link:hover .nav-logo-text {
    color: #d4a574;
}

/* Google Fonts Import - Elite Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Temel Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background-color: #0a0a0a;
    font-weight: 400;
    opacity: 0;
    animation: pageFadeIn 1.2s ease-out forwards;
}

@keyframes pageFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    body {
        /* no site-wide fixed background on mobile */
    }
}

@media (prefers-reduced-motion: reduce) {

    body,
    .hero-section,
    .hero-content,
    .info-bar,
    .product-card,
    .category-card,
    .featured-products h2,
    .categories-preview h2 {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

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

/* Navigation - Elite Professional */
.navbar {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    color: #e8e8e8;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.nav-logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffd700, transparent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Info Bar - Similar to the orange bar in image */
.info-bar {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: #2c1810;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 0.9rem;
    margin-top: 70px;
    /* Account for fixed navbar */
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInDown 0.8s ease-out 0.2s forwards;
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons - Elite Style */
.btn {
    display: inline-block;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    color: #e8e8e8;
}

.btn-primary:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    color: #ffffff;
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

/* Hero Section - Bar Background Style */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('/static/images/hero-bg.jpeg?v=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f4f1e8;
    position: relative;
    opacity: 0;
    animation: fadeInHero 2s ease-in-out forwards;
}

@keyframes fadeInHero {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    max-width: 800px;
    opacity: 0;
    animation: fadeInContent 2.5s ease-in-out 0.5s forwards;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: #d4a574;
}

/* Page Header - Professional Elite Style with Custom Background */
.page-header {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(15, 15, 15, 0.75) 100%),
        url('/static/images/menu-header-bg.jpg'),
        url('/static/images/menu-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #e8e8e8;
    padding: 8rem 0 5rem 0;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.page-header p {
    font-size: 1.1rem;
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Product Grid - Elite Style */
.featured-products,
.categories-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
}

.featured-products h2,
.categories-preview h2 {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInTitle 1s ease-out 0.3s forwards;
}

@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-products h2::after,
.categories-preview h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 2rem auto;
}

.products-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card,
.category-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.category-card:nth-child(5) {
    animation-delay: 0.5s;
}

.category-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card::before,
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.product-card:hover,
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.2);
}

.product-card img,
.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: sepia(20%) saturate(1.2);
}

.product-info,
.category-card h3,
.category-card p {
    padding: 2rem;
}

.product-info h3,
.category-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-info p,
.category-card p {
    color: #b8b8b8;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

.price {
    font-weight: 600;
    color: #ffd700;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* Menu Styles - Professional Elite Layout */
.menu-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    margin-top: 70px;
    position: relative;
}

/* Reveal-on-scroll effects for home menu */
.menu-category-row,
.product-item-inline,
.hookah-category {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-category-row.in-view,
.product-item-inline.in-view,
.hookah-category.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger items inside categories */
.category-products .product-item-inline {
    transition-delay: 0.05s;
}

.category-products .product-item-inline:nth-child(2) {
    transition-delay: 0.10s;
}

.category-products .product-item-inline:nth-child(3) {
    transition-delay: 0.15s;
}

.category-products .product-item-inline:nth-child(4) {
    transition-delay: 0.20s;
}

.category-products .product-item-inline:nth-child(5) {
    transition-delay: 0.25s;
}

.category-products .product-item-inline:nth-child(6) {
    transition-delay: 0.30s;
}

.menu-category-row {
    margin-bottom: 6rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 0;
    padding: 4rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.menu-category-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.menu-category-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}



/* Category Content */
.category-content-section {
    padding: 1rem;
}

.category-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.category-header h2 {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.category-desc {
    color: #b8b8b8;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

/* Products List */
.category-products {
    display: grid;
    gap: 1rem;
}

.product-item-inline {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
    transition: all 0.4s ease;
    border-left: 1px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.product-item-inline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.product-item-inline:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
    border-left-color: rgba(255, 215, 0, 0.3);
}

.product-item-inline:hover::before {
    transform: scaleY(1);
}

.product-info-inline h4 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-desc {
    color: #999999;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.4;
}

.price-inline {
    color: #ffd700;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #b8b8b8;
    font-weight: 300;
}

.no-products i {
    margin-right: 0.5rem;
    color: #ffd700;
}

/* English Translation Styles - Enhanced Visibility */
.hookah-category-title em,
.product-info-inline h4 em,
.category-header h2 em,
.product-info h3 em,
.product-header h3 em {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.92em;
    margin-left: 10px;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.hookah-variety em {
    color: #d0d0d0;
    font-weight: 450;
    font-size: 0.78em;
    margin-top: 3px;
    margin-left: 0;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    display: block;
    line-height: 1.2;
}

.product-desc em,
.category-desc em,
.description em {
    color: #cccccc;
    font-weight: 450;
    font-size: 0.94em;
    line-height: 1.5;
    opacity: 1;
    margin-top: 6px;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Hookah (Nargile) Category Styles - Elite Design */
.hookah-category {
    margin-bottom: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 0;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hookah-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
}

.hookah-category:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.25);
}

.hookah-category-title {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.hookah-category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}


.hookah-varieties {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
    max-width: 100%;
}

@media (min-width: 1400px) {
    .hookah-varieties {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .hookah-varieties {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .hookah-varieties {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .hookah-varieties {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hookah-variety {
    background: rgba(255, 255, 255, 0.05);
    color: #e8e8e8;
    padding: 0.8rem 1rem;
    border-radius: 0;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 60px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    word-break: break-word;
    hyphens: auto;
}

.hookah-variety::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.3s ease;
}

.hookah-variety:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hookah-variety:hover::before {
    left: 100%;
}

.hookah-price-info {
    text-align: right;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.hookah-single-price {
    color: #ffd700;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hookah-single-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}



.menu-items {
    display: grid;
    gap: 2rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    background: rgba(44, 24, 16, 0.3);
    border-bottom: 1px solid #3a2f2a;
}

.menu-item:hover {
    background: rgba(44, 24, 16, 0.6);
    transform: translateX(10px);
}

.menu-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
    filter: sepia(20%) saturate(1.2);
}

.item-details {
    flex: 1;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.8rem;
}

.item-header h3 {
    color: #f4f1e8;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
}

.description {
    color: #d4a574;
    font-size: 1rem;
    font-style: italic;
}

/* Empty States */
.empty-category {
    text-align: center;
    padding: 3rem;
    color: #d4a574;
}

.no-menu {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 0;
    margin: 3rem 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.no-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

/* Location Styles */
.location-section {
    padding: 3rem 0;
    background-color: #1a1a1a;
    margin-top: 70px;
    /* Account for fixed navbar */
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
    align-items: stretch;
}

.location-info {
    background: linear-gradient(145deg, #2c1810, #1a1a1a);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid #3a2f2a;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.location-info h2 {
    color: #f4f1e8;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #3a2f2a;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #d4a574;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.contact-item h3 i {
    margin-right: 0.5rem;
    color: #d4a574;
}

.contact-item p {
    color: #f4f1e8;
    font-size: 1rem;
}

.map-container {
    background: none;
    border-radius: 0;
    min-height: 400px;
    border: none;
    box-shadow: none;
}

.directions-actions {
    margin-top: 12px;
}

.map-placeholder {
    text-align: center;
    color: #d4a574;
    font-family: 'Playfair Display', serif;
}

/* Footer - Elite Style */
footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: #e8e8e8;
    text-align: center;
    padding: 4rem 0;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-content p {
    color: #b8b8b8;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Social Icons Area (like in the image) */
.social-icons {
    position: fixed;
    top: 1.2rem;
    right: 2rem;
    z-index: 1001;
}

.social-icons a {
    color: #f4f1e8;
    margin-left: 1.2rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover {
    color: #d4a574;
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        margin-top: 0;
    }

    .page-header,
    .menu-section,
    .location-section {
        margin-top: 0;
    }

    .page-header {
        background-attachment: scroll;
        /* Mobile'da fixed attachment sorun çıkarabilir */
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-content {
        margin: 1rem;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-section {
        background-attachment: scroll;
        /* Mobile'da fixed attachment sorun çıkarabilir */
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .menu-item {
        flex-direction: column;
    }

    .item-header {
        flex-direction: column;
        align-items: start;
    }

    .social-icons {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        margin: 1rem 0;
    }

    /* Mobile Menu Layout */
    .menu-category-row {
        margin-bottom: 3rem;
        padding: 2rem;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    /* Hookah Mobile Styles */
    .hookah-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .hookah-category-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }


    .hookah-varieties {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.5rem;
    }

    .hookah-variety {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
        min-height: 40px;
    }

    .hookah-variety em {
        font-size: 0.72em;
        margin-top: 2px;
    }

    .hookah-single-price {
        font-size: 1.2rem;
        padding: 0.4rem 1rem;
    }

    /* Mobile map height */
    #map {
        height: 320px !important;
    }
}

/* Category Detail Page Styles */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #d4a574;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #f4f1e8;
}

.category-detail-section {
    padding: 3rem 0;
    background-color: #1a1a1a;
}

.products-list {
    display: grid;
    gap: 2rem;
}

.product-item {
    background: linear-gradient(145deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #3a2f2a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(212, 165, 116, 0.2);
}

.product-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: sepia(20%) saturate(1.2);
}

.product-details {
    flex: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.product-header h3 {
    color: #f4f1e8;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.featured-badge {
    background: linear-gradient(135deg, #d4a574, #b8860b);
    color: #2c1810;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.empty-category-detail {
    text-align: center;
    padding: 6rem 2rem;
    color: #d4a574;
}

.empty-category-detail h3 {
    color: #f4f1e8;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-category-detail p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Elegant spacing adjustments */
.featured-products,
.categories-preview {
    border-top: 1px solid #3a2f2a;
}

.menu-category:first-child {
    margin-top: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

/* Slider variant */
.gallery-slider {
    position: relative;
    overflow: hidden;
    /* subtle edge fade */
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}

.gallery-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    min-width: 200%;
    animation: galleryScroll 40s linear infinite;
    will-change: transform;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-slide {
    flex: 0 0 320px;
}

.gallery-slide.is-center {
    transform: scale(1.15);
    transition: transform 0.3s ease;
    z-index: 1;
}

.gallery-slide a {
    display: block;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: sepia(12%) saturate(1.05);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: sepia(0%) saturate(1.1);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    color: #f4f1e8;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .gallery-slide {
        flex-basis: 240px;
    }

    .gallery-item img {
        height: 180px;
    }

    .gallery-track {
        animation-duration: 30s;
    }
}