        body {
            margin: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #fafafa;
            color: #1a1a1a;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="%23f1f5f9" cx="30" cy="30" r="1.5"/></g></svg>') repeat;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #d97706;
            background: rgba(251, 146, 60, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            border: 1px solid rgba(251, 146, 60, 0.2);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-title {
            font-size: clamp(2rem, 8vw, 6rem);
            font-weight: 800;
            color: #1a1a1a;
            margin: 0 0 0.5rem 0;
            letter-spacing: -0.02em;
            line-height: 1.1;
            font-family: 'Playfair Display', serif;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-subtitle {
            font-size: clamp(1.25rem, 3vw, 2rem);
            font-weight: 300;
            color: #6b7280;
            margin: 0 0 2rem 0;
            font-style: italic;
            font-family: 'Playfair Display', serif;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-description {
            font-size: 1.125rem;
            color: #4b5563;
            margin: 0 0 3rem 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #d97706;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0.5rem;
        }

        /* Section Styles */
        .must-try-section,
        .other-foods-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #d97706;
            background: rgba(251, 146, 60, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            border: 1px solid rgba(251, 146, 60, 0.2);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 1rem 0;
            letter-spacing: -0.02em;
            line-height: 1.1;
            font-family: 'Playfair Display', serif;
        }

        .section-description {
            font-size: 1.125rem;
            color: #6b7280;
            margin: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Featured Grid */
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .featured-large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .featured-medium {
            grid-column: span 1;
            grid-row: span 1;
        }

        .featured-small {
            grid-column: span 1;
            grid-row: span 1;
        }

        .food-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUpStagger 0.6s ease-out forwards;
        }

        @keyframes fadeInUpStagger {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger animation for each card */
        .food-card:nth-child(1) { animation-delay: 0.1s; }
        .food-card:nth-child(2) { animation-delay: 0.2s; }
        .food-card:nth-child(3) { animation-delay: 0.3s; }
        .food-card:nth-child(4) { animation-delay: 0.4s; }
        .food-card:nth-child(5) { animation-delay: 0.5s; }
        .food-card:nth-child(6) { animation-delay: 0.6s; }

        .food-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
        }

        .card-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

        .featured-large .card-image {
            aspect-ratio: 16/12;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .food-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 10;
        }

        .card-badge {
            background: rgba(217, 119, 6, 0.9);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            backdrop-filter: blur(10px);
        }

        .card-content {
            padding: 2rem;
        }

        .featured-large .card-content {
            padding: 3rem;
        }

        .card-title {
            font-size: clamp(1.5rem, 2vw, 2rem);
            font-weight: 600;
            color: #1a1a1a;
            margin: 0 0 1rem 0;
            line-height: 1.2;
            font-family: 'Playfair Display', serif;
        }

        .featured-large .card-title {
            font-size: clamp(2rem, 3vw, 3rem);
            font-weight: 700;
        }

        .card-description {
            font-size: 1rem;
            color: #6b7280;
            margin: 0 0 1.5rem 0;
            line-height: 1.6;
        }

        .card-price {
            font-size: 1.125rem;
            font-weight: 600;
            color: #d97706;
            margin-bottom: 1.5rem;
        }

        .card-action {
            display: flex;
            align-items: center;
        }

        .read-more {
            font-size: 0.875rem;
            font-weight: 600;
            color: #d97706;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .food-card:hover .read-more {
            color: #92400e;
            transform: translateX(4px);
        }

        /* Masonry Layout for Other Foods */
        .foods-masonry {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .food-card-compact {
            background: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: flex;
            gap: 1rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUpStagger 0.6s ease-out forwards;
        }

        /* Stagger animation for compact cards */
        .food-card-compact:nth-child(odd) { animation-delay: 0.1s; }
        .food-card-compact:nth-child(even) { animation-delay: 0.2s; }

        .food-card-compact:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
        }

        .compact-image {
            flex: 0 0 120px;
            height: 120px;
            overflow: hidden;
        }

        .compact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .food-card-compact:hover .compact-image img {
            transform: scale(1.1);
        }

        .compact-content {
            flex: 1;
            padding: 1.5rem 1.5rem 1.5rem 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .compact-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0 0 0.5rem 0;
            line-height: 1.3;
            font-family: 'Playfair Display', serif;
        }

        .compact-description {
            font-size: 0.875rem;
            color: #6b7280;
            margin: 0 0 0.75rem 0;
            line-height: 1.5;
        }

        .compact-price {
            font-size: 0.875rem;
            font-weight: 600;
            color: #d97706;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(217, 119, 6, 0.1) 50%,
                transparent 70%
            );
            animation: shimmer 8s infinite linear;
            z-index: 1;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .cta-content {
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin: 0 0 1rem 0;
            letter-spacing: -0.02em;
            font-family: 'Playfair Display', serif;
        }

        .cta-description {
            font-size: 1.25rem;
            color: #d1d5db;
            margin: 0 0 3rem 0;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, #d97706, #f59e0b);
            color: white;
            box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
        }

        .cta-button.primary::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.5s;
        }

        .cta-button.primary:hover::before {
            left: 100%;
        }

        .cta-button.primary:hover {
            background: linear-gradient(135deg, #b45309, #d97706);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
        }

        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-large,
            .featured-medium,
            .featured-small {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .hero-stats {
                gap: 2rem;
            }
            
            .foods-masonry {
                grid-template-columns: 1fr;
            }
            
            .food-card-compact {
                flex-direction: column;
            }
            
            .compact-image {
                flex: none;
                height: 200px;
            }
            
            .compact-content {
                padding: 1.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }
        #hamburger {
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        #hamburger:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }
        #hamburger span {
            display: block;
            width: 18px;
            height: 2px;
            background: #1a1a1a;
            margin: 2px 0;
            border-radius: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }
        #hamburger.active {
            background: rgba(26, 26, 26, 0.9);
        }
        #hamburger.active span {
            background: white;
        }
        #hamburger.active span:nth-child(1) {
            transform: translateY(4px) rotate(45deg);
        }
        #hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        #hamburger.active span:nth-child(3) {
            transform: translateY(-4px) rotate(-45deg);
        }
        
        /* Menu Panel Styles */
        .menu-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -8px 0 32px rgba(215, 38, 61, 0.15);
            display: flex;
            flex-direction: column;
            padding: 80px 40px 40px 40px;
        }
        .menu-panel.active {
            right: 0;
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.3);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .menu-header {
            margin-bottom: 40px;
        }
        .menu-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: #d7263d;
            margin-bottom: 8px;
            text-shadow: 0 2px 8px rgba(215, 38, 61, 0.2);
        }
        .menu-subtitle {
            color: #666;
            font-size: 1rem;
        }
        
        .menu-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .menu-panel .menu-item {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
        }
        .menu-panel.active .menu-item {
            opacity: 1;
            transform: translateX(0);
        }
        .menu-panel.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
        .menu-panel.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
        .menu-panel.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
        .menu-panel.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
        .menu-panel.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
        .menu-panel.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
        .menu-panel.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
        .menu-item {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            background: rgba(255, 247, 230, 0.6);
            border-radius: 12px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 38, 61, 0.1), transparent);
            transition: left 0.6s ease;
        }
        .menu-item:hover::before {
            left: 100%;
        }
        .menu-item:hover {
            background: rgba(215, 38, 61, 0.05);
            border-left-color: #d7263d;
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(215, 38, 61, 0.15);
        }
        .menu-item i {
            margin-right: 16px;
            color: #d7263d;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        .menu-footer {
            margin-top: auto;
            padding-top: 40px;
            border-top: 1px solid rgba(215, 38, 61, 0.1);
        }
        .menu-footer-text {
            color: #999;
            font-size: 0.9rem;
            text-align: center;
        }
        
        @media (max-width: 600px) {
            .menu-panel {
                max-width: 100%;
                padding: 80px 24px 40px 24px;
            }
            #hamburger {
                top: 16px;
                right: 16px;
            }
        }
        .magazine-cover {
            position: relative;
            width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 0 0 60px 0;
        }
        .cover-title {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            color: #d7263d;
            text-shadow: 2px 2px 0 #fff, 0 8px 24px #d7263d44;
            margin-top: 40px;
            margin-bottom: 10px;
            z-index: 2;
        }
        .cover-subtitle {
            font-size: 1.5rem;
            color: #222;
            background: #fff8;
            padding: 8px 24px;
            box-shadow: 0 2px 12px #d7263d22;
            margin-bottom: 40px;
            z-index: 2;
            text-align: center;
        }
        .cover-description {
            font-size: 1.5rem;
            color: #222;
            padding: 8px 24px;
            margin-bottom: 40px;
            z-index: 2;
            max-width: 80%;
            text-align: center;
        }

        .section-title {
            font-size: 2.2em;
            font-weight: 700;
            color: #8B4513;
            text-align: center;
            margin: 40px 0 30px 0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #f4d03f);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .must-try-section,
        .other-foods-section {
            margin-bottom: 50px;
        }

        .featured-section {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 20px;
            z-index: 2;
            padding: 0 30px;
        }
        .featured-card {
            position: relative;
            width: 340px;
            height: 420px;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
        }
        .featured-card:hover {
            transform: translateY(-12px) scale(1.04) rotate(-2deg);
            box-shadow: 0 16px 48px #d7263d44, 0 4px 16px #2224;
        }
        .brush-image {
            position: absolute;
            top: 0; left: 0; right: 0;
            width: 100%;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .brush-image img {
            width: 90%;
            height: 90%;
            object-fit: cover;
            clip-path: url(#brushMask);
            filter: drop-shadow(0 8px 24px #d7263d44) brightness(1.05);
            transition: filter 0.3s;
        }
        .featured-card:hover .brush-image img {
            filter: drop-shadow(0 16px 32px #d7263d88) brightness(1.15) saturate(1.2);
        }
        .featured-info {
            position: relative;
            z-index: 2;
            padding: 32px 24px 24px 24px;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }
        .featured-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: #000000;
            margin-bottom: 8px;
            letter-spacing: 0.05em;
            text-shadow: 0 0 8px #fffa00;;
        }
        .featured-desc {
            font-size: 1.1rem;
            color: #222;
            margin-bottom: 12px;
        }
        .featured-link {
            display: inline-block;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(90deg, #d7263d 60%, #ffb400 100%);
            padding: 8px 24px;
            border-radius: 24px;
            text-decoration: none;
            box-shadow: 0 2px 8px #d7263d22;
            transition: background 0.3s, box-shadow 0.3s;
        }
        .featured-link:hover {
            background: linear-gradient(90deg, #ffb400 60%, #d7263d 100%);
            box-shadow: 0 4px 16px #ffb40044;
        }
        /* Layered graphics */
        .cover-graphic {
            position: absolute;
            z-index: 1;
            pointer-events: none;
        }
        .cover-graphic.top-left {
            top: 0; left: 0;
            width: 320px; height: 320px;
            opacity: 0.18;
        }
        .cover-graphic.bottom-right {
            bottom: 0; right: 0;
            width: 400px; height: 400px;
            opacity: 0.14;
        }
        @media (max-width: 900px) {            
            .cover-description {
                max-width: 95%;
            }
            .featured-section {
                flex-direction: column;
                gap: 32px;
            }
            .featured-card {
                width: 90vw;
                max-width: 340px;
            }
        }

/* Food Page Styles */
        .magazine-bg {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: 0;
            pointer-events: none;
        }
        .food-detail {
            max-width: 760px;
            margin: 60px auto 40px auto;
            background: #fff;
            border-radius: 48px;
            box-shadow: 0 24px 64px #d7263d22, 0 2px 8px #2222;
            overflow: hidden;
            padding: 0;
            position: relative;
            z-index: 2;
        }
        .food-hero {
            position: relative;
            width: 100%;
            height: 400px;
            background: linear-gradient(120deg, #ffe0e0 0%, #fff7e6 100%);
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
/* --- Magazine-inspired custom styles for detail.php --- */
.magazine-info-card {
    box-shadow: 0 8px 32px rgba(60, 60, 120, 0.12);
}
.sticky-sidebar {
    position: sticky;
    top: 2rem;
}
.card-hover:hover {
    box-shadow: 0 12px 32px rgba(60, 60, 120, 0.18);
    transform: translateY(-2px) scale(1.02);
    transition: box-shadow 0.2s, transform 0.2s;
}
.magazine-grid {
    gap: 2.5rem;
}
.magazine-main-content {
    min-width: 0;
}
.magazine-sidebar {
    min-width: 0;
}
.magazine-title {
    letter-spacing: -1px;
}
.magazine-section-title {
    letter-spacing: -0.5px;
}
.magazine-desc {
    font-size: 1.1rem;
    line-height: 1.7;
}
.magazine-glass {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
}
.magazine-hero-img {
    animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.no-print {
    display: block;
}
@media print {
    .no-print {
        display: none !important;
    }
}
/* --- End magazine-inspired styles --- */
        .food-hero-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
        }
        .food-hero-img svg {
            width: 100%; height: 100%; display: block;
        }
        .food-hero-gradient {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(180deg, #fff0 60%, #fff8 100%);
            z-index: 2;
        }
        .food-hero-title {
            z-index: 4;
            font-family: 'Oswald', sans-serif;
            font-size: 2.8rem;
            padding: 18px;
            letter-spacing: 0.14em;
            text-shadow: 0 8px 32px #d7263d88, 0 2px 8px #ffb40044;
            display: inline-block;
            transform: skew(-8deg);
            opacity: 0.97;
        }
        .food-hero-title .headline-icon {
            font-size: 2rem;
            vertical-align: middle;
            margin-right: 14px;
            filter: drop-shadow(0 2px 8px #ffb40088);
        }
        .food-info {
            padding: 20px 20px 50px 20px;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .info-section {
            background: linear-gradient(90deg, #fff8 60%, #ffe0e0 100%);
            border-radius: 24px;
            box-shadow: 0 2px 12px #d7263d11;
            padding: 18px 24px;
            margin-bottom: 0;
            position: relative;
            transition: box-shadow 0.3s;
        }
        .info-section strong {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            color: #d7263d;
            letter-spacing: 0.04em;
            margin-right: 8px;
        }
        .info-section:hover {
            box-shadow: 0 8px 32px #d7263d22;
        }
        .food-pricing {
            font-size: 1.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #fff8 60%, #ffecd2 100%);
        }
        .back-link {
            display: inline-block;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(90deg, #d7263d 60%, #ffb400 100%);
            padding: 10px 32px;
            border-radius: 24px;
            text-decoration: none;
            box-shadow: 0 2px 8px #d7263d22;
            transition: background 0.3s, box-shadow 0.3s;
            font-size: 1.1rem;
            margin-top: 24px;
            margin-left: 0;
        }
        .back-link:hover {
            background: linear-gradient(90deg, #ffb400 60%, #d7263d 100%);
            box-shadow: 0 4px 16px #ffb40044;
        }
        @media (max-width: 900px) {
            .food-detail {
                max-width: 100vw;
                margin: 24px auto;
                border-radius: 0;
            }
            .food-hero {
                height: 190px;
            }
            .food-hero-title {
                font-size: 2rem;
                border-radius: 0 16px 16px 16px;
                padding: 8px;
                left: 8vw;
                bottom: 12px;
            }
            .food-info {
                padding: 24px 8vw 24px 8vw;
            }
        }


/* Popular Times Chart Styles */
        .popular-times-widget {
            font-family: 'Inter', sans-serif;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            box-sizing: border-box;
        }
        
        .popular-times-header button {
            transition: all 0.2s ease;
        }
        
        .popular-times-chart {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
          .chart-wrapper {
            position: relative;
            overflow: hidden; /* Prevent any overflow */
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .chart-area {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }
          .bars-container {
            padding: 20px 8px;
            background: linear-gradient(to top, #f1f5f9 0%, transparent 100%);
            border-radius: 8px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow-x: hidden;
        }
        
        .bar-wrapper {
            position: relative;
            min-width: 0;
            touch-action: manipulation;
            flex: 1;
            max-width: calc((100% - 17 * 2px) / 18); /* Account for gaps between bars */
            box-sizing: border-box;
        }
        
        .bar {
            border-radius: 4px 4px 0 0;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
            cursor: pointer;
            touch-action: manipulation;
        }
        
        .bar:hover, .bar:active {
            transform: scaleY(1.05);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
        }
        
        .time-label {
            white-space: nowrap;
            font-size: 10px;
            margin-top: 8px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
        }
        
        .percent-label {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            user-select: none;
            pointer-events: none;
        }
        
        .day-indicator {
            font-size: 16px;
            color: #374151;
            border-top: 1px solid #e5e7eb;
            padding-top: 12px;
        }
        
        .popular-times-header button {
            touch-action: manipulation;
            user-select: none;
        }
        
        .hour-tooltip {
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }        /* Responsive styles for popular times chart */
        @media (max-width: 1024px) {
            .popular-times-chart {
                padding: 16px;
                width: 100%;
                max-width: 100%;
            }
            
            .bars-container {
                padding: 15px 6px;
                height: 180px !important;
                gap: 1px !important;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .bar-wrapper {
                max-width: calc((100% - 17 * 1px) / 18); /* Account for 1px gaps */
            }
            
            .bar {
                max-height: 140px !important;
            }
        }
        
        @media (max-width: 768px) {
            .popular-times-chart {
                padding: 12px;
                width: 100%;
                max-width: 100%;
            }
            
            .bars-container {
                padding: 12px 4px;
                height: 160px !important;
                gap: 1px !important;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .bar-wrapper {
                max-width: calc((100% - 17 * 1px) / 18); /* Account for 1px gaps */
            }
            
            .bar {
                max-height: 120px !important;
            }
            
            .time-label {
                font-size: 8px;
                transform: rotate(-45deg);
                margin-top: 4px;
                height: 16px;
            }
            
            .percent-label {
                font-size: 8px;
                top: -14px;
            }
            
            .popular-times-header .flex {
                justify-content: center;
                gap: 6px;
            }
            
            .popular-times-header button {
                padding: 8px 12px !important;
                font-size: 12px !important;
            }
            
            .popular-times-legend {
                padding: 12px;
            }
            
            .popular-times-legend .flex {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }
            
            .popular-times-legend .flex:first-child {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
                justify-content: center;
            }
        }
          @media (max-width: 480px) {
            .popular-times-chart {
                padding: 0;
                width: 100%;
                max-width: 100%;
                margin: 0;
            }
            
            .bars-container {
                padding: 8px 2px;
                height: 140px !important;
                gap: 0.5px !important;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .bar-wrapper {
                max-width: calc((100% - 17 * 0.5px) / 18); /* Account for 0.5px gaps */
            }
            
            .bar {
                max-height: 100px !important;
            }
            
            .time-label {
                font-size: 7px;
                transform: rotate(-50deg);
                margin-top: 2px;
                height: 14px;
            }
            
            .percent-label {
                font-size: 7px;
                top: -12px;
                display: none; /* Hide percentage labels on very small screens */
            }
            
            .popular-times-header button {
                padding: 6px 8px !important;
                font-size: 11px !important;
                flex: 1;
                min-width: 0;
            }
            
            .popular-times-header .flex {
                gap: 4px;
            }
            
            .day-indicator {
                font-size: 14px;
                padding-top: 8px;
            }
            
            .day-indicator > div:first-child {
                font-size: 16px;
            }
            
            .day-indicator > div:last-child {
                font-size: 12px;
                margin-top: 2px;
            }
            
            .popular-times-legend .flex:first-child > div {
                flex: 1;
                justify-content: center;
                min-width: 0;
            }
            
            .popular-times-legend .flex:first-child > div span {
                font-size: 11px;
            }
        }        @media (max-width: 320px) {
            .popular-times-chart {
                width: 100%;
                max-width: 100%;
                margin: 0;
                padding: 0;
            }
            
            .bars-container {
                height: 120px !important;
                padding: 6px 1px;
                gap: 0px !important; /* Remove gaps on very small screens */
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .bar-wrapper {
                max-width: calc(100% / 18) !important; /* No gap calculation needed */
                min-width: 8px; /* Ensure minimum visibility */
            }
            
            .bar {
                max-height: 80px !important;
            }
            
            .time-label {
                font-size: 6px;
                transform: rotate(-55deg);
            }
            
            .popular-times-header button {
                font-size: 10px !important;
                padding: 4px 6px !important;
            }
        }
            
            .popular-times-header button {
                font-size: 12px;
                padding: 6px 12px;
            }
            
            .popular-times-legend .flex {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .popular-times-legend .flex:first-child .space-x-4 {
                flex-wrap: wrap;
                gap: 8px;
            }
        
        /* Tooltip styles */
        .hour-tooltip {
            animation: fadeInTooltip 0.2s ease-out;
            pointer-events: none !important;
        }
        
        /* Magazine-style page enhancements */
        .about-magazine-hero,
        .contact-magazine-hero {
            position: relative;
            background: linear-gradient(135deg, #fff7e6 0%, #ffe0e0 100%);
            transition: all 0.3s ease;
        }
        
        /* Ensure consistency with main magazine design */
        .magazine-content .content-card {
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        /* Enhanced responsive behavior */
        @media (max-width: 768px) {
            .magazine-content {
                padding: 0 15px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .story-grid,
            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }