:root {
    --main-color: #FF6B6B;
    --secondary-color: #FF8E8E;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --container-max-width: 1400px;
    --header-height-desktop: 140px;
    --header-height-mobile: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: var(--dark-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height-desktop);
    transition: padding-top 0.3s ease;
}

.img {
    object-fit: contain;
}

/* Header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 320px;
}

/* Кнопки */
.phone-btn{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: var(--gray-color);
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: max-content;
    max-width: 100%;
}

.cart-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: var(--gray-color);
    position: relative;
    transition: all 0.3s;
}

.phone-btn:hover, .cart-btn:hover {
    background-color: var(--main-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

.phone-btn i, .cart-btn i {
    margin-right: 8px;
    color: var(--main-color);
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
}

 .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--main-color);
            color: var(--light-color);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

/* Info */
.info-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    justify-content: center;
}

.info-btn {
    padding: 8px 15px;
    background-color: var(--gray-color);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.info-btn:hover {
    background-color: var(--main-color);
    color: var(--light-color);
}

/* Модальные окна */
.info-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1100;
    max-width: 90%;
    width: 400px;
    display: none;
}

.info-modal.active {
    display: block;
}

.info-modal h3 {
    margin-bottom: 15px;
    color: var(--main-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}

/* Tabs */
.nav-tabs {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    -webkit-overflow-scrolling: touch;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: var(--gray-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    min-width: 110px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    scroll-snap-align: start;
}
.tab-btn i {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--main-color);
}
.tab-btn:hover, .tab-btn.active {
    background-color: var(--main-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.tab-btn:hover i, .tab-btn.active i {
    color: var(--light-color);
}

        
        /* Main Content */
        main {
            flex: 1;
        }
        
        .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 30px 20px;
}
        
        /* Hits Section (Original Style) */
        .hits-section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
            color: #000;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .hits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        /* Subcategories Navigation */
        .subcategories-container {
            margin-bottom: 30px;
            overflow: hidden;
            position: relative;
        }

        .subcategories-nav {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 10px 5px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
            justify-content: flex-start;
        }

        .subcategories-nav::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .subcategory-btn {
            padding: 10px 20px;
            background-color: var(--gray-color);
            border: 2px solid transparent;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            color: var(--dark-color);
            scroll-snap-align: start;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .subcategory-btn:hover {
            background-color: #eee;
            transform: translateY(-2px);
        }

        .subcategory-btn.active {
            background-color: var(--main-color);
            color: white;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
            border-color: var(--main-color);
        }

        /* Desktop centering */
        @media (min-width: 992px) {
            .subcategories-nav {
                justify-content: center;
            }
        }
        
        .hit-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .hit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        
        .hit-image-container {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        
        .hit-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .hit-card:hover .hit-image {
            transform: scale(1.05);
        }
        
        .vegan-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #11A703;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .hit-content {
            padding: 20px;
        }
        
        .hit-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #222;
        }
        
        .hit-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.4;
            min-height: 60px;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 15px 0;
        }
        
        .hit-price {
            font-size: 24px;
            font-weight: 700;
            color: #F47C53;
        }
        
        .hit-gram {
            font-size: 20px;
            color: #999;
        }
        
        .hit-button {
            background: linear-gradient(to right, #F47C53, #FF6B6B);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            width: 100%;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hit-button:hover {
            background: linear-gradient(to right, #FF6B6B, #F47C53);
            box-shadow: 0 4px 12px rgba(244, 124, 83, 0.3);
        }
        
        .hit-button svg {
            margin-left: 8px;
        }
        
        .divider {
            border: none;
            height: 1px;
            background: #eee;
            margin: 15px 0;
        }
        
        /* Footer Styles */
        .site-footer {
            background: #1a1a1a;
            color: white;
            padding: 50px 0 20px;
            margin-top: auto;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .footer-logo img {
            height: 50px;
            width: auto;
        }
        
        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .footer-phone:hover {
            color: var(--main-color);
        }
        
        .footer-phone i {
            color: var(--main-color);
        }
        
        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .social-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        
        .social-link:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .payment-methods {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .payment-methods img {
            height: 25px;
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: all 0.3s;
        }
        
        .payment-methods img:hover {
            opacity: 1;
            transform: translateY(-2px);
        }
        
        .copyright {
            color: #aaa;
            font-size: 14px;
        }
        
        /* Responsive Styles */
/* Footer styles continue here... */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-about {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.footer-about strong {
    color: white;
}

.footer-menu-title {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--main-color);
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--main-color);
}

.footer-locations p {
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.delivery-highlight {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.delivery-highlight span {
    color: var(--main-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-menu-title {
        font-size: 16px;
    }
}
.tab-btn img.tab-icon {
    width: 24px;       /* Размер иконки */
    height: 24px;
    margin-bottom: 5px; /* Отступ снизу */
    object-fit: cover;  /* Чтобы изображение не искажалось */
}

/* --- Homepage Specific Styles --- */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    flex-grow: 1;
}

.main-button {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.button-image {
    height: 200px;
    overflow: hidden;
}

.button-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.main-button:hover .button-image img {
    transform: scale(1.05);
}

.button-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.button-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #222;
}

.button-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.button-action {
    color: #F47C53;
    font-weight: 600;
    margin-top: 15px;
}

.delivery-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.delivery-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.delivery-text {
    color: #666;
    font-size: 16px;
}

/* Info Buttons Styles */
.info-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.info-btn {
    padding: 12px 20px;
    background-color: var(--gray-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-color);
}

.info-btn:hover {
    background-color: var(--main-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.info-btn i {
    font-size: 16px;
}

/* Info Modal Styles */
.info-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1100;
    max-width: 90%;
    width: 400px;
    display: none;
}

.info-modal.active {
    display: block;
}

.info-modal-content {
    position: relative;
}

.info-modal h3 {
    margin-bottom: 15px;
    color: var(--main-color);
}

.info-modal p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.highlight {
    font-weight: bold;
    color: var(--main-color);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}

/* --- Cart Specific Styles --- */
.cart-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-items {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 20px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-item-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #F47C53;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    height: 30px;
    box-sizing: border-box;
}

.quantity-btn:hover {
    background: #ddd;
}

.remove-item {
    color: #ff6b6b;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
    padding: 5px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    color: #ff4747;
    transform: scale(1.1);
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.checkout-form {
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-label.required-field::after {
    content: " *";
    color: #ff6b6b;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.checkout-btn {
    background: linear-gradient(to right, #F47C53, #FF6B6B);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: linear-gradient(to right, #FF6B6B, #F47C53);
    box-shadow: 0 4px 12px rgba(244, 124, 83, 0.3);
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.continue-shopping {
    display: inline-block;
    padding: 12px 25px;
    background: #F47C53;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping:hover {
    background: #FF6B6B;
}

.delivery-section {
    margin: 20px 0;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
}

.delivery-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.delivery-option {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--gray-color);
    border-radius: 6px;
    border: 2px solid #ddd;
}

.delivery-option.active {
    background: var(--main-color);
    color: var(--light-color);
    border-color: var(--main-color);
}

.delivery-option input {
    display: none;
}

.delivery-fields {
    display: none;
    margin-top: 15px;
}

.delivery-fields.active {
    display: block;
}

.city-selector {
    margin-bottom: 20px;
    display: none;
    transition: all 0.3s ease;
}

.city-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.city-option {
    flex: 1 0 calc(33.333% - 10px);
    min-width: 120px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--gray-color);
    border-radius: 6px;
    border: 2px solid #ddd;
}

.city-option.active {
    background: var(--main-color);
    color: var(--light-color);
    border-color: var(--main-color);
}

.city-option input {
    display: none;
}

.confirmation-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.confirmation-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: bounce 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* ==========================================================================
   RESPONSIVE DESIGN (Consolidated & Enhanced)
   ========================================================================== */

/* Large Screens (> 1400px) */
@media (min-width: 1400px) {
    .container, .header-container {
        max-width: 1400px;
    }
    .hits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .buttons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets & Small Laptops (769px - 1024px) */
@media (max-width: 1024px) {
    .hits-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
    .buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --header-height-mobile: 110px;
    }
    
    body {
        padding-top: var(--header-height-mobile);
    }

    .header-container {
        padding: 0 15px;
        min-width: 0;
    }

    .logo img {
        height: 40px;
    }

    .phone-btn, .cart-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .tabs-container {
        justify-content: flex-start;
        padding: 10px 10px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .buttons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Standard Mobile (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --header-height-mobile: 100px;
    }

    .header-wrapper {
        padding: 8px 0;
    }

    .header-container {
        padding: 0 10px;
        gap: 5px;
    }

    .logo img {
        height: 35px;
    }

    .phone-btn, .cart-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .phone-btn i, .cart-btn i {
        margin-right: 5px;
    }

    .tab-btn {
        min-width: 90px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .remove-item {
        font-size: 28px;
        margin-left: 10px;
        padding: 8px;
    }
}

/* X-Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .phone-btn span, .cart-btn span {
        display: none;
    }
    .phone-btn i, .cart-btn i {
        margin-right: 0;
        font-size: 18px;
    }
}
