/* =========================================================
   WIIKFOOD HOME
   UI PREMIUM
========================================================= */

:root {

    --wf-red: #ff0032;
    --wf-red-dark: #df002c;
    --wf-red-soft: #fff1f3;

    --wf-black: #17131a;
    --wf-text: #242029;
    --wf-muted: #8c8692;

    --wf-bg: #f7f5f8;
    --wf-white: #ffffff;

    --wf-border: #ece8ee;

    --wf-radius: 22px;

    --wf-shadow:
        0 10px 35px rgba(25, 18, 30, .07);

    --wf-shadow-hover:
        0 18px 45px rgba(25, 18, 30, .12);

}


/* =========================================================
   RESET
========================================================= */

* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

    font-family:
        "Satoshi",
        sans-serif;

}


html {

    scroll-behavior: smooth;

}


body {

    background:
        var(--wf-bg);

    color:
        var(--wf-text);

    min-height:
        100vh;

}


button,
input {

    font-family:
        inherit;

}


button {

    border:
        0;

}


a {

    color:
        inherit;

    text-decoration:
        none;

}



/* =========================================================
   HEADER
========================================================= */

.wf-header {

    position:
        sticky;

    top:
        0;

    z-index:
        100;

    background:
        rgba(255,255,255,.92);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(236,232,238,.8);

}


.wf-header-inner {

    width:
        min(1180px, calc(100% - 32px));

    min-height:
        72px;

    margin:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.wf-logo {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

}


.wf-logo-mark {

    width:
        38px;

    height:
        38px;

    border-radius:
        12px;

    background:
        var(--wf-red);

    color:
        white;

    display:
        grid;

    place-items:
        center;

    font-size:
        20px;

    font-weight:
        900;

    box-shadow:
        0 7px 20px rgba(255,0,50,.22);

}


.wf-logo-text {

    font-size:
        18px;

    font-weight:
        900;

    letter-spacing:
        -.03em;

}


.wf-logo-text span {

    color:
        var(--wf-red);

}


.wf-header-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

}


.wf-location-button {

    height:
        42px;

    padding:
        0 15px;

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    border:
        1px solid var(--wf-border);

    border-radius:
        13px;

    background:
        white;

    color:
        var(--wf-text);

    font-size:
        13px;

    font-weight:
        800;

    cursor:
        pointer;

}


.wf-location-button i {

    color:
        var(--wf-red);

    font-size:
        18px;

}


.wf-location-button.active {

    border-color:
        #ccefdc;

    background:
        #f0fff6;

    color:
        #21884d;

}


.wf-location-button.active i {

    color:
        #21a35b;

}


.wf-menu-button {

    width:
        42px;

    height:
        42px;

    border-radius:
        13px;

    background:
        var(--wf-black);

    color:
        white;

    display:
        grid;

    place-items:
        center;

    font-size:
        20px;

    cursor:
        pointer;

}



/* =========================================================
   HERO
========================================================= */

.wf-hero {

    position:
        relative;

    overflow:
        hidden;

    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #fff 62%,
            #fff2f4 100%
        );

    border-bottom:
        1px solid var(--wf-border);

}


.wf-hero::after {

    content:
        "";

    position:
        absolute;

    width:
        420px;

    height:
        420px;

    border-radius:
        50%;

    background:
        rgba(255,0,50,.055);

    right:
        -180px;

    top:
        -180px;

    pointer-events:
        none;

}


.wf-hero-content {

    position:
        relative;

    z-index:
        2;

    width:
        min(850px, calc(100% - 32px));

    margin:
        auto;

    padding:
        80px 0 76px;

    text-align:
        center;

}


.wf-hero-badge {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        8px 13px;

    background:
        var(--wf-red-soft);

    color:
        var(--wf-red);

    border-radius:
        999px;

    font-size:
        12px;

    font-weight:
        800;

    margin-bottom:
        20px;

}


.wf-live-dot {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--wf-red);

    box-shadow:
        0 0 0 4px rgba(255,0,50,.1);

}


.wf-hero h1 {

    font-size:
        clamp(42px, 7vw, 72px);

    line-height:
        .98;

    letter-spacing:
        -.055em;

    font-weight:
        900;

    color:
        var(--wf-black);

}


.wf-hero h1 span {

    color:
        var(--wf-red);

}


.wf-hero-description {

    max-width:
        620px;

    margin:
        20px auto 28px;

    color:
        var(--wf-muted);

    font-size:
        16px;

    line-height:
        1.55;

}


.wf-search-box {

    max-width:
        720px;

    height:
        66px;

    margin:
        auto;

    padding:
        7px;

    display:
        flex;

    align-items:
        center;

    background:
        white;

    border:
        1px solid var(--wf-border);

    border-radius:
        19px;

    box-shadow:
        0 15px 45px rgba(30,20,30,.1);

}


.wf-search-icon {

    width:
        52px;

    flex:
        0 0 52px;

    font-size:
        22px;

    color:
        var(--wf-muted);

}


.wf-search-box input {

    min-width:
        0;

    flex:
        1;

    height:
        100%;

    border:
        0;

    outline:
        none;

    color:
        var(--wf-text);

    font-size:
        15px;

    font-weight:
        600;

}


.wf-search-box input::placeholder {

    color:
        #aaa4ad;

}


.wf-search-box button {

    height:
        52px;

    padding:
        0 20px;

    border-radius:
        14px;

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    background:
        var(--wf-red);

    color:
        white;

    font-size:
        13px;

    font-weight:
        900;

    cursor:
        pointer;

    transition:
        .2s;

}


.wf-search-box button:hover {

    background:
        var(--wf-red-dark);

    transform:
        translateY(-1px);

}


.wf-use-location {

    margin-top:
        17px;

    background:
        transparent;

    color:
        var(--wf-red);

    font-size:
        13px;

    font-weight:
        800;

    cursor:
        pointer;

}


.wf-use-location i {

    margin-right:
        5px;

}



/* =========================================================
   SECTIONS
========================================================= */

.wf-section {

    width:
        min(1180px, calc(100% - 32px));

    margin:
        auto;

    padding:
        52px 0;

}


.wf-section-heading {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        24px;

}


.wf-eyebrow {

    display:
        block;

    color:
        var(--wf-red);

    font-size:
        10px;

    letter-spacing:
        .12em;

    font-weight:
        900;

    margin-bottom:
        7px;

}


.wf-section-heading h2 {

    font-size:
        27px;

    letter-spacing:
        -.035em;

    font-weight:
        900;

}


.wf-results-count {

    color:
        var(--wf-muted);

    font-size:
        13px;

    font-weight:
        700;

}



/* =========================================================
   CATEGORIES
========================================================= */

.wf-categories {

    display:
        flex;

    gap:
        10px;

    overflow-x:
        auto;

    padding:
        5px 2px 12px;

    scrollbar-width:
        none;

}


.wf-categories::-webkit-scrollbar {

    display:
        none;

}


.wf-category {

    flex:
        0 0 auto;

    min-width:
        105px;

    padding:
        13px 14px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        8px;

    border:
        1px solid var(--wf-border);

    border-radius:
        17px;

    background:
        white;

    color:
        var(--wf-text);

    font-size:
        12px;

    font-weight:
        800;

    cursor:
        pointer;

    transition:
        .2s;

}


.wf-category:hover {

    transform:
        translateY(-2px);

    box-shadow:
        var(--wf-shadow);

}


.wf-category.active {

    background:
        var(--wf-red);

    border-color:
        var(--wf-red);

    color:
        white;

    box-shadow:
        0 8px 22px rgba(255,0,50,.2);

}


.wf-category-icon {

    width:
        43px;

    height:
        43px;

    border-radius:
        14px;

    background:
        #f7f5f8;

    display:
        grid;

    place-items:
        center;

    font-size:
        21px;

}


.wf-category.active .wf-category-icon {

    background:
        rgba(255,255,255,.18);

}



/* =========================================================
   BENEFITS
========================================================= */

.wf-benefits {

    width:
        100%;

    background:
        white;

    border-top:
        1px solid var(--wf-border);

    border-bottom:
        1px solid var(--wf-border);

}


.wf-benefits-inner {

    width:
        min(1180px, calc(100% - 32px));

    margin:
        auto;

    min-height:
        110px;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        25px;

    align-items:
        center;

}


.wf-benefit {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.wf-benefit-icon {

    width:
        46px;

    height:
        46px;

    border-radius:
        14px;

    display:
        grid;

    place-items:
        center;

    font-size:
        21px;

}


.wf-benefit-red {

    background:
        #fff0f2;

    color:
        var(--wf-red);

}


.wf-benefit-yellow {

    background:
        #fff8df;

    color:
        #c58b00;

}


.wf-benefit-purple {

    background:
        #f2edff;

    color:
        #7550cf;

}


.wf-benefit strong {

    display:
        block;

    font-size:
        14px;

    font-weight:
        900;

}


.wf-benefit span {

    display:
        block;

    margin-top:
        2px;

    font-size:
        11.5px;

    color:
        var(--wf-muted);

}



/* =========================================================
   STORE CARDS
========================================================= */

.wf-stores-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

}


.wf-store-card {

    background:
        white;

    border:
        1px solid var(--wf-border);

    border-radius:
        21px;

    overflow:
        hidden;

    box-shadow:
        var(--wf-shadow);

    transition:
        transform .22s,
        box-shadow .22s;

}


.wf-store-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--wf-shadow-hover);

}


.wf-store-image {

    position:
        relative;

    height:
        190px;

    background:
        #eee;

    overflow:
        hidden;

}


.wf-store-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

}


.wf-store-initial {

    width:
        100%;

    height:
        100%;

    display:
        grid;

    place-items:
        center;

    background:
        linear-gradient(
            135deg,
            #ff0032,
            #ff5b79
        );

    color:
        white;

    font-size:
        55px;

    font-weight:
        900;

}


.wf-store-distance {

    position:
        absolute;

    left:
        12px;

    bottom:
        12px;

    padding:
        6px 10px;

    border-radius:
        999px;

    background:
        rgba(0,0,0,.68);

    color:
        white;

    font-size:
        10px;

    font-weight:
        800;

    backdrop-filter:
        blur(8px);

}


.wf-store-promo {

    position:
        absolute;

    top:
        12px;

    left:
        12px;

    padding:
        7px 10px;

    border-radius:
        999px;

    background:
        var(--wf-red);

    color:
        white;

    font-size:
        10px;

    font-weight:
        900;

}


.wf-store-body {

    padding:
        17px;

}


.wf-store-name {

    font-size:
        18px;

    font-weight:
        900;

    letter-spacing:
        -.025em;

}


.wf-store-branch {

    margin-top:
        3px;

    font-size:
        12px;

    color:
        var(--wf-muted);

}


.wf-store-meta {

    margin-top:
        13px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    flex-wrap:
        wrap;

}


.wf-store-meta span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        4px;

    font-size:
        11px;

    font-weight:
        700;

    color:
        #69636e;

}


.wf-store-meta i {

    font-size:
        14px;

}


.wf-store-benefits {

    display:
        flex;

    gap:
        6px;

    margin-top:
        13px;

}


.wf-store-benefit {

    padding:
        5px 8px;

    border-radius:
        7px;

    background:
        var(--wf-red-soft);

    color:
        var(--wf-red);

    font-size:
        9.5px;

    font-weight:
        800;

}


.wf-store-actions {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        8px;

    margin-top:
        15px;

}


.wf-store-btn {

    height:
        43px;

    border-radius:
        12px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        6px;

    font-size:
        12px;

    font-weight:
        900;

    cursor:
        pointer;

}


.wf-store-btn-map {

    background:
        #f5f3f6;

    color:
        var(--wf-text);

}


.wf-store-btn-order {

    background:
        var(--wf-red);

    color:
        white;

}



/* =========================================================
   EMPTY
========================================================= */

.wf-empty-initial,
.wf-empty {

    grid-column:
        1 / -1;

    background:
        white;

    border:
        1px solid var(--wf-border);

    border-radius:
        22px;

    padding:
        50px 25px;

    text-align:
        center;

}


.wf-empty-icon {

    width:
        64px;

    height:
        64px;

    margin:
        auto auto 15px;

    border-radius:
        20px;

    display:
        grid;

    place-items:
        center;

    background:
        var(--wf-red-soft);

    color:
        var(--wf-red);

    font-size:
        29px;

}


.wf-empty h3 {

    font-size:
        19px;

    font-weight:
        900;

}


.wf-empty p,
.wf-empty-initial p {

    max-width:
        480px;

    margin:
        8px auto 20px;

    color:
        var(--wf-muted);

    font-size:
        13px;

    line-height:
        1.5;

}


.wf-empty button,
.wf-empty-initial button {

    height:
        44px;

    padding:
        0 17px;

    border-radius:
        12px;

    background:
        var(--wf-red);

    color:
        white;

    font-size:
        12px;

    font-weight:
        900;

    cursor:
        pointer;

}



/* =========================================================
   LOADING
========================================================= */

.wf-loading {

    display:
        none;

    padding:
        35px;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    color:
        var(--wf-muted);

    font-size:
        13px;

    font-weight:
        700;

}


.wf-loading.visible {

    display:
        flex;

}


.wf-spinner {

    width:
        23px;

    height:
        23px;

    border:
        3px solid #eee;

    border-top-color:
        var(--wf-red);

    border-radius:
        50%;

    animation:
        wfSpin .7s linear infinite;

}


@keyframes wfSpin {

    to {
        transform:
            rotate(360deg);
    }

}



/* =========================================================
   BUSINESS CTA
========================================================= */

.wf-business-cta {

    width:
        min(1180px, calc(100% - 32px));

    margin:
        20px auto 65px;

    border-radius:
        25px;

    overflow:
        hidden;

    background:
        var(--wf-black);

    color:
        white;

}


.wf-business-content {

    min-height:
        190px;

    padding:
        30px 35px;

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    align-items:
        center;

    gap:
        25px;

}


.wf-business-icon-large {

    width:
        70px;

    height:
        70px;

    border-radius:
        22px;

    display:
        grid;

    place-items:
        center;

    background:
        rgba(255,255,255,.08);

    color:
        var(--wf-red);

    font-size:
        31px;

}


.wf-business-content h2 {

    font-size:
        25px;

    letter-spacing:
        -.035em;

}


.wf-business-content p {

    margin-top:
        7px;

    max-width:
        570px;

    color:
        #aaa5ad;

    font-size:
        13px;

    line-height:
        1.5;

}


.wf-business-button {

    height:
        48px;

    padding:
        0 18px;

    border-radius:
        13px;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    background:
        var(--wf-red);

    color:
        white;

    font-size:
        12px;

    font-weight:
        900;

}



/* =========================================================
   FOOTER
========================================================= */

.wf-footer {

    background:
        white;

    border-top:
        1px solid var(--wf-border);

}


.wf-footer-inner {

    width:
        min(1180px, calc(100% - 32px));

    margin:
        auto;

    padding:
        40px 0 30px;

    display:
        flex;

    justify-content:
        space-between;

    gap:
        40px;

}


.wf-footer-brand p {

    margin-top:
        10px;

    color:
        var(--wf-muted);

    font-size:
        12px;

}


.wf-footer-links {

    display:
        flex;

    gap:
        22px;

    flex-wrap:
        wrap;

    justify-content:
        flex-end;

}


.wf-footer-links a {

    color:
        #6f6973;

    font-size:
        11px;

    font-weight:
        700;

}


.wf-footer-links a:hover {

    color:
        var(--wf-red);

}


.wf-footer-bottom {

    width:
        min(1180px, calc(100% - 32px));

    margin:
        auto;

    padding:
        17px 0;

    border-top:
        1px solid var(--wf-border);

    display:
        flex;

    justify-content:
        space-between;

    color:
        #aaa4ad;

    font-size:
        10px;

}



/* =========================================================
   MENU
========================================================= */

.wf-menu-overlay {

    position:
        fixed;

    inset:
        0;

    z-index:
        300;

    background:
        rgba(20,15,22,.45);

    backdrop-filter:
        blur(5px);

    opacity:
        0;

    visibility:
        hidden;

    transition:
        .25s;

}


.wf-menu-overlay.open {

    opacity:
        1;

    visibility:
        visible;

}


.wf-menu {

    position:
        absolute;

    right:
        0;

    top:
        0;

    width:
        min(390px, 92%);

    height:
        100%;

    padding:
        27px 22px;

    background:
        white;

    transform:
        translateX(100%);

    transition:
        .3s;

    overflow-y:
        auto;

}


.wf-menu-overlay.open .wf-menu {

    transform:
        translateX(0);

}


.wf-menu-header {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        28px;

}


.wf-menu-header h3 {

    font-size:
        23px;

    font-weight:
        900;

}


.wf-menu-close {

    width:
        40px;

    height:
        40px;

    border-radius:
        12px;

    background:
        #f5f3f6;

    color:
        var(--wf-text);

    font-size:
        20px;

    cursor:
        pointer;

}


.wf-menu-list {

    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

}


.wf-menu-item {

    min-height:
        68px;

    padding:
        10px;

    display:
        grid;

    grid-template-columns:
        44px 1fr auto;

    align-items:
        center;

    gap:
        11px;

    border-radius:
        15px;

    transition:
        .2s;

}


.wf-menu-item:hover {

    background:
        #faf8fb;

}


.wf-menu-icon {

    width:
        44px;

    height:
        44px;

    border-radius:
        13px;

    background:
        var(--wf-red-soft);

    color:
        var(--wf-red);

    display:
        grid;

    place-items:
        center;

    font-size:
        20px;

}


.wf-menu-item strong {

    display:
        block;

    font-size:
        13px;

    font-weight:
        900;

}


.wf-menu-item small {

    display:
        block;

    margin-top:
        2px;

    color:
        var(--wf-muted);

    font-size:
        10px;

}


.wf-menu-item > i {

    color:
        #aaa4ad;

}


.wf-menu-business {

    margin-top:
        30px;

    padding:
        18px;

    display:
        flex;

    gap:
        13px;

    border-radius:
        18px;

    background:
        var(--wf-black);

    color:
        white;

}


.wf-business-icon {

    width:
        42px;

    height:
        42px;

    flex:
        0 0 42px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        12px;

    background:
        rgba(255,0,50,.14);

    color:
        var(--wf-red);

}


.wf-menu-business strong {

    font-size:
        13px;

}


.wf-menu-business p {

    margin:
        5px 0 9px;

    color:
        #aaa5ad;

    font-size:
        10px;

    line-height:
        1.4;

}


.wf-menu-business a {

    color:
        white;

    font-size:
        10px;

    font-weight:
        800;

}


.wf-menu-footer {

    margin-top:
        30px;

    color:
        #aaa4ad;

    font-size:
        10px;

    display:
        flex;

    gap:
        5px;

}



/* =========================================================
   LOCATION MODAL
========================================================= */

.wf-location-modal {

    position:
        fixed;

    inset:
        0;

    z-index:
        500;

    display:
        grid;

    place-items:
        center;

    padding:
        20px;

    background:
        rgba(20,15,22,.5);

    backdrop-filter:
        blur(6px);

    opacity:
        0;

    visibility:
        hidden;

    transition:
        .2s;

}


.wf-location-modal.open {

    opacity:
        1;

    visibility:
        visible;

}


.wf-location-modal-card {

    width:
        min(390px, 100%);

    padding:
        28px;

    border-radius:
        24px;

    background:
        white;

    text-align:
        center;

    box-shadow:
        0 25px 70px rgba(0,0,0,.2);

}


.wf-location-modal-icon {

    width:
        65px;

    height:
        65px;

    margin:
        0 auto 16px;

    border-radius:
        20px;

    display:
        grid;

    place-items:
        center;

    background:
        var(--wf-red-soft);

    color:
        var(--wf-red);

    font-size:
        29px;

}


.wf-location-modal-card h3 {

    font-size:
        20px;

    font-weight:
        900;

}


.wf-location-modal-card p {

    margin:
        9px 0 20px;

    color:
        var(--wf-muted);

    font-size:
        13px;

    line-height:
        1.5;

}


.wf-location-modal-card > button {

    width:
        100%;

    height:
        46px;

    border-radius:
        13px;

    background:
        var(--wf-red);

    color:
        white;

    font-size:
        12px;

    font-weight:
        900;

    cursor:
        pointer;

}


.wf-location-modal-card .wf-modal-secondary {

    margin-top:
        8px;

    background:
        #f5f3f6;

    color:
        var(--wf-text);

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .wf-stores-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .wf-business-content {

        grid-template-columns:
            auto 1fr;

    }


    .wf-business-button {

        grid-column:
            2;

        justify-self:
            start;

    }

}


@media (max-width: 650px) {

    .wf-header-inner {

        width:
            calc(100% - 22px);

    }


    .wf-location-button {

        padding:
            0 11px;

    }


    .wf-location-button span {

        display:
            none;

    }


    .wf-hero-content {

        padding:
            58px 0 55px;

    }


    .wf-hero h1 {

        font-size:
            43px;

    }


    .wf-hero-description {

        font-size:
            14px;

    }


    .wf-search-box {

        height:
            58px;

        border-radius:
            16px;

    }


    .wf-search-icon {

        width:
            42px;

        flex-basis:
            42px;

    }


    .wf-search-box button {

        width:
            45px;

        padding:
            0;

        justify-content:
            center;

    }


    .wf-search-box button span {

        display:
            none;

    }


    .wf-section {

        width:
            calc(100% - 22px);

        padding:
            38px 0;

    }


    .wf-section-heading h2 {

        font-size:
            23px;

    }


    .wf-benefits-inner {

        width:
            calc(100% - 22px);

        grid-template-columns:
            1fr;

        padding:
            22px 0;

        gap:
            17px;

    }


    .wf-benefit {

        padding:
            0 4px;

    }


    .wf-stores-grid {

        grid-template-columns:
            1fr;

        gap:
            14px;

    }


    .wf-store-image {

        height:
            200px;

    }


    .wf-business-cta {

        width:
            calc(100% - 22px);

        margin-bottom:
            40px;

    }


    .wf-business-content {

        grid-template-columns:
            1fr;

        padding:
            27px 22px;

    }


    .wf-business-button {

        grid-column:
            auto;

        width:
            100%;

        justify-content:
            center;

    }


    .wf-footer-inner {

        width:
            calc(100% - 22px);

        flex-direction:
            column;

    }


    .wf-footer-links {

        justify-content:
            flex-start;

        gap:
            14px;

    }


    .wf-footer-bottom {

        width:
            calc(100% - 22px);

        flex-direction:
            column;

        gap:
            5px;

    }

}