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

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #2c3e50;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #f1f3f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 15px 0;
}

#logo {
    height: 30dvh;
    max-height: 120px;
    width: auto;
}

main {
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0 60px;
    margin-bottom: 40px;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand-highlight {
    color: #9a0f1d;
    background: linear-gradient(135deg, #9a0f1d, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #9a0f1d, #ff6b6b);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(154, 15, 29, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(154, 15, 29, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid #9a0f1d;
    color: #9a0f1d;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #9a0f1d;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-kebab-icon {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kebab-layer {
    position: absolute;
    color: rgba(154, 15, 29, 0.1);
    font-size: 15rem;
    animation: pulse 3s infinite;
}

.kebab-emoji {
    font-size: 8rem;
    z-index: 2;
    position: relative;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

/* Special Offers Section */
.special-offers {
    background: radial-gradient(#ad242d 7.56%, #ce4146 57.56%);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.special-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.offers-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.offers-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.offer-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    backdrop-filter: blur(10px);
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.offer-item.featured {
    border-color: #ffd700;
    animation: glow 2s infinite alternate;
}

.offer-item.premium {
    border-color: #9c27b0;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
}

.offer-badge.premium {
    background: #9c27b0;
    box-shadow: 0 4px 10px rgba(156, 39, 176, 0.4);
}

.offer-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 10px;
}

.offer-content p {
    color: #636e72;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    font-size: 1rem;
    color: #636e72;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    font-size: 2rem;
    color: #00b894;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 184, 148, 0.3);
}

.savings {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: white;
}

/* Menu Navigation */
.menu-navigation {
    margin-bottom: 40px;
    padding: 0 1rem;
}

.menu-nav-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-nav-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.menu-nav-scroll::-webkit-scrollbar {
    display: none;
}

.menu-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 85px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
    margin-top: 1dvh;
}

.menu-nav-item i {
    font-size: 1.2rem;
    color: #636e72;
    transition: all 0.3s ease;
}

.menu-nav-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.menu-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 15, 29, 0.2);
    border-color: rgba(154, 15, 29, 0.3);
}

.menu-nav-item:hover i {
    color: #9a0f1d;
}

.menu-nav-item:hover span {
    color: #9a0f1d;
}

.menu-nav-item.active {
    background: linear-gradient(135deg, #9a0f1d, #ff6b6b);
    border-color: #9a0f1d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(154, 15, 29, 0.3);
}

.menu-nav-item.active i,
.menu-nav-item.active span {
    color: white;
}

/* Menu Grid Animation */
.menu-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.menu-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.menu-header {
    margin-bottom: 50px;
}

.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    color: #636e72;
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 1rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(154, 15, 29, 0.3);
}


.item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::before {
    content: '🥙';
    font-size: 2rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.item-info {
    flex: 1;
    color: #2c3e50;
}

.item-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
    letter-spacing: 0.3px;
}

.item-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #636e72;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #9a0f1d, #ff6b6b);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(154, 15, 29, 0.3);
    transition: all 0.3s ease;
}

.price:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(154, 15, 29, 0.4);
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    opacity: 0.9;
}

/* Navigation Menu */
.menu {
    position: relative;
}

.nav-menu {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.menu .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.menu .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hamburger Button */
.hamburger-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}

.map-section h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
}

.locations-overview p {
    color: #636e72;
    font-size: 1.1rem;
}

.location-summary-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 3px solid #9a0f1d;
}

.location-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-summary-card.featured {
    border-top-color: #ffd700;
    background: linear-gradient(135deg, #fff, #fffbf0);
}

.location-summary-card .location-badge {
    display: none;
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ffd700;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.location-summary-card .location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9a0f1d, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-summary-card .location-icon i {
    color: white;
    font-size: 1.2rem;
}

.location-summary-card h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.location-summary-card .address {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.location-summary-card .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9a0f1d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    background: rgba(154, 15, 29, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.location-summary-card .phone-link:hover {
    background: #9a0f1d;
    color: white;
    transform: scale(1.05);
}

.general-info .info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
}

.general-info .info-card p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2c3e50;
}

.general-info .info-card i {
    color: #9a0f1d;
    margin-right: 8px;
}

.general-info .info-card a {
    color: #9a0f1d;
    text-decoration: none;
    font-weight: 600;
}

.general-info .info-card a:hover {
    text-decoration: underline;
}

/* Quick Status Row */
.quick-status-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.quick-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.quick-status:hover {
    transform: scale(1.05);
}

.location-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background: #00b894;
    animation: pulse-green 2s infinite;
}

.status-dot.closed {
    background: #e74c3c;
}

.quick-status .status-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.quick-status .status-text.open {
    color: #00b894;
}

.quick-status .status-text.closed {
    color: #e74c3c;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #2c3e50;
}

.contact-info i {
    color: #9a0f1d;
    margin-right: 8px;
}

@media (max-width: 768px) {

    #logo {
        height: 10dvh;
        max-height: 120px;
        width: auto;
    }
    
    /* Mobile Hero Section */
    .hero-section {
        padding: 50px 0 40px;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-kebab-icon {
        width: 150px;
        height: 150px;
    }
    
    .kebab-layer {
        font-size: 12rem;
    }
    
    .kebab-emoji {
        font-size: 6rem;
    }
    
    /* Mobile Header Layout */
    .menu {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .mobile-cta-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .mobile-cta-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(220, 53, 69, 0.3);
    }
    
    /* Mobile Navigation - Hamburger Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .btn {
        width: 100%;
        margin-bottom: 15px;
        padding: 15px;
        font-size: 1rem;
        border-radius: 8px;
        text-align: center;
    }
    
    /* Mobile Map Section */
    .map-section {
        padding: 40px 0;
    }
    
    .location-summary-card {
        padding: 1rem;
    }
    
    .location-summary-card .location-icon {
        width: 40px;
        height: 40px;
    }
    
    .location-summary-card .location-icon i {
        font-size: 1rem;
    }
    
    .location-summary-card h4 {
        font-size: 1.1rem;
    }
    
    .location-summary-card .address {
        font-size: 0.9rem;
    }
    
    .location-summary-card .phone-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .general-info .info-card {
        padding: 1rem;
        width: 100%;
    }
    
    .general-info .info-card p {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-info {
        padding: 15px;
        text-align: left;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Mobile Menu Navigation */
    .menu-nav-container {
        padding: 10px;
        margin: 0 -10px;
    }
    
    .menu-nav-item {
        min-width: 70px;
        padding: 10px 12px;
        gap: 4px;
    }
    
    .menu-nav-item i {
        font-size: 1rem;
    }
    
    .menu-nav-item span {
        font-size: 0.7rem;
    }
    
    .menu-section {
        padding: 50px 0;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .item-image {
        width: 100px;
        height: 100px;
    }
    
    .image-placeholder::before {
        font-size: 2.5rem;
    }
    
    .item-info h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    /* Mobile Special Offers */
    .offers-title {
        font-size: 2rem;
    }
    
    .offers-subtitle {
        font-size: 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .offer-item {
        padding: 20px;
    }
    
    .offer-content h3 {
        font-size: 1.2rem;
    }
    
    .new-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    main {
        padding: 0;
    }
    
    /* Very Small Mobile Hero */
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-kebab-icon {
        width: 120px;
        height: 120px;
    }
    
    .kebab-layer {
        font-size: 10rem;
    }
    
    .kebab-emoji {
        font-size: 5rem;
    }
    
    /* Very Small Mobile */
    .mobile-cta-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .menu {
        gap: 10px;
    }
    
    /* Very Small Mobile Map */
    .map-section {
        padding: 30px 0;
    }
    
    .map-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .locations-overview p {
        font-size: 0.95rem;
    }
    
    .location-summary-card {
        padding: 0.8rem;
    }
    
    .location-summary-card .location-icon {
        width: 35px;
        height: 35px;
    }
    
    .location-summary-card .location-icon i {
        font-size: 0.9rem;
    }
    
    .location-summary-card h4 {
        font-size: 1rem;
    }
    
    .location-summary-card .address {
        font-size: 0.85rem;
    }
    
    .location-summary-card .phone-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .general-info .info-card {
        padding: 0.8rem;
    }
    
    .general-info .info-card p {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .contact-info {
        padding: 12px;
    }
    
    .contact-info p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .menu-item {
        padding: 12px;
    }
    
    .item-info h3 {
        font-size: 1.1rem;
    }
    
    .item-info p {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.2rem;
        padding: 4px 10px;
    }

    /* Very Small Mobile Special Offers */
    .special-offers {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .offers-title {
        font-size: 1.8rem;
    }
    
    .offers-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .offer-item {
        padding: 15px;
    }
    
    .offer-content h3 {
        font-size: 1.1rem;
    }
    
    .offer-content p {
        font-size: 0.9rem;
    }
    
    .new-price {
        font-size: 1.6rem;
    }
    
    .old-price {
        font-size: 0.9rem;
    }
    
    .savings {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}