/* =========================================
   BLUM Restaurant - Premium Fast Food CSS
   ========================================= */

:root {
    --primary: #dc143c;
    --primary-dark: #8b0000;
    --primary-glow: rgba(220, 20, 60, 0.6);
    --bg-dark: #0f0f0f;
    --bg-darker: #080808;
    --bg-card: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #333333;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(90deg, #ff4d4d, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 15px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background: var(--primary);
    box-shadow: 0 10px 20px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-glow {
    box-shadow: 0 0 15px var(--primary-glow);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px var(--primary-glow); }
    50% { box-shadow: 0 0 30px rgba(220, 20, 60, 0.8); }
    100% { box-shadow: 0 0 15px var(--primary-glow); }
}

.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-circle:hover {
    transform: scale(1.1);
    background: white;
    color: var(--primary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.cart-btn:hover {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-card);
    padding: 40px;
    transition: var(--transition);
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

.close-menu {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.15) 0%, var(--bg-dark) 80%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary);
    border: 1px solid rgba(220, 20, 60, 0.5);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.timer-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    width: fit-content;
}

.timer-label { font-weight: 600; }
.timer-clock { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: 2px;}

.hero-btn-group {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate(2deg);
    transition: var(--transition);
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(2deg); }
}

.floating-badge {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.badge-top-right {
    top: 50px;
    right: -30px;
    animation: float 5s ease-in-out infinite alternate;
}

.badge-bottom-left {
    bottom: 50px;
    left: -30px;
    animation: float 7s ease-in-out infinite alternate-reverse;
}

.floating-badge .icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.badge-text strong { display: block; font-size: 1.1rem; }
.badge-text span { font-size: 0.8rem; color: var(--text-muted); }

/* Sections Common */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Deals Section */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.deal-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(220, 20, 60, 0.3);
}

.deal-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.deal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.deal-card:hover .deal-img-wrapper img {
    transform: scale(1.1) rotate(-2deg);
}

.deal-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.deal-info {
    padding: 25px;
}

.deal-info h3 { font-size: 1.5rem; margin-bottom: 10px; }
.deal-info p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }

.deal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price del {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 10px;
    font-weight: 400;
}

/* Menu Section */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.cat-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: var(--transition);
}

.cat-btn.active, .cat-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.menu-item:hover .menu-img {
    transform: scale(1.05);
}

.menu-content h4 { font-size: 1.3rem; margin-bottom: 10px; }
.menu-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; height: 45px; }

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.menu-price {
    font-size: 1.3rem;
    font-weight: 800;
}

/* Guarantee / Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Reviews */
.reviews-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
}

.review-card {
    flex: 0 0 350px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    scroll-snap-align: start;
    border: 1px solid rgba(255,255,255,0.05);
}

.stars { color: #ffc107; margin-bottom: 15px; }

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.rev-details h4 { font-size: 1.1rem; }
.rev-details span { font-size: 0.85rem; color: var(--text-muted); }

/* Map & Contact */
.map-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 { margin-bottom: 30px; font-size: 2.5rem; }

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-block i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.info-block h4 { margin-bottom: 5px; font-size: 1.2rem; }
.info-block p { color: var(--text-muted); }

.order-direct-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Components & Extras */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulseGlowWA 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes pulseGlowWA {
    0% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 30px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: absolute;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--bg-card);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow-y: auto;
}

.modal-overlay.active .cart-sidebar {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-modal {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-info h4 { font-size: 1rem; margin-bottom: 5px;}
.cart-item-price { color: var(--primary); font-weight: 700; }
.remove-item { background: transparent; border: none; color: var(--text-muted); cursor: pointer; }
.remove-item:hover { color: var(--primary); }

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 50px;
}

.cart-summary {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.summary-line.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

.checkout-form h3 { margin-bottom: 15px; font-size: 1.2rem;}

.form-group { margin-bottom: 15px; }

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

/* Exit Modal */
.exit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.exit-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    max-width: 800px;
    width: 90%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: var(--transition);
}

.exit-modal-overlay.active .exit-modal-content {
    transform: scale(1);
}

.exit-img {
    flex: 1;
}

.exit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exit-text {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exit-text h2 { font-size: 2rem; margin-bottom: 15px; color: var(--primary); }
.exit-text p { font-size: 1.1rem; margin-bottom: 30px; line-height: 1.4; color: var(--text-muted); }

.close-exit {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.d-none-mobile { display: inline-flex; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container { grid-template-columns: 1fr 1fr; text-align: left; gap: 15px;}
    .hero-content { display: flex; flex-direction: column; align-items: flex-start; }
    .hero-subtitle { margin: 0 auto 30px; }
    
    .map-contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links, .footer-links ul { align-items: center; justify-content: center; }
    
    .exit-modal-content { flex-direction: column; }
    .exit-img { height: 200px; }
    .exit-text { padding: 30px 20px; text-align: center; }
}

@media (max-width: 768px) {
    .d-none-mobile { display: none !important; }
    .nav-list { display: none; }
    .menu-toggle { display: block; }
    
    .logo-img { height: 90px; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { align-items: center; }
    .hero-image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero { padding-top: 120px; }
    
    .section { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
    
    .floating-badge { padding: 10px; }
    .floating-badge .icon-box { width: 30px; height: 30px; font-size: 1rem; }
    .badge-top-right { top: 10px; right: -10px; }
    .badge-bottom-left { bottom: 10px; left: -10px; }
    
    .deals-grid, .menu-grid, .features-grid { grid-template-columns: 1fr; }
}
