:root {
    --primary-red: #dc2626;
    --primary-black: #1a1a1a;
    --primary-yellow: #fbbf24;
    --primary-blue: #2563eb;
    
    --red-light: #fca5a5;
    --red-dark: #991b1b;
    --black-light: #404040;
    --black-dark: #0a0a0a;
    --yellow-light: #fde68a;
    --yellow-dark: #d97706;
    --blue-light: #93c5fd;
    --blue-dark: #1d4ed8;
    
    --light-bg: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.98);
    --card-dark: rgba(26, 26, 26, 0.95);
    --text-dark: #1a1a1a;
    --text-light: #404040;
    --text-muted: #6b7280;
    --text-white: #ffffff;
    
    --gradient-main: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-black) 50%, var(--primary-yellow) 100%);
    --gradient-card: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    --gradient-bg: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-black) 25%, var(--primary-yellow) 50%, var(--primary-blue) 75%, var(--primary-black) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    --gradient-cool: linear-gradient(135deg, var(--primary-blue), var(--primary-black));
    
    --shadow-soft: 0 8px 32px rgba(220, 38, 38, 0.1);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 25px 50px rgba(220, 38, 38, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-bg);
    background-size: 400% 400%;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    animation: gradientShift 15s ease infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.header {
    background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 50%, #fbbf24 100%);
    color: var(--text-white);
    padding: 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: scan 5s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.logo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.header h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.slogan {
    font-size: 1.4em;
    color: var(--text-white);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.contact-info {
    padding: 60px 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(37, 99, 235, 0.2);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #fbbf24, #2563eb);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.contact-card h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-red);
}

.address {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-numbers a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 16px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.phone-numbers a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.phone-numbers a:hover::before {
    left: 100%;
}

.phone-numbers a:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.delivery-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.delivery-platform {
    background: var(--gradient-card);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.delivery-platform:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.menu {
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
}

.category {
    margin-bottom: 60px;
    position: relative;
}

.category-title {
    background: var(--gradient-main);
    color: var(--text-white);
    padding: 25px 30px;
    margin: 0 -30px 40px -30px;
    font-size: 1.6em;
    font-weight: 800;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    color: var(--text-white);
    border-color: var(--text-white);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Mobile Dropdown Styles */
.mobile-category-dropdown {
    display: none;
    position: relative;
    margin-bottom: 20px;
    padding: 0 15px;
}

.mobile-dropdown-btn {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mobile-dropdown-btn:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary-red);
}

.mobile-dropdown-btn.active {
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    color: var(--text-white);
    border-color: var(--text-white);
}

.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.mobile-dropdown-menu.show {
    display: block;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-dropdown-item {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background: rgba(220, 38, 38, 0.1);
}

.mobile-dropdown-item.active {
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    color: var(--text-white);
}

#mobileDropdownIcon {
    transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active #mobileDropdownIcon {
    transform: rotate(180deg);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-card);
    background-size: 200% 200%;
    transform: scaleY(0);
    transition: transform 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.menu-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.menu-item:hover::before {
    transform: scaleY(1);
}

.item-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    position: relative;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-name {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    margin-right: 20px;
    line-height: 1.3;
}

.item-price {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-red);
    text-align: right;
    white-space: nowrap;
}

.no-price {
    color: var(--text-light);
    font-style: italic;
    font-weight: 600;
}

.item-weight {
    font-size: 0.85em;
    color: var(--text-white);
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-weight::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 ease;
}

.item-weight:hover::before {
    left: 100%;
}

.item-weight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.item-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.2em;
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.star.empty {
    color: #e0e0e0;
}

.rating-text {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.special-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    color: var(--text-white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.4);
    border: 2px solid var(--text-white);
    z-index: 10;
    min-width: 20px;
    text-align: center;
}

.footer {
    background: var(--gradient-main);
    color: var(--text-white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-card);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-text {
    font-size: 1em;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-text p:first-child {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.google-business-btn, .call-btn {
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.google-business-btn {
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    color: var(--text-white);
}

.google-business-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    border-color: var(--text-white);
}

.call-btn {
    background: linear-gradient(135deg, #2563eb, #1a1a1a);
    color: var(--text-white);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    border-color: var(--text-white);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float-around 15s infinite linear;
    filter: blur(1px);
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 5%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.3), transparent);
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 5%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.3), transparent);
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 20%;
    background: radial-gradient(circle, rgba(191, 0, 255, 0.3), transparent);
    animation-delay: -7s;
}

@keyframes float-around {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg) scale(1.1); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg) scale(0.9); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg) scale(1.05); 
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .container {
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
    
    .header {
        padding: 40px 20px;
        margin: 0;
        border-radius: 0;
    }
    
    .header h1 {
        font-size: 2.2em;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .contact-info {
        padding: 40px 15px;
        margin: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu {
        padding: 30px 0;
        margin: 0;
    }
    
    .category-filter {
        display: none;
    }
    
    .mobile-category-dropdown {
        display: block;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9em;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }
    
    .menu-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        width: 100%;
    }
    
    .category-title {
        margin: 0 -20px 20px -20px;
        padding: 15px 20px;
        font-size: 1.2em;
    }
    
    .footer {
        margin: 0;
        border-radius: 0;
    }
    
    .footer-content {
        gap: 20px;
        padding: 30px 15px;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .google-business-btn, .call-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8em;
    }
    
    .slogan {
        font-size: 1.1em;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .item-image {
        width: 100%;
        height: 200px;
        align-self: center;
        border-radius: 15px 15px 0 0;
        object-fit: cover;
    }
    
    .item-content {
        width: 100%;
        padding: 20px;
    }
    
    .item-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .item-price {
        text-align: center;
    }
}

