/* =============================================
   EATERZ – style.css  (Figma-matched, improved)
   ============================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none
}

/* ---- CSS Variables ---- */
:root {
    --red: #E53935;
    --red-dark: #c62828;
    --black: #111111;
    --gray-light: #f7f7f7;
    --gray-mid: #e0e0e0;
    --text-muted: #666;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.14);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.28s ease;
    --container: 1280px;
    --header-h: 90px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 32px
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap
}

.btn--red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.35)
}

.btn--red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.45)
}

.btn--full {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 11px
}

/* Ripple */
.ripple {
    position: relative;
    overflow: hidden
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleAnim 0.55s linear;
    pointer-events: none
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0
    }
}

/* ---- Section commons ---- */
.section {
    padding-block: 80px
}

.section__eyebrow {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--red);
    margin-bottom: 10px;
    text-transform: uppercase
}

.section__heading {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 52px;
    color: #111
}

/* ---- Scroll animations ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0)
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow var(--transition), background var(--transition)
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12)
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo__img {
    height: 60px; /* adjust as needed */
    width: auto;
    display: block;
}

.logo__content {
    display: flex;
    flex-direction: column;
}

.logo__text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.logo__sub {
    font-size: 11px;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 4px;
}




.nav {
    margin-inline: auto
}

.nav__list {
    display: flex;
    gap: 32px
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition)
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: width var(--transition)
}

.nav__link:hover {
    color: var(--red)
}

.nav__link:hover::after {
    width: 100%
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto
}
.footer__col--app {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-badge img {
    width: 160px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.store-badge:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .store-badge img {
        width: 140px;
    }
}
.location-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--black);
    background: var(--gray-light);
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid var(--gray-mid);
    transition: background var(--transition);
    white-space: nowrap
}

.location-btn:hover {
    background: var(--gray-mid)
}

.location-btn i:first-child {
    color: var(--red)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition)
}

/* =============================================
   HERO  — Figma-matched full-bleed layout
   ============================================= */
.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f3f0;
    overflow: hidden;
}

/* Full-bleed food image on the right ~55% */
.hero__bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    background: url('asset/banner.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

/* Soft left-to-right fade so text stays readable */
.hero__bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f5f3f0 0%, #f5f3f0 10%, rgba(245, 243, 240, 0.85) 30%, rgba(245, 243, 240, 0.1) 100%);
}

.hero__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 0;
}

/* Left Content */
.hero__content {
    max-width: 580px
}

.hero__eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 18px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero__headline {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    color: #000;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero__headline--red {
    color: var(--red)
}

.hero__divider {
    width: 50px;
    height: 4px;
    background: var(--red);
    border-radius: 4px;
    margin-bottom: 28px
}

.hero__features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
    margin-bottom: 36px;
}

.hero__features li {
    font-size: 0.92rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero__features i {
    color: var(--red);
    font-size: 0.85rem
}

.hero__search {
    max-width: 480px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 28px;
    transition: box-shadow var(--transition);
}

.hero__search:focus-within {
    box-shadow: 0 8px 32px rgba(229, 57, 53, 0.18)
}

.hero__search-icon {
    color: var(--red);
    font-size: 16px;
    margin-left: 12px;
    flex-shrink: 0
}

.hero__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #333;
    background: transparent
}

.hero__input::placeholder {
    color: #aaa
}

.hero__btn {
    border: none;
    background: var(--red);
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: inherit;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition)
}

.hero__btn:hover {
    background: var(--red-dark);
    transform: scale(1.02)
}

.hero__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center
}

.hero__cities span {
    font-weight: 600;
    color: #555;
    font-size: 0.85rem
}

.hero__cities a {
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition)
}

.hero__cities a:hover {
    opacity: 0.7
}

/* Right visual / badge area */
.hero__visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero__badge {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-60%);
    width: 140px;
    height: 140px;
    border: 3px solid var(--red);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(229, 57, 53, 0.25);
    animation: floatBadge 3s ease-in-out infinite;
    backdrop-filter: blur(4px);
}

.hero__badge-inner {
    text-align: center;
    line-height: 1
}

.hero__badge-top {
    display: block;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--red)
}

.hero__badge-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--red);
    margin: 6px 0
}

.hero__badge-bot {
    display: block;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--red)
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(-60%)
    }

    50% {
        transform: translateY(calc(-60% - 12px))
    }
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories {
    background: #fff
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.cat-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition)
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover)
}

.cat-card__img-wrap {
    height: 200px;
    overflow: hidden;
    background: var(--gray-light)
}

.cat-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.cat-card:hover .cat-card__img-wrap img {
    transform: scale(1.07)
}

.cat-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px
}

.cat-card__body h3 {
    font-size: 1rem;
    font-weight: 700
}

.cat-card__arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition)
}

.cat-card:hover .cat-card__arrow {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: translateX(3px)
}

/* =============================================
   WHY EATERZ / PROMISE
   ============================================= */
.promise {
    background: var(--gray-light)
}

.promise__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px
}

.promise-card {
    text-align: center;
    padding: 36px 16px 28px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden
}

.promise-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: center
}

.promise-card:hover::before {
    transform: scaleX(1)
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.promise-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red);
    margin: 0 auto 18px;
    transition: background var(--transition), color var(--transition), transform var(--transition)
}

.promise-card:hover .promise-card__icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.08)
}

.promise-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px
}

.promise-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6
}

/* =============================================
   APP DOWNLOAD — Figma-matched with leaf decor
   ============================================= */
.app-section {
    position: relative;
    overflow: hidden;
    padding-block: 80px;
    background: linear-gradient(135deg, #E53935 0%, #b71c1c 100%);
}

/* SVG leaf decorations (inline, no external images needed) */
.app-section__leaf {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.app-section__leaf--tl {
    top: -10px;
    left: -10px;
    width: 200px;
    opacity: 0.85
}

.app-section__leaf--br {
    bottom: -10px;
    right: -10px;
    width: 220px;
    opacity: 0.85;
    transform: rotate(180deg)
}

/* Subtle circle pattern bg */
.app-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.app-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 200px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.app-section__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Phone mockup */
.phone-mockup {
    width: 200px;
    background: #fff;
    border-radius: 28px;
    padding: 10px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-mockup__notch {
    width: 70px;
    height: 14px;
    background: #111;
    border-radius: 0 0 10px 10px;
    margin: 0 auto 10px;
}

.phone-mockup__screen {
    background: #f5f5f5;
    border-radius: 18px;
    padding: 14px 10px;
    min-height: 320px;
    overflow: hidden;
}

.phone-logo {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--red);
    font-style: italic;
    margin-bottom: 6px
}

.phone-tagline {
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 10px
}

.phone-categories {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.phone-categories span {
    background: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.5rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08)
}

.phone-bestseller {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px
}

.phone-products {
    display: flex;
    gap: 5px
}

.phone-product-card {
    flex: 1;
    height: 55px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    position: relative
}

.phone-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* App text */
.app-section__text {
    color: #fff
}

.app-section__text h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.1
}

.app-section__text p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7
}

.store-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.store-btn:hover {
    background: #000;
    transform: translateY(-2px)
}

.store-btn i {
    font-size: 1.5rem
}

.store-btn small {
    font-size: 0.62rem;
    font-weight: 400;
    opacity: 0.75;
    display: block
}

/* QR */
.app-section__qr {
    text-align: center;
    color: #fff
}

.qr-box {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3)
}

.app-section__qr p {
    font-size: 0.78rem;
    opacity: 0.85;
    font-weight: 600;
    letter-spacing: 0.5px
}

/* =============================================
   BEST SELLERS
   ============================================= */
.bestsellers {
    background: #fff
}

.slider-wrap {
    position: relative
}

.slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px
}

.slider::-webkit-scrollbar {
    display: none
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    flex: 0 0 calc((100% - 4*24px)/5);
    min-width: 200px;
    scroll-snap-align: start;
    transition: transform var(--transition), box-shadow var(--transition)
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover)
}

.product-card__img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--gray-light)
}

.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.08)
}

.product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px
}

.product-card__body {
    padding: 16px
}

.product-card__body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px
}

.product-card__weight {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.price--current {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black)
}

.price--old {
    font-size: 0.78rem;
    color: #aaa;
    text-decoration: line-through
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 10;
    transition: background var(--transition), color var(--transition), transform var(--transition)
}

.slider-btn:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-50%) scale(1.08)
}

.slider-btn--prev {
    left: -23px
}

.slider-btn--next {
    right: -23px
}

/* =============================================
   TRUST BADGES
   ============================================= */
.trust {
    background: var(--gray-light);
    padding-block: 48px;
    border-top: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid)
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition)
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover)
}

.trust-item i {
    font-size: 1.6rem;
    color: var(--red);
    flex-shrink: 0
}

.trust-item p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted)
}

.trust-item strong {
    color: var(--black)
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #aaa
}

.footer__top {
    display: grid;
    grid-template-columns: 260px repeat(3, 1fr) 200px;
    gap: 48px;
    padding-block: 60px
}

.footer__brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-block: 16px;
    color: #888
}

.footer__social {
    display: flex;
    gap: 12px
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #888;
    transition: background var(--transition), color var(--transition), border-color var(--transition)
}

.footer__social a:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red)
}

.footer__col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
    margin-bottom: 18px
}

.footer__col ul li {
    margin-bottom: 10px
}

.footer__col ul a {
    font-size: 0.82rem;
    color: #888;
    transition: color var(--transition), padding-left var(--transition)
}

.footer__col ul a:hover {
    color: var(--red);
    padding-left: 4px
}

.footer__col--app {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer__col--app .store-btn {
    width: 100%
}

.footer__bottom {
    border-top: 1px solid #222;
    padding-block: 20px;
    text-align: center;
    font-size: 0.78rem;
    color: #555
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:1366px) {
    :root {
        --container: 1100px
    }

    .promise__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer__top {
        grid-template-columns: 220px repeat(3, 1fr) 180px;
        gap: 32px
    }
}

@media(max-width:1024px) {
    .hero__bg-image {
        width: 100%;
        opacity: 0.15
    }

    .hero__inner {
        grid-template-columns: 1fr
    }

    .hero__visual {
        display: none
    }

    .hero {
        min-height: auto;
        padding-block: 90px
    }

    .categories__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .promise__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .app-section__inner {
        grid-template-columns: 1fr 1fr
    }

    .app-section__phone {
        display: none
    }

    .app-section__qr {
        justify-self: end
    }

    .product-card {
        flex: 0 0 calc(50% - 12px)
    }

    .trust__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer__top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px
    }

    .footer__brand {
        grid-column: 1 / -1
    }

    .footer__col--app {
        grid-column: 3/4
    }
}

@media(max-width:768px) {
    :root {
        --header-h: 70px
    }

    .nav {
        display: none;
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: #fff;
        z-index: 999;
        flex-direction: column;
        padding: 32px 24px
    }

    .nav.open {
        display: flex
    }

    .nav__list {
        flex-direction: column;
        gap: 24px
    }

    .nav__link {
        font-size: 1.1rem
    }

    .hamburger {
        display: flex
    }

    .location-btn {
        display: none
    }

    .section {
        padding-block: 56px
    }

    .hero__features {
        grid-template-columns: 1fr 1fr
    }

    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .promise__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .app-section__inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .app-section__phone {
        display: none
    }

    .store-btns {
        justify-content: center
    }

    .app-section__qr {
        justify-self: center
    }

    .product-card {
        flex: 0 0 calc(50% - 12px)
    }

    .slider-btn--prev {
        left: 0
    }

    .slider-btn--next {
        right: 0
    }

    .trust__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer__top {
        grid-template-columns: 1fr 1fr
    }

    .footer__brand {
        grid-column: 1 / -1
    }

    .footer__col--app {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap
    }
}

@media(max-width:480px) {
    .logo__text {
        font-size: 1.5rem
    }

    .hero__headline {
        font-size: 2.8rem
    }

    .hero__features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        font-size: 0.8rem
    }

    .hero__search {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 12px 16px
    }

    .hero__search .btn,
    .hero__btn {
        width: 100%;
        justify-content: center
    }

    .categories__grid {
        grid-template-columns: 1fr
    }

    .promise__grid {
        grid-template-columns: 1fr 1fr
    }

    .promise-card {
        padding: 20px 12px
    }

    .product-card {
        flex: 0 0 85%
    }

    .trust__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px 10px
    }

    .footer__top {
        grid-template-columns: 1fr
    }

    .footer__col--app {
        flex-direction: column
    }
}