:root{
    --bg:#f6f4ef;
    --surface:#ffffff;
    --surface2:#fdfbf7;
    --text:#101010;
    --muted:#777;
    --soft:#ece7dc;
    --gold:#d4af37;
    --gold2:#fff1a8;
    --silver:#9ca3af;
    --border:rgba(16,16,16,.08);
    --shadow:0 20px 55px rgba(17,17,17,.08);
    --shadow2:0 35px 90px rgba(17,17,17,.12);
    --green:#16a34a;
    --red:#ef4444;
}

html[data-theme="dark"]{
    --bg:#050505;
    --surface:rgba(255,255,255,.065);
    --surface2:rgba(255,255,255,.04);
    --text:#ffffff;
    --muted:#a9a9a9;
    --soft:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.10);
    --shadow:0 25px 70px rgba(0,0,0,.45);
    --shadow2:0 40px 120px rgba(0,0,0,.70);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.16), transparent 27%),
        linear-gradient(135deg,var(--bg),var(--bg));
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(212,175,55,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,.045) 1px, transparent 1px);
    background-size:48px 48px;
    opacity:.35;
    z-index:-1;
}

a{
    color:inherit;
}

/* HEADER */
.store-header{
    position:sticky;
    top:0;
    z-index:1000;
    padding:16px 0 12px;
    background:rgba(246,244,239,.78);
    backdrop-filter:blur(22px);
    border-bottom:1px solid var(--border);
    transition:transform .32s ease, background .25s ease;
}

html[data-theme="dark"] .store-header{
    background:rgba(5,5,5,.78);
}

.store-header.hide{
    transform:translateY(-110%);
}

.header-main,
.mobile-search,
.store-main{
    width:min(1240px,94%);
    margin:0 auto;
}

.header-main{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:22px;
}

.brand{
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
}

.brand img{
    width:52px;
    height:52px;
    object-fit:contain;
    filter:drop-shadow(0 10px 25px rgba(212,175,55,.20));
}

.brand strong{
    display:block;
    font-size:20px;
    letter-spacing:-.5px;
}

.brand span{
    display:block;
    color:var(--muted);
    font-size:12px;
    margin-top:3px;
}

.search-form{
    height:54px;
    display:flex;
    align-items:center;
    border-radius:20px;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    overflow:hidden;
}

.search-form input{
    flex:1;
    height:100%;
    border:none;
    outline:none;
    background:transparent;
    padding:0 18px;
    color:var(--text);
    font-family:inherit;
}

.search-form input::placeholder{
    color:var(--muted);
}

.search-form button{
    width:58px;
    height:100%;
    border:none;
    cursor:pointer;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#050505;
    font-weight:900;
    font-size:18px;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.theme-toggle,
.auth-chip,
.wallet-chip{
    min-height:48px;
    border-radius:18px;
    border:1px solid var(--border);
    background:var(--surface);
    color:var(--text);
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0 15px;
    box-shadow:var(--shadow);
    font-family:inherit;
}

.theme-toggle{
    cursor:pointer;
}

.theme-toggle b{
    font-size:13px;
}

.auth-chip{
    color:#050505;
    border:none;
    font-weight:900;
    background:linear-gradient(135deg,var(--gold),var(--gold2),#b88a1e);
}

.wallet-chip{
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:0;
}

.wallet-chip span{
    color:var(--muted);
    font-size:11px;
}

.wallet-chip strong{
    color:var(--gold);
    font-size:13px;
}

.mobile-search{
    display:none;
    margin-top:12px;
}

/* HERO */
.store-main{
    padding:32px 0 110px;
}

.store-hero{
    min-height:430px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:center;
    margin-bottom:36px;
}

.hero-copy{
    padding:36px;
    border-radius:36px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 38%),
        var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow2);
}

.premium-pill{
    width:max-content;
    display:flex;
    align-items:center;
    gap:9px;
    padding:10px 14px;
    border-radius:999px;
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    font-weight:900;
    font-size:12px;
    margin-bottom:20px;
}

.premium-pill span{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#16a34a;
    box-shadow:0 0 15px #16a34a;
}

.hero-copy h1{
    font-size:clamp(40px,5vw,68px);
    line-height:1;
    letter-spacing:-3px;
    margin-bottom:20px;
}

.hero-copy h1 span{
    display:block;
    color:var(--gold);
}

.hero-copy p{
    color:var(--muted);
    line-height:1.8;
    max-width:640px;
}

.hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:28px;
}

.primary-btn,
.secondary-btn{
    min-height:52px;
    padding:0 22px;
    border-radius:18px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.primary-btn{
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2),#b88a1e);
}

.secondary-btn{
    background:var(--soft);
    color:var(--text);
    border:1px solid var(--border);
}

.hero-panel{
    min-height:430px;
    position:relative;
    border-radius:36px;
    background:
        radial-gradient(circle at center, rgba(212,175,55,.25), transparent 42%),
        var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow2);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-orbit{
    position:absolute;
    width:330px;
    height:330px;
    border:1px solid rgba(212,175,55,.35);
    border-radius:50%;
    animation:spin 16s linear infinite;
}

@keyframes spin{
    to{transform:rotate(360deg);}
}

.hero-product-preview{
    width:260px;
    min-height:260px;
    border-radius:34px;
    background:var(--surface2);
    border:1px solid var(--border);
    box-shadow:var(--shadow2);
    text-align:center;
    padding:30px;
    position:relative;
    z-index:2;
}

.hero-product-preview img{
    width:105px;
    height:105px;
    object-fit:contain;
    margin-bottom:18px;
}

.hero-product-preview h3{
    font-size:26px;
    color:var(--gold);
    margin-bottom:10px;
}

.hero-product-preview p{
    color:var(--muted);
    line-height:1.7;
    font-size:14px;
}

.hero-card{
    position:absolute;
    z-index:3;
    width:210px;
    padding:18px;
    border-radius:24px;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.top-card{
    top:32px;
    left:32px;
}

.bottom-card{
    bottom:32px;
    right:32px;
}

.hero-card span{
    color:var(--muted);
    font-size:12px;
}

.hero-card strong{
    display:block;
    color:var(--gold);
    margin-top:6px;
}

/* SECTIONS */
.category-section,
.horizontal-section,
.products-section{
    margin-bottom:34px;
}

.section-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:clamp(24px,3vw,34px);
    letter-spacing:-1px;
}

.section-heading p,
.result-count{
    color:var(--muted);
    margin-top:6px;
    font-size:14px;
}

.section-heading a{
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    text-decoration:none;
    padding:11px 16px;
    border-radius:15px;
    font-weight:900;
}

/* CATEGORY SCROLL */
.category-scroll{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding:5px 0 12px;
    scroll-snap-type:x mandatory;
}

.category-scroll::-webkit-scrollbar,
.horizontal-products::-webkit-scrollbar,
.inline-horizontal-scroll::-webkit-scrollbar{
    height:7px;
}

.category-scroll::-webkit-scrollbar-track,
.horizontal-products::-webkit-scrollbar-track,
.inline-horizontal-scroll::-webkit-scrollbar-track{
    background:var(--soft);
    border-radius:20px;
}

.category-scroll::-webkit-scrollbar-thumb,
.horizontal-products::-webkit-scrollbar-thumb,
.inline-horizontal-scroll::-webkit-scrollbar-thumb{
    background:linear-gradient(90deg,var(--gold),var(--gold2));
    border-radius:20px;
}

.category-pill{
    scroll-snap-align:start;
    flex:0 0 auto;
    text-decoration:none;
    min-height:58px;
    padding:0 20px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:10px;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    font-weight:800;
}

.category-pill span{
    width:34px;
    height:34px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
}

/* HORIZONTAL PRODUCTS */
.horizontal-products{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding:5px 0 16px;
    scroll-snap-type:x mandatory;
}

.horizontal-card{
    flex:0 0 220px;
    scroll-snap-align:start;
    text-decoration:none;
    border-radius:26px;
    overflow:hidden;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.28s ease;
}

.horizontal-card:hover{
    transform:translateY(-5px);
}

.horizontal-img{
    height:160px;
    background:var(--soft);
}

.horizontal-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.horizontal-body{
    padding:16px;
}

.horizontal-body h3{
    font-size:15px;
    line-height:1.35;
    margin-bottom:8px;
}

.horizontal-body span{
    display:block;
    color:var(--muted);
    font-size:12px;
    margin-bottom:8px;
}

.horizontal-body strong{
    color:var(--gold);
    font-size:17px;
}

/* PRODUCT FLOW */
.product-flow{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.product-card{
    display:grid;
    grid-template-columns:190px 1fr;
    gap:18px;
    padding:15px;
    border-radius:28px;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.28s ease;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow2);
}

.product-image{
    min-height:180px;
    border-radius:23px;
    overflow:hidden;
    background:var(--soft);
    position:relative;
    text-decoration:none;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.product-image span{
    position:absolute;
    left:12px;
    bottom:12px;
    max-width:80%;
    padding:8px 11px;
    border-radius:999px;
    background:rgba(0,0,0,.72);
    color:white;
    font-size:11px;
    font-weight:800;
    backdrop-filter:blur(10px);
}

.product-info{
    padding:4px 4px 4px 0;
    display:flex;
    flex-direction:column;
}

.product-topline,
.meta-line,
.product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.product-topline span{
    font-size:12px;
    font-weight:900;
}

.in-stock{
    color:var(--green);
}

.out-stock{
    color:var(--red);
}

.product-topline small,
.meta-line span{
    color:var(--muted);
    font-size:12px;
}

.product-title{
    text-decoration:none;
    font-size:22px;
    font-weight:900;
    letter-spacing:-.5px;
    margin:12px 0 8px;
}

.product-info p{
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}

.store-line{
    margin-top:14px;
    padding:12px 14px;
    border-radius:18px;
    background:var(--surface2);
    border:1px solid var(--border);
}

.store-line span{
    color:var(--muted);
    display:block;
    font-size:11px;
    margin-bottom:4px;
}

.store-line strong{
    color:var(--gold);
    font-size:14px;
}

.meta-line{
    margin:12px 0;
}

.product-bottom{
    margin-top:auto;
}

.product-bottom > strong{
    color:var(--gold);
    font-size:24px;
}

.product-actions{
    display:flex;
    gap:9px;
}

.cart-btn,
.view-btn{
    min-height:42px;
    border:none;
    cursor:pointer;
    border-radius:15px;
    padding:0 16px;
    font-weight:900;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-family:inherit;
}

.cart-btn{
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.view-btn{
    color:var(--text);
    background:var(--soft);
}

/* INLINE HORIZONTAL AFTER 10 ITEMS */
.inline-horizontal-block{
    padding:18px;
    border-radius:30px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.14), transparent 36%),
        var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.mini-section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
}

.mini-section-title h3{
    font-size:20px;
}

.mini-section-title span{
    color:var(--muted);
    font-size:12px;
}

.inline-horizontal-scroll{
    display:flex;
    gap:14px;
    overflow-x:auto;
    padding-bottom:8px;
}

.mini-product-card{
    flex:0 0 170px;
    text-decoration:none;
    border-radius:22px;
    overflow:hidden;
    background:var(--surface2);
    border:1px solid var(--border);
}

.mini-product-card img{
    width:100%;
    height:120px;
    object-fit:cover;
    background:var(--soft);
}

.mini-product-card div{
    padding:13px;
}

.mini-product-card h4{
    font-size:14px;
    line-height:1.35;
    margin-bottom:6px;
}

.mini-product-card span{
    display:block;
    color:var(--muted);
    font-size:11px;
    margin-bottom:7px;
}

.mini-product-card strong{
    color:var(--gold);
}

/* EMPTY */
.empty-state{
    text-align:center;
    padding:60px 20px;
    border-radius:32px;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.empty-state div{
    width:76px;
    height:76px;
    margin:0 auto 18px;
    border-radius:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#050505;
    font-size:32px;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.empty-state h3{
    font-size:26px;
    margin-bottom:8px;
}

.empty-state p{
    color:var(--muted);
    margin-bottom:20px;
}

.empty-state a{
    text-decoration:none;
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    padding:13px 18px;
    border-radius:16px;
    font-weight:900;
}

/* BOTTOM NAV */
.bottom-nav{
    position:fixed;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    width:min(560px,92%);
    height:72px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    padding:8px;
    border-radius:28px;
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(22px);
    border:1px solid var(--border);
    box-shadow:var(--shadow2);
    z-index:1000;
    transition:transform .32s ease, opacity .32s ease;
}

html[data-theme="dark"] .bottom-nav{
    background:rgba(20,20,20,.78);
}

.bottom-nav.hide{
    transform:translate(-50%, 130%);
    opacity:0;
}

.bottom-nav a{
    text-decoration:none;
    color:var(--muted);
    border-radius:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    font-size:12px;
    font-weight:800;
}

.bottom-nav a span{
    font-size:18px;
}

.bottom-nav a.active{
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
}

/* DESKTOP GRID OPTION */
@media(min-width:1020px){
 .product-flow{
    max-width:980px;
}

.products-section{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 320px;
    gap:24px;
    align-items:start;
}

.products-section .section-heading{
    grid-column:1 / -1;
}

.products-section .product-flow{
    grid-column:1;
}

.products-section .merchant-map-panel{
    grid-column:2;
    grid-row:2;
}

 
}

.merchant-map-panel{
    position:sticky;
    top:120px;
    min-height:430px;
    padding:22px;
    border-radius:30px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.20), transparent 42%),
        radial-gradient(circle at bottom right, rgba(156,163,175,.12), transparent 40%),
        var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    overflow:hidden;
}

.merchant-map-panel h3{
    font-size:22px;
    margin-bottom:8px;
    color:var(--text);
}

.merchant-map-panel > p{
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
    margin-bottom:16px;
}

.merchant-real-map{
    width:100%;
    height:240px;
    border-radius:24px;
    margin-bottom:16px;
    border:1px solid var(--border);
    overflow:hidden;
    box-shadow:inset 0 0 0 1px rgba(212,175,55,.08);
    background:var(--soft);
}

.leaflet-container{
    font-family:'Inter',sans-serif;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip{
    background:var(--surface);
    color:var(--text);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.leaflet-popup-content{
    font-size:13px;
    line-height:1.6;
}

.leaflet-control-attribution{
    font-size:10px;
}

.merchant-map-box{
    min-height:190px;
    border-radius:24px;
    margin-bottom:16px;
    background:
        linear-gradient(135deg, rgba(212,175,55,.10), rgba(156,163,175,.10)),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,.045) 0,
            rgba(255,255,255,.045) 1px,
            transparent 1px,
            transparent 18px
        );
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;
}

.map-pin{
    position:absolute;
    width:16px;
    height:16px;
    border-radius:50% 50% 50% 0;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    transform:rotate(-45deg);
    box-shadow:0 8px 20px rgba(212,175,55,.35);
}

.map-pin::after{
    content:"";
    position:absolute;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#050505;
    top:5px;
    left:5px;
}

.merchant-list{
    display:grid;
    gap:10px;
    max-height:230px;
    overflow:auto;
    padding-right:4px;
}

.merchant-list::-webkit-scrollbar{
    width:6px;
}

.merchant-list::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--gold),var(--gold2));
    border-radius:999px;
}

.merchant-map-item{
    width:100%;
    border:none;
    cursor:pointer;
    text-align:left;
    padding:13px;
    border-radius:18px;
    background:var(--surface2);
    border:1px solid var(--border);
    color:var(--text);
    font-family:inherit;
    transition:.25s ease;
}

.merchant-map-item:hover,
.merchant-map-item.active{
    transform:translateY(-2px);
    border-color:rgba(212,175,55,.45);
    background:rgba(212,175,55,.08);
}

.merchant-map-item strong{
    display:block;
    color:var(--gold);
    font-size:14px;
    margin-bottom:4px;
}

.merchant-map-item span{
    display:block;
    color:var(--muted);
    font-size:12px;
    line-height:1.5;
}

.merchant-detail-card{
    margin-top:15px;
    padding:15px;
    border-radius:20px;
    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.22);
}

.merchant-detail-card h4{
    margin-bottom:7px;
    color:var(--text);
}

.merchant-detail-card p{
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
    margin-bottom:8px;
}

.merchant-detail-card a{
    display:inline-flex;
    min-height:38px;
    align-items:center;
    justify-content:center;
    padding:0 13px;
    border-radius:13px;
    text-decoration:none;
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    font-weight:900;
    font-size:12px;
}

@media(max-width:1019px){
    .merchant-map-panel{
        position:relative;
        top:auto;
        margin-top:22px;
    }
}

/* RESPONSIVE */
@media(max-width:900px){
    .header-main{
        grid-template-columns:1fr auto;
    }

    .desktop-search{
        display:none;
    }

    .mobile-search{
        display:block;
    }

    .brand span{
        display:none;
    }

    .store-hero{
        grid-template-columns:1fr;
    }

    .hero-panel{
        min-height:350px;
    }

    .product-card{
        grid-template-columns:160px 1fr;
    }

    .product-image{
        min-height:165px;
    }
}

@media(max-width:640px){
    .store-header{
        padding-top:12px;
    }

    .header-main{
        gap:12px;
    }

    .brand img{
        width:44px;
        height:44px;
    }

    .brand strong{
        font-size:17px;
    }

    .theme-toggle{
        width:46px;
        padding:0;
        justify-content:center;
    }

    .theme-toggle b{
        display:none;
    }

    .auth-chip{
        min-height:44px;
        padding:0 12px;
        font-size:12px;
    }

    .store-main{
        width:94%;
        padding-top:22px;
    }

    .hero-copy{
        padding:25px;
        border-radius:30px;
    }

    .hero-copy h1{
        font-size:40px;
        letter-spacing:-2px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }

    .hero-card{
        display:none;
    }

    .hero-product-preview{
        width:235px;
    }

    .section-heading{
        align-items:flex-start;
        flex-direction:column;
    }

    .product-card{
        grid-template-columns:128px 1fr;
        gap:13px;
        padding:12px;
        border-radius:24px;
    }

    .product-image{
        min-height:150px;
        border-radius:20px;
    }

    .product-image span{
        display:none;
    }

    .product-title{
        font-size:16px;
        margin:8px 0 6px;
    }

    .product-info p{
        display:none;
    }

    .store-line{
        margin-top:8px;
        padding:9px 10px;
        border-radius:15px;
    }

    .store-line strong{
        font-size:12px;
    }

    .meta-line{
        margin:8px 0;
    }

    .product-bottom{
        align-items:flex-start;
        flex-direction:column;
    }

    .product-bottom > strong{
        font-size:18px;
    }

    .product-actions{
        width:100%;
    }

    .cart-btn,
    .view-btn{
        flex:1;
        min-height:38px;
        font-size:12px;
        border-radius:13px;
    }

    .horizontal-card{
        flex-basis:185px;
    }

    .bottom-nav{
        height:68px;
        bottom:12px;
        border-radius:24px;
    }
}

@media(max-width:390px){
    .product-card{
        grid-template-columns:112px 1fr;
    }

    .product-image{
        min-height:138px;
    }

    .auth-chip{
        display:inline-flex;
        min-height:40px;
        padding:0 10px;
        font-size:11px;
        border-radius:14px;
        white-space:nowrap;
    }
}

@media(max-width:640px){
    .header-actions{
        gap:7px;
    }

    .header-main{
        grid-template-columns:minmax(0,1fr) auto;
    }

    .brand{
        min-width:0;
    }

    .brand strong{
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        max-width:135px;
    }
}

.quick-cart-form{
    display:inline-flex;
}

.quick-cart-form .cart-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
}

@media(max-width:480px){
    .auth-chip{
        min-height:42px;
        padding:0 12px;
        font-size:12px;
        border-radius:15px;
    }

    .theme-toggle{
        min-height:42px;
        width:42px;
    }
}

.location-notice-card{
    width:min(820px,94%);
    margin:28px auto;
    padding:34px;
    border-radius:32px;
    text-align:center;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.16), transparent 38%),
        var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.location-notice-card h2{
    font-size:clamp(28px,4vw,44px);
    letter-spacing:-1.5px;
    margin-bottom:12px;
    color:var(--text);
}

.location-notice-card p{
    color:var(--muted);
    line-height:1.8;
    max-width:620px;
    margin:0 auto 20px;
}

.location-notice-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 24px;
    border-radius:17px;
    text-decoration:none;
    font-weight:900;
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    box-shadow:0 16px 34px rgba(212,175,55,.24);
}

.storefront-business-panel{
    position:sticky;
    top:120px;
    min-height:360px;
    padding:28px;
    border-radius:30px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.22), transparent 42%),
        radial-gradient(circle at bottom right, rgba(255,255,255,.06), transparent 38%),
        var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    color:var(--text);
    overflow:hidden;
}

.storefront-business-panel::before{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    right:-45px;
    top:-45px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
}

.business-panel-badge{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.28);
    color:var(--gold);
    font-size:12px;
    font-weight:900;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.storefront-business-panel h3{
    position:relative;
    margin:0 0 12px;
    font-size:24px;
    line-height:1.2;
    color:var(--text);
    font-weight:900;
}

.business-panel-text{
    position:relative;
    margin:0 0 20px;
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
    font-weight:600;
}

.business-contact-box{
    position:relative;
    display:grid;
    gap:12px;
    margin:18px 0 22px;
}

.business-contact-item{
    display:flex;
    gap:12px;
    padding:14px;
    border-radius:20px;
    background:rgba(255,255,255,.04);
    border:1px solid var(--border);
}

.contact-icon{
    width:38px;
    height:38px;
    flex:0 0 38px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:rgba(212,175,55,.14);
    color:var(--gold);
    font-size:18px;
}

.business-contact-item strong{
    display:block;
    font-size:13px;
    color:var(--text);
    margin-bottom:4px;
}

.business-contact-item p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.6;
    font-weight:600;
}

.business-panel-actions{
    position:relative;
    display:grid;
    gap:10px;
}

.business-whatsapp-btn,
.business-link-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:12px 16px;
    border-radius:16px;
    text-decoration:none;
    font-size:14px;
    font-weight:900;
    transition:.25s ease;
}

.business-whatsapp-btn{
    color:#06130b;
    background:linear-gradient(135deg,#25d366,#86efac);
    box-shadow:0 14px 28px rgba(37,211,102,.22);
}

.business-link-btn{
    color:var(--text);
    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.26);
}

.business-link-btn.courier{
    background:rgba(255,255,255,.045);
    border:1px solid var(--border);
}

.business-whatsapp-btn:hover,
.business-link-btn:hover{
    transform:translateY(-2px);
}

.business-link-btn:hover{
    color:var(--gold);
    border-color:rgba(212,175,55,.5);
}

@media(max-width:980px){
    .storefront-business-panel{
        position:relative;
        top:auto;
        margin-top:24px;
    }
}

.merchant-map-panel{
    position:sticky;
    top:120px;
    min-height:430px;
    padding:22px;
    border-radius:30px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.20), transparent 42%),
        radial-gradient(circle at bottom right, rgba(156,163,175,.12), transparent 40%),
        var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    overflow:hidden;
}

.merchant-map-panel h3{
    font-size:22px;
    margin-bottom:8px;
    color:var(--text);
}

.merchant-map-panel > p{
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
    margin-bottom:16px;
}

.merchant-map-box{
    min-height:190px;
    border-radius:24px;
    margin-bottom:16px;
    background:
        radial-gradient(circle at 20% 25%, rgba(212,175,55,.18), transparent 16%),
        radial-gradient(circle at 75% 65%, rgba(156,163,175,.18), transparent 18%),
        linear-gradient(135deg, rgba(212,175,55,.10), rgba(156,163,175,.10)),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,.055) 0,
            rgba(255,255,255,.055) 1px,
            transparent 1px,
            transparent 18px
        );
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;
}

.merchant-map-box::before{
    content:"";
    position:absolute;
    inset:20px;
    border-radius:22px;
    border:1px dashed rgba(212,175,55,.30);
}

.map-pin{
    position:absolute;
    width:18px;
    height:18px;
    border-radius:50% 50% 50% 0;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    transform:rotate(-45deg);
    box-shadow:0 8px 20px rgba(212,175,55,.35);
    z-index:2;
}

.map-pin::after{
    content:"";
    position:absolute;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#050505;
    top:6px;
    left:6px;
}

.merchant-list{
    display:grid;
    gap:10px;
    max-height:230px;
    overflow:auto;
    padding-right:4px;
}

.merchant-list::-webkit-scrollbar{
    width:6px;
}

.merchant-list::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--gold),var(--gold2));
    border-radius:999px;
}

.merchant-map-item{
    width:100%;
    border:none;
    cursor:pointer;
    text-align:left;
    padding:13px;
    border-radius:18px;
    background:var(--surface2);
    border:1px solid var(--border);
    color:var(--text);
    font-family:inherit;
    transition:.25s ease;
}

.merchant-map-item:hover,
.merchant-map-item.active{
    transform:translateY(-2px);
    border-color:rgba(212,175,55,.45);
    background:rgba(212,175,55,.08);
}

.merchant-map-item strong{
    display:block;
    color:var(--gold);
    font-size:14px;
    margin-bottom:4px;
}

.merchant-map-item span{
    display:block;
    color:var(--muted);
    font-size:12px;
    line-height:1.5;
}

.merchant-detail-card{
    margin-top:15px;
    padding:15px;
    border-radius:20px;
    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.22);
}

.merchant-detail-card h4{
    margin-bottom:7px;
    color:var(--text);
}

.merchant-detail-card p{
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
    margin-bottom:8px;
}

.merchant-detail-card a{
    display:inline-flex;
    min-height:38px;
    align-items:center;
    justify-content:center;
    padding:0 13px;
    border-radius:13px;
    text-decoration:none;
    color:#050505;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    font-weight:900;
    font-size:12px;
}

@media(max-width:1019px){
    .merchant-map-panel{
        position:relative;
        top:auto;
        margin-top:22px;
    }
}

/* INFINITE SCROLL */
.infinite-scroll-status {
    width: 100%;
    min-height: 58px;
    margin: 18px 0 6px;
    padding: 0 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.16), transparent 35%),
        var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.infinite-scroll-status.done {
    color: var(--gold);
}

.infinite-scroll-status.error {
    color: var(--red);
}

.loader-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 rgba(212,175,55,.35);
}

.infinite-scroll-status.loading .loader-dot {
    animation: loaderPulse 1s infinite ease-in-out;
}

@keyframes loaderPulse {
    0% {
        transform: scale(.85);
        box-shadow: 0 0 0 0 rgba(212,175,55,.35);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(212,175,55,0);
    }

    100% {
        transform: scale(.85);
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

.product-load-sentinel {
    width: 100%;
    height: 2px;
}

/* =========================================================
   UrbanCityCart Premium Pale-Gold Storefront Upgrade
   Add at the very bottom of storefront.css
   ========================================================= */

:root {
    --bg:#fff8e7;
    --surface:rgba(255,255,255,.82);
    --surface2:rgba(255,252,242,.78);
    --soft:#f4ead0;
    --text:#17130a;
    --muted:#7a6f59;
    --gold:#c8941f;
    --gold2:#fff0a8;
    --deep-gold:#9f7415;
    --champagne:#fff7df;
    --cream:#fffaf0;
    --border:rgba(120,84,18,.13);
    --shadow:0 22px 60px rgba(123,92,26,.10);
    --shadow2:0 42px 120px rgba(123,92,26,.16);
}

html[data-theme="dark"] {
    --bg:#070604;
    --surface:rgba(18,15,9,.78);
    --surface2:rgba(255,255,255,.055);
    --soft:rgba(255,255,255,.08);
    --text:#fffdf7;
    --muted:#b9ad95;
    --gold:#d4af37;
    --gold2:#fff1a8;
    --deep-gold:#b8891e;
    --champagne:rgba(212,175,55,.12);
    --cream:rgba(255,255,255,.055);
    --border:rgba(255,232,164,.14);
    --shadow:0 24px 70px rgba(0,0,0,.48);
    --shadow2:0 45px 130px rgba(0,0,0,.78);
}

body {
    background:
        radial-gradient(circle at 8% 4%, rgba(255,225,143,.55), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(212,175,55,.24), transparent 26%),
        radial-gradient(circle at 55% 46%, rgba(255,255,255,.70), transparent 34%),
        linear-gradient(135deg, #fff8e7 0%, #fffaf1 42%, #f7ead0 100%);
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at 10% 0%, rgba(212,175,55,.20), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(255,241,168,.10), transparent 22%),
        linear-gradient(135deg, #050403 0%, #0c0905 46%, #020202 100%);
}

body::before {
    background-image:
        linear-gradient(rgba(154,113,25,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(154,113,25,.038) 1px, transparent 1px);
    background-size:54px 54px;
    opacity:.55;
}

body::after {
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255,255,255,.36) 42%, transparent 58%),
        radial-gradient(circle at bottom left, rgba(212,175,55,.14), transparent 26%);
    opacity:.55;
}

.store-header {
    background:rgba(255,250,235,.78);
    border-bottom:1px solid rgba(181,137,38,.15);
    box-shadow:0 14px 45px rgba(116,84,16,.08);
}

html[data-theme="dark"] .store-header {
    background:rgba(8,7,5,.82);
}

.header-main {
    gap:18px;
}

.brand img {
    width:56px;
    height:56px;
    filter:
        drop-shadow(0 14px 26px rgba(212,175,55,.24))
        drop-shadow(0 0 18px rgba(255,241,168,.18));
}

.brand strong {
    font-size:21px;
    color:var(--text);
}

.brand span {
    color:var(--muted);
    font-weight:700;
}

.search-form {
    height:58px;
    border-radius:22px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(196,148,39,.16);
    box-shadow:
        0 18px 45px rgba(99,73,18,.08),
        inset 0 1px 0 rgba(255,255,255,.70);
}

html[data-theme="dark"] .search-form {
    background:rgba(255,255,255,.055);
}

.search-form button,
.primary-btn,
.auth-chip,
.cart-btn,
.section-heading a,
.empty-state a,
.location-notice-card a,
.business-whatsapp-btn,
.merchant-detail-card a {
    background:
        linear-gradient(135deg, #b78016 0%, #f1cb63 38%, #fff2ac 58%, #c8941f 100%);
    color:#160f02;
    box-shadow:
        0 16px 34px rgba(200,148,31,.24),
        inset 0 1px 0 rgba(255,255,255,.58);
}

.theme-toggle,
.wallet-chip,
.secondary-btn,
.category-pill,
.horizontal-card,
.product-card,
.inline-horizontal-block,
.empty-state,
.location-notice-card,
.storefront-business-panel,
.merchant-map-panel,
.bottom-nav {
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(145,103,22,.14);
}

.store-hero {
    min-height:470px;
    gap:32px;
}

.hero-copy {
    position:relative;
    overflow:hidden;
    padding:44px;
    background:
        radial-gradient(circle at top left, rgba(255,230,151,.46), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255,255,255,.72), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,247,224,.72));
    border:1px solid rgba(172,127,31,.17);
    box-shadow:
        0 38px 100px rgba(128,92,18,.15),
        inset 0 1px 0 rgba(255,255,255,.80);
}

html[data-theme="dark"] .hero-copy {
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.20), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.hero-copy::after {
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-110px;
    bottom:-120px;
    border-radius:50%;
    background:rgba(212,175,55,.13);
    filter:blur(2px);
}

.premium-pill {
    background:
        linear-gradient(135deg, #b77b11, #ffe38b, #fff7ca);
    box-shadow:0 18px 35px rgba(200,148,31,.20);
}

.hero-copy h1 {
    max-width:720px;
    color:var(--text);
}

.hero-copy h1 span {
    color:transparent;
    background:linear-gradient(115deg, #9f7415, #d4af37, #fff1a8, #b8891e);
    background-size:220%;
    -webkit-background-clip:text;
    background-clip:text;
    animation:uccGoldTextShine 5s linear infinite;
}

@keyframes uccGoldTextShine {
    from { background-position:-220%; }
    to { background-position:220%; }
}

.hero-copy p {
    position:relative;
    z-index:2;
    font-size:17px;
    font-weight:600;
}

.hero-panel {
    min-height:470px;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,230,145,.54), transparent 34%),
        radial-gradient(circle at top right, rgba(255,255,255,.76), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,244,214,.72));
    border:1px solid rgba(172,127,31,.17);
    box-shadow:
        0 38px 100px rgba(128,92,18,.15),
        inset 0 1px 0 rgba(255,255,255,.75);
}

html[data-theme="dark"] .hero-panel {
    background:
        radial-gradient(circle at center, rgba(212,175,55,.24), transparent 42%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.hero-orbit {
    width:360px;
    height:360px;
    border-color:rgba(191,139,28,.26);
}

.hero-orbit::before,
.hero-orbit::after {
    content:"";
    position:absolute;
    width:12px;
    height:12px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    box-shadow:0 0 24px rgba(212,175,55,.55);
}

.hero-orbit::before {
    top:34px;
    left:58px;
}

.hero-orbit::after {
    right:44px;
    bottom:62px;
}

.hero-product-preview {
    background:rgba(255,255,255,.78);
    border:1px solid rgba(172,127,31,.16);
    box-shadow:
        0 35px 90px rgba(119,86,19,.16),
        inset 0 1px 0 rgba(255,255,255,.75);
}

html[data-theme="dark"] .hero-product-preview {
    background:rgba(255,255,255,.065);
}

.hero-card {
    background:rgba(255,255,255,.78);
    border:1px solid rgba(172,127,31,.14);
    box-shadow:0 24px 60px rgba(119,86,19,.12);
}

html[data-theme="dark"] .hero-card {
    background:rgba(255,255,255,.065);
}

.category-pill,
.horizontal-card,
.product-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,250,236,.76));
    border:1px solid rgba(142,100,22,.13);
}

html[data-theme="dark"] .category-pill,
html[data-theme="dark"] .horizontal-card,
html[data-theme="dark"] .product-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.category-pill {
    min-height:62px;
    border-radius:22px;
    box-shadow:0 18px 42px rgba(127,91,18,.08);
}

.category-pill:hover,
.horizontal-card:hover,
.product-card:hover,
.merchant-map-item:hover,
.merchant-map-item.active {
    transform:translateY(-4px);
    border-color:rgba(200,148,31,.36);
    box-shadow:0 34px 85px rgba(127,91,18,.15);
}

.product-card {
    position:relative;
    overflow:hidden;
    padding:16px;
    border-radius:32px;
}

.product-card::before {
    content:"";
    position:absolute;
    top:0;
    left:-80%;
    width:55%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
    transform:skewX(-18deg);
    opacity:0;
    pointer-events:none;
}

.product-card:hover::before {
    animation:uccCardSweep .85s ease;
}

@keyframes uccCardSweep {
    0% { left:-80%; opacity:0; }
    30% { opacity:.75; }
    100% { left:130%; opacity:0; }
}

.product-image {
    border-radius:26px;
    background:
        radial-gradient(circle at center, rgba(212,175,55,.18), transparent 45%),
        var(--soft);
}

.product-image img,
.horizontal-img img,
.mini-product-card img {
    transition:transform .55s ease;
}

.product-card:hover .product-image img,
.horizontal-card:hover .horizontal-img img,
.mini-product-card:hover img {
    transform:scale(1.045);
}

.product-title {
    color:var(--text);
    line-height:1.22;
}

.product-title:hover {
    color:var(--deep-gold);
}

.store-line {
    background:rgba(255,248,226,.64);
    border-color:rgba(200,148,31,.14);
}

html[data-theme="dark"] .store-line {
    background:rgba(255,255,255,.045);
}

.in-stock {
    padding:6px 10px;
    border-radius:999px;
    background:rgba(22,163,74,.10);
}

.out-stock {
    padding:6px 10px;
    border-radius:999px;
    background:rgba(239,68,68,.10);
}

.meta-line span {
    font-weight:700;
}

.cart-btn,
.view-btn {
    transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.cart-btn:hover,
.view-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.auth-chip:hover,
.wallet-chip:hover,
.theme-toggle:hover {
    transform:translateY(-2px);
}

.view-btn,
.secondary-btn {
    background:rgba(255,255,255,.58);
    border:1px solid rgba(145,103,22,.13);
}

html[data-theme="dark"] .view-btn,
html[data-theme="dark"] .secondary-btn {
    background:rgba(255,255,255,.075);
}

.bottom-nav {
    background:rgba(255,250,235,.84);
    border:1px solid rgba(145,103,22,.16);
}

html[data-theme="dark"] .bottom-nav {
    background:rgba(8,7,5,.84);
}

.bottom-nav a.active {
    background:
        linear-gradient(135deg, #b78016 0%, #f1cb63 42%, #fff2ac 62%, #c8941f 100%);
    color:#140e02;
}

.storefront-business-panel,
.merchant-map-panel {
    background:
        radial-gradient(circle at top left, rgba(255,230,151,.34), transparent 38%),
        radial-gradient(circle at bottom right, rgba(255,255,255,.50), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,248,225,.72));
}

html[data-theme="dark"] .storefront-business-panel,
html[data-theme="dark"] .merchant-map-panel {
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.merchant-real-map {
    border-radius:26px;
    box-shadow:
        inset 0 0 0 1px rgba(212,175,55,.10),
        0 16px 40px rgba(127,91,18,.08);
}

.infinite-scroll-status {
    background:
        radial-gradient(circle at top left, rgba(255,230,151,.28), transparent 35%),
        rgba(255,255,255,.78);
}

html[data-theme="dark"] .infinite-scroll-status {
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.16), transparent 35%),
        rgba(255,255,255,.055);
}

/* Mobile premium tightening */
@media(max-width:900px) {
    .store-hero {
        gap:20px;
    }

    .hero-copy,
    .hero-panel {
        border-radius:32px;
    }

    .hero-copy {
        padding:34px;
    }
}

@media(max-width:640px) {
    body {
        background:
            radial-gradient(circle at top left, rgba(255,225,143,.50), transparent 32%),
            linear-gradient(135deg, #fff8e7, #fffaf1 52%, #f8efd9);
    }

    .store-header {
        padding-top:10px;
    }

    .header-main,
    .mobile-search,
    .store-main {
        width:min(100% - 22px, 1240px);
    }

    .brand img {
        width:46px;
        height:46px;
    }

    .store-main {
        padding-top:18px;
        padding-bottom:108px;
    }

    .hero-copy {
        padding:26px 22px;
        border-radius:30px;
    }

    .hero-copy h1 {
        font-size:38px;
        letter-spacing:-2px;
    }

    .hero-copy p {
        font-size:14px;
        line-height:1.75;
    }

    .hero-panel {
        min-height:310px;
        border-radius:30px;
    }

    .hero-product-preview {
        width:220px;
        min-height:230px;
        padding:24px;
    }

    .product-card {
        border-radius:25px;
        padding:12px;
        gap:12px;
    }

    .product-image {
        border-radius:20px;
    }

    .product-bottom {
        gap:10px;
    }

    .bottom-nav {
        width:calc(100% - 22px);
        bottom:10px;
        height:66px;
        border-radius:24px;
    }
}

@media(max-width:390px) {
    .hero-copy h1 {
        font-size:34px;
    }

    .product-card {
        grid-template-columns:108px 1fr;
    }

    .product-bottom > strong {
        font-size:17px;
    }

    .cart-btn,
    .view-btn {
        padding:0 10px;
    }
}