/* Paşam Lounge Digital Menu CSS - Luxury Edition - Dark Theme */

/* Dark theme text colors - All text should be white/light */
body, html {
    color: hsl(45 77% 89%) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: hsl(45 77% 89%) !important;
}

p, span, div, a {
    color: hsl(45 77% 89%) !important;
}

/* Override any dark text colors */
.text-foreground {
    color: hsl(45 77% 89%) !important;
}

.text-muted-foreground {
    color: hsl(45 10% 80%) !important;
}

/* Ensure all text is visible on dark background */
.menu-card h3,
.menu-card p,
.menu-card span {
    color: hsl(45 77% 89%) !important;
}

/* Category buttons text */
.category-btn {
    color: hsl(45 77% 89%) !important;
}

.category-btn.active {
    color: hsl(222 14% 8%) !important;
}

/* Dinamik Grid Sistemi - Ürün sayısına göre otomatik boyutlandırma */
.products-grid {
    transition: all 0.3s ease;
    width: 100%;
}

/* 1 ürün - Tek büyük kart, ortalanmış */
.products-grid.grid-cols-1.max-w-md {
    max-width: 28rem;
}

.products-grid.grid-cols-1.max-w-md .menu-card {
    min-height: 400px;
}

.products-grid.grid-cols-1.max-w-md .product-image {
    aspect-ratio: 4/3; /* Daha geniş görünüm */
}

/* 2 ürün - İki büyük kart yan yana */
.products-grid.max-w-4xl {
    max-width: 56rem;
}

.products-grid.max-w-4xl .menu-card {
    min-height: 380px;
}

.products-grid.max-w-4xl .product-image {
    aspect-ratio: 3/2; /* Geniş görünüm */
}

/* 3 ürün - Üç orta boyut kart */
.products-grid.max-w-6xl {
    max-width: 72rem;
}

.products-grid.max-w-6xl .menu-card {
    min-height: 360px;
}

/* Responsive iyileştirmeleri */
@media (max-width: 768px) {
    /* Mobilde tüm kartlar tek sütun olsun ama boyutları korunsun */
    .products-grid.max-w-4xl .menu-card,
    .products-grid.max-w-6xl .menu-card {
        min-height: 320px;
    }
    
    .products-grid.max-w-4xl .product-image,
    .products-grid.max-w-6xl .product-image {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 640px) {
    /* Çok küçük ekranlarda kartları biraz küçült */
    .products-grid .menu-card {
        min-height: 280px;
    }
}

/* Kart boyut geçişleri için animasyon */
.menu-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid geçiş animasyonu */
.products-grid {
    animation: gridFadeIn 0.5s ease-out;
}

@keyframes gridFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Horizontal categories layout */
.categories-scroll {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.categories-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar */
    -ms-overflow-style: none;
    padding: 0 1rem;
    flex: 1;
}

.categories-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

/* Navigation arrows */
.category-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(222 14% 15% / 0.9);
    border: 1px solid hsl(45 77% 70% / 0.3);
    color: hsl(45 77% 70%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.category-nav-btn:hover {
    background: hsl(45 77% 70%);
    color: hsl(222 14% 8%);
    transform: translateY(-50%) scale(1.1);
}

.category-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.category-nav-btn.prev {
    left: 0;
}

.category-nav-btn.next {
    right: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .category-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .categories-container {
        padding: 0 0.5rem;
    }
}

.categories-scroll::-webkit-scrollbar {
    height: 6px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: hsl(222 14% 15% / 0.3);
    border-radius: 3px;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: hsl(45 77% 70% / 0.5);
    border-radius: 3px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
    background: hsl(45 77% 70% / 0.8);
}

/* Category button flex properties */
.category-btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: hsl(222 14% 15%);
    border: 1px solid hsl(222 14% 20%);
    color: hsl(45 77% 89%);
}

.category-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px hsl(45 77% 70% / 0.3);
    border-color: hsl(45 77% 70%);
}

.category-btn.active {
    background: linear-gradient(135deg, hsl(45 77% 70%), hsl(35 80% 65%));
    color: hsl(222 14% 8%);
    box-shadow: 0 10px 25px -5px hsl(45 77% 70% / 0.5);
    transform: scale(1.05);
}

/* Search input text */
.search-input {
    color: hsl(45 77% 89%) !important;
}

.search-input::placeholder {
    color: hsl(45 10% 70%) !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(222 14% 15% / 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: hsl(45 77% 70% / 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(45 77% 70% / 0.8);
}

/* Smooth transitions */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Luxury hover effects - Enhanced */
.menu-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        hsl(222 14% 12%) 0%, 
        hsl(222 14% 8%) 100%
    );
    border: 1px solid hsl(45 77% 70% / 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        hsl(45 77% 70% / 0.05) 0%, 
        transparent 50%, 
        hsl(45 77% 70% / 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px hsl(45 77% 20% / 0.4),
        0 0 30px hsl(45 77% 70% / 0.2),
        inset 0 1px 0 hsl(45 77% 70% / 0.1);
    border-color: hsl(45 77% 70% / 0.4);
}

.menu-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Product image container */
.menu-card .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.menu-card .product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product title - Enhanced */
.menu-card .product-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: hsl(45 77% 95%);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 
        0 2px 15px hsl(45 77% 70% / 0.3),
        0 0 30px hsl(45 77% 70% / 0.1);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.menu-card .product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, 
        hsl(45 77% 70%) 0%, 
        transparent 100%
    );
    border-radius: 1px;
    transition: all 0.4s ease;
}

/* Product description - Enhanced */
.menu-card .product-description {
    color: hsl(45 10% 85%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 0;
    transition: all 0.3s ease;
}

/* Product content - Enhanced */
.menu-card .product-content {
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, 
        transparent 0%, 
        hsl(222 14% 10% / 0.1) 100%
    );
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 120px;
}

/* Product title styling */
.menu-card .product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(45 77% 89%) !important;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product description styling */
.menu-card .product-description {
    color: hsl(45 10% 80%) !important;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* When no description, center the title vertically */
.menu-card .product-content:not(:has(.product-description)) {
    justify-content: center;
}

.menu-card .product-content:not(:has(.product-description)) .product-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 3rem;
}

/* Fallback for browsers without :has() support */
.menu-card .product-title:last-child {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 3rem;
}

/* Price badge */
.menu-card .price-badge {
    position: absolute;
    top: -4rem;
    right: 1rem;
    background: linear-gradient(135deg, 
        hsl(45 77% 70%) 0%, 
        hsl(35 80% 65%) 100%
    );
    color: hsl(222 14% 8%);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 
        0 8px 25px hsl(45 77% 70% / 0.3),
        0 0 20px hsl(45 77% 70% / 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid hsl(45 77% 70% / 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.menu-card:hover .price-badge {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px hsl(45 77% 70% / 0.4),
        0 0 30px hsl(45 77% 70% / 0.3);
}

/* Category indicator */
.menu-card .category-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: hsl(222 14% 8% / 0.8);
    color: hsl(45 77% 70%);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid hsl(45 77% 70% / 0.3);
    transition: all 0.3s ease;
}

.menu-card:hover .category-indicator {
    background: hsl(45 77% 70% / 0.9);
    color: hsl(222 14% 8%);
    transform: scale(1.1);
}

/* Enhanced hover effects for title and description */
.menu-card:hover .product-title::after {
    width: 5rem;
    background: linear-gradient(90deg, 
        hsl(45 77% 70%) 0%, 
        hsl(35 80% 65%) 50%,
        transparent 100%
    );
    transition: all 0.4s ease;
}

.menu-card:hover .product-description {
    color: hsl(45 10% 95%);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Product Footer */
.menu-card .product-footer {
    padding-top: 1rem;
    border-top: 1px solid hsl(45 77% 70% / 0.2);
    min-height: 1rem;
    /* Footer boş bırakıldı, sadece border ile ayrım yapılıyor */
}

/* Product Price - Footer */
.menu-card .product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(45 77% 70%);
    text-shadow: 
        0 2px 15px hsl(45 77% 70% / 0.4),
        0 0 30px hsl(45 77% 70% / 0.2);
    letter-spacing: -0.02em;
}

.category-btn {
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.3s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px -10px hsl(45 77% 70% / 0.4);
}

.category-btn.active {
    background: linear-gradient(135deg, hsl(45 77% 70%), hsl(35 80% 65%));
    color: hsl(222 14% 8%);
    box-shadow: 0 10px 25px -5px hsl(45 77% 70% / 0.5);
    transform: scale(1.05);
}

/* Glass morphism effects */
.glass-effect {
    background: hsl(222 14% 10% / 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsl(45 77% 70% / 0.2);
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, hsl(45 77% 70%) 0%, hsl(35 80% 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Luxury shadows */
.shadow-luxury {
    box-shadow: 0 25px 50px -12px hsl(45 77% 20% / 0.25);
}

.shadow-glow {
    box-shadow: 0 0 30px hsl(45 77% 70% / 0.2);
}

/* Category sections */
.category-section {
    animation: fadeInUp 0.8s ease-out;
}

.category-header {
    position: relative;
}

.category-header h2 {
    text-shadow: 0 2px 10px hsl(45 77% 70% / 0.3);
}

.category-header .h-px {
    background: linear-gradient(90deg, 
        transparent 0%, 
        hsl(45 77% 70% / 0.3) 20%, 
        hsl(45 77% 70% / 0.6) 50%, 
        hsl(45 77% 70% / 0.3) 80%, 
        transparent 100%
    );
    height: 2px;
    border-radius: 1px;
}

.products-grid {
    animation: fadeInUp 0.6s ease-out;
}

/* Total products info */
.total-products-info {
    animation: fadeInUp 0.4s ease-out;
}

.total-products-info .inline-flex {
    background: linear-gradient(135deg, 
        hsl(45 77% 70% / 0.1) 0%, 
        hsl(45 77% 70% / 0.05) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsl(45 77% 70% / 0.2);
    box-shadow: 0 8px 32px hsl(45 77% 70% / 0.1);
}

.total-products-info .text-primary {
    text-shadow: 0 0 20px hsl(45 77% 70% / 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .menu-card {
        margin: 0 0.5rem;
    }
}

@media (max-width: 640px) {
    .category-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}

/* Print styles */
@media print {
    .glass-effect,
    .category-btn,
    .search-input,
    button {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
    
    .gradient-text {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}

/* Luxury animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.menu-card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }
.menu-card:nth-child(5) { animation-delay: 0.5s; }
.menu-card:nth-child(6) { animation-delay: 0.6s; }
.menu-card:nth-child(7) { animation-delay: 0.7s; }
.menu-card:nth-child(8) { animation-delay: 0.8s; }

.category-btn {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-btn:nth-child(1) { animation-delay: 0.1s; }
.category-btn:nth-child(2) { animation-delay: 0.2s; }
.category-btn:nth-child(3) { animation-delay: 0.3s; }
.category-btn:nth-child(4) { animation-delay: 0.4s; }
.category-btn:nth-child(5) { animation-delay: 0.5s; }

/* Shimmer effect for loading states */
.shimmer {
    background: linear-gradient(90deg, 
        hsl(222 14% 15%) 25%, 
        hsl(222 14% 20%) 50%, 
        hsl(222 14% 15%) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Floating animation for special elements */
.float {
    animation: pulse 3s ease-in-out infinite;
}

/* Enhanced glass effect */
.glass-effect {
    background: hsl(222 14% 10% / 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid hsl(45 77% 70% / 0.3);
    box-shadow: 
        0 8px 32px 0 hsl(222 14% 4% / 0.37),
        inset 0 1px 0 hsl(255 255% 255% / 0.1);
} 

/* Mobile Bottom Menu */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsl(222 14% 4% / 0.95);
    border-top: 1px solid hsl(45 77% 89% / 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -10px 25px -5px hsl(222 14% 4% / 0.3);
}

/* Force show for debugging */
.bottom-menu.debug-show {
    display: flex !important;
    background: rgba(255, 0, 0, 0.1) !important;
    border: 2px solid red !important;
}

.bottom-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: hsl(45 77% 89%) !important;
    min-width: 60px;
    position: relative;
}

.bottom-menu-item:hover,
.bottom-menu-item.active {
    background: var(--primary);
    color: var(--primary-foreground) !important;
    transform: translateY(-2px);
}

.bottom-menu-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
}

.bottom-menu-item span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    color: inherit !important;
}

.bottom-menu-item:hover i,
.bottom-menu-item.active i {
    transform: scale(1.1);
}

/* WiFi Modal */
.wifi-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.wifi-modal-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
}

.wifi-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: hsl(45 77% 89%);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.wifi-modal-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.wifi-password {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    border: 2px solid var(--primary);
}

/* Menu Categories Toggle */
.categories-toggle {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 100;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
}

@media (max-width: 768px) {
    .categories-toggle {
        display: flex;
    }
    
    .categories-toggle:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: var(--shadow-glow);
    }
}

/* Body padding for bottom menu - Show on all devices */
.bottom-menu {
    display: flex !important;
}

body {
    padding-bottom: 5rem; /* Space for bottom menu */
}

@media (max-width: 768px) {
    /* Compact header on mobile */
    header .glass-effect {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    /* Smaller spacing on mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Desktop and tablet specific adjustments for bottom menu */
@media (min-width: 769px) {
    .bottom-menu {
        padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
    }
    
    .bottom-menu-item {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
    
    .bottom-menu-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .bottom-menu-item span {
        font-size: 0.875rem;
    }
}
    
    /* Compact info badges on mobile */
    #info-container > div {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    #info-container i {
        width: 12px;
        height: 12px;
    }
}

/* Desktop header optimizations */
@media (min-width: 769px) {
    /* Slightly more compact on desktop too */
    header .container {
        max-width: 1200px;
    }
    
    /* Better logo sizing */
    header img {
        max-height: 4rem;
    }
    
    /* Compact title on desktop */
    header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    header p {
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Sticky header enhancements */
header.glass-effect {
    transition: all 0.3s ease;
    min-height: auto;
}

/* Scrolled header state (optional - can be added with JS) */
header.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: hsl(222 14% 8% / 0.95);
}

header.scrolled h1 {
    font-size: 1.5rem;
}

header.scrolled img {
    height: 2rem;
}

header.scrolled p {
    display: none;
}

header.scrolled #info-container {
    gap: 0.5rem;
}

header.scrolled #info-container > div {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Horizontal categories layout */
.categories-scroll {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
} 

/* Product card content - REMOVED DUPLICATE */