body { -webkit-tap-highlight-color: transparent; }
.hover-lift { transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67); }
.hover-lift:hover { transform: translateY(-4px); }
::selection { background: #AE4839; color: white; }

.announcement-bar {
    background: #000;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 0;
    font-weight: 600;
}

.hero-title {
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.food-card img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.food-card:hover img {
    transform: scale(1.08);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.menu-nav-item { position: relative; }
.menu-nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #AE4839;
    transition: width 0.3s ease;
}
.menu-nav-item:hover::after { width: 100%; }

.product-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.product-card h3,
.product-card h4 {
    color: #1a1a1a;
    line-height: 1.2;
}

/* Footer Styles */
footer a {
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #AE4839;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

footer a:hover::after {
    width: 100%;
}

footer h3 {
    position: relative;
    display: inline-block;
}

footer ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    footer {
        text-align: left;
    }
    
    footer .grid {
        row-gap: 2rem;
    }
}