*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
    font-family:Arial,Helvetica,sans-serif;
    color:#10172f;
    background:#fff;
    font-size:16px;
}
a{color:inherit}
input,button,select{font-family:inherit}

:root{
    --green:#71C248;
    --green-dark:#4d9c29;
    --orange:#F69220;
    --dark:#10172f;
    --muted:#64748b;
    --line:#e3eaf2;
    --soft:#f5f8f2;
    --soft-green:#eef8e8;
    --radius:16px;
    --radius-small:10px;
    --shadow:0 10px 28px rgba(16,23,47,.08);
}

/* SERVICE BAR */
.servicebar{
    height:38px;
    background:#fff;
    border-bottom:1px solid var(--line);
    font-size:13px;
}
.servicebar-inner{
    max-width:1240px;
    height:38px;
    margin:0 auto;
    padding:0 24px;
    display:flex;
    align-items:center;
    gap:34px;
    color:#10172f;
}
.servicebar .review{
    margin-left:auto;
    color:var(--green-dark);
    font-weight:700;
}

/* HEADER */
.mio-header{
    background:#fff;
    border-bottom:1px solid var(--line);
}
.mio-header-inner{
    max-width:1240px;
    height:86px;
    margin:0 auto;
    padding:0 24px;
    display:flex;
    align-items:center;
    gap:32px;
}
.mio-logo{
    width:180px;
    text-decoration:none;
}
.mio-logo-text{
    font-size:46px;
    line-height:1;
    font-weight:900;
    letter-spacing:-4px;
    color:var(--green-dark);
}
.mio-logo-text span{color:var(--orange)}
.mio-search{
    flex:1;
    height:54px;
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid var(--line);
    border-radius:999px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(16,23,47,.06);
}
.mio-search input{
    flex:1;
    min-width:0;
    height:54px;
    border:0;
    outline:0;
    padding:0 22px;
    color:var(--dark);
    font-size:15px;
}
.mio-search select{
    height:54px;
    border:0;
    border-left:1px solid var(--line);
    background:#fff;
    color:var(--dark);
    padding:0 16px;
    outline:0;
}
.mio-search button{
    width:58px;
    height:46px;
    margin-right:4px;
    border:0;
    border-radius:999px;
    background:var(--orange);
    color:#fff;
    font-size:26px;
    font-weight:900;
    cursor:pointer;
}
.mio-links{
    display:flex;
    gap:20px;
    white-space:nowrap;
    font-weight:700;
    font-size:14px;
}
.mio-links a{text-decoration:none}

/* CATEGORY NAV */
.mio-categories{
    background:#fff;
}
.mio-categories-inner{
    max-width:1240px;
    min-height:72px;
    margin:0 auto;
    padding:10px 24px;
    display:flex;
    align-items:center;
    gap:12px;
    overflow:auto;
}
.mio-categories-inner{
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    transform:translateY(12px);
    background:#fff;
}
.mio-categories a{
    text-decoration:none;
    color:var(--dark);
    font-size:14px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 14px;
    border-radius:12px;
    white-space:nowrap;
}
.mio-categories a:hover{
    background:var(--soft-green);
    color:var(--green-dark);
}
.mio-categories span{
    color:var(--green-dark);
    font-weight:900;
}
.mio-all-cats{
    background:var(--green-dark)!important;
    color:#fff!important;
    padding:15px 20px!important;
}
.mio-all-cats span{color:#fff!important}
.nav-right{margin-left:auto}

/* MAIN */
.mio-main{padding-top:28px}

/* HERO */
.hero{
    max-width:1240px;
    margin:26px auto 0;
    padding:58px 56px;
    min-height:360px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:32px;
    background:linear-gradient(90deg,#f8fbf4 0%,#eef8e8 100%);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    position:relative;
}
.hero-copy{position:relative;z-index:2}
.hero-pill{
    display:inline-block;
    margin:0 0 16px;
    padding:8px 14px;
    color:var(--green-dark);
    background:#e4f5d9;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
}
.hero h1{
    margin:0 0 18px;
    max-width:650px;
    font-size:46px;
    line-height:1.08;
    letter-spacing:-2px;
    color:var(--dark);
}
.hero h1 span{color:var(--green-dark)}
.lead{
    max-width:560px;
    margin:0;
    color:#334155;
    font-size:18px;
    line-height:1.55;
}
.hero-search{
    display:flex;
    max-width:660px;
    height:58px;
    margin-top:26px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    overflow:hidden;
}
.hero-search input{
    flex:1;
    min-width:0;
    border:0;
    outline:0;
    padding:0 18px;
    font-size:15px;
}
.hero-search select{
    border:0;
    border-left:1px solid var(--line);
    padding:0 14px;
    background:#fff;
    outline:0;
}
.hero-search button{
    border:0;
    background:var(--green-dark);
    color:#fff;
    font-weight:900;
    padding:0 28px;
    cursor:pointer;
}
.trust-row{
    display:flex;
    flex-wrap:wrap;
    gap:26px;
    margin-top:20px;
    color:#2f6f1d;
    font-size:14px;
    font-weight:700;
}
.hero-visual{
    position:relative;
    min-height:270px;
    border-radius:18px;
}
.hero-visual:before{
    content:"";
    position:absolute;
    inset:-80px -120px -80px 0;
    background:radial-gradient(circle at 50% 50%,#d7efc8 0%,#f8fbf4 66%);
    border-radius:50%;
}
.discount{
    position:absolute;
    width:84px;
    height:84px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.72);
    color:#9bc686;
    font-size:32px;
    font-weight:900;
    border-radius:50%;
    z-index:2;
}
.discount-one{left:120px;top:66px}
.discount-two{right:150px;top:10px}
.discount-three{right:42px;top:86px}
.mock-products{
    position:absolute;
    z-index:3;
    left:120px;
    right:25px;
    bottom:16px;
    height:150px;
    display:flex;
    align-items:end;
    gap:12px;
}
.mock-box{
    width:92px;
    height:110px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green-dark);
    font-weight:900;
    box-shadow:0 10px 24px rgba(16,23,47,.08);
}
.box-b{height:145px;width:130px;color:var(--orange)}
.box-c{height:122px}
.box-d{height:92px}

/* CATEGORY STRIP */
.category-strip{
    max-width:1240px;
    margin:34px auto 28px;
    padding:0 24px;
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:16px;
}
.category-strip a{
    min-height:74px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 8px 20px rgba(16,23,47,.06);
    color:var(--dark);
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    font-weight:900;
}
.category-strip span{
    color:var(--green-dark);
    font-size:24px;
}

/* SECTIONS */
.section-head{
    max-width:1240px;
    margin:18px auto 16px;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.section-head h2{
    margin:0;
    color:var(--dark);
    font-size:26px;
    letter-spacing:-.5px;
}
.text-link{
    color:var(--orange);
    text-decoration:none;
    font-weight:900;
}

/* PRODUCTS */
.product-grid{
    max-width:1240px;
    margin:0 auto 36px;
    padding:0 24px;
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
    gap:18px;
}
.product-grid.inner{
    max-width:none;
    margin:0;
    padding:0;
}
.product-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(16,23,47,.06);
    display:flex;
    flex-direction:column;
    min-height:360px;
}
.product-image{
    height:165px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:16px;
    position:relative;
}
.product-image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}
.heart{
    position:absolute;
    top:12px;
    right:14px;
    color:#35445e;
    font-size:23px;
}
.image-placeholder{
    width:72px;
    height:72px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef8e8;
    color:var(--green-dark);
    font-weight:900;
}
.product-body{
    padding:15px 16px 16px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.product-body h3{
    margin:0;
    color:var(--dark);
    font-size:15px;
    line-height:1.35;
    min-height:42px;
}
.brand{
    margin:8px 0 0;
    color:var(--muted);
    font-size:13px;
}
.price{
    margin:12px 0 6px;
    color:var(--dark);
    font-size:19px;
    font-weight:900;
}
.shop-row{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#334155;
    font-size:13px;
    font-weight:700;
}
.button{
    display:none;
}

/* BENEFITS */
.benefits{
    max-width:1240px;
    margin:0 auto 44px;
    padding:0 24px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}
.benefits div{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:20px;
    box-shadow:0 8px 22px rgba(16,23,47,.05);
}
.benefits strong{
    display:block;
    margin-bottom:6px;
}
.benefits span{
    color:var(--muted);
    font-size:13px;
}

/* SEARCH PAGE */
.page-hero{
    max-width:1240px;
    margin:28px auto;
    padding:38px;
    background:var(--soft-green);
    border:1px solid var(--line);
    border-radius:18px;
}
.page-hero h1{
    margin:0 0 20px;
    font-size:38px;
    line-height:1.15;
}
.content-shell{
    max-width:1240px;
    margin:0 auto 45px;
    padding:0 24px;
    display:grid;
    grid-template-columns:240px 1fr;
    gap:24px;
}
.filter-panel{
    border:1px solid var(--line);
    border-radius:16px;
    padding:18px;
    align-self:start;
}
.filter-panel p{
    color:var(--muted);
    font-size:13px;
}
.filter-panel span{
    display:block;
    padding:12px 0;
    border-top:1px solid var(--line);
    font-weight:700;
}
.results-head{margin-bottom:16px}
.empty-state{
    grid-column:1/-1;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:34px;
}

/* FOOTER */
.mio-footer{
    border-top:1px solid var(--line);
    background:#f8fafc;
    padding:30px 24px;
}
.mio-footer div{
    max-width:1240px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    gap:20px;
    color:var(--muted);
}
.mio-footer strong{color:var(--dark)}

@media(max-width:1000px){
    .mio-header-inner{
        height:auto;
        display:grid;
        grid-template-columns:1fr;
        gap:16px;
        padding:18px 24px;
    }
    .mio-logo{width:auto}
    .mio-links{display:none}
    .hero{
        grid-template-columns:1fr;
        margin:24px 20px 0;
        padding:34px;
    }
    .hero h1{font-size:36px}
    .hero-visual{display:none}
    .category-strip{grid-template-columns:repeat(3,1fr)}
    .benefits{grid-template-columns:1fr 1fr}
    .content-shell{grid-template-columns:1fr}
    .filter-panel{display:none}
}
@media(max-width:620px){
    .servicebar{display:none}
    .mio-search select{display:none}
    .mio-search button{width:52px}
    .mio-categories-inner{
        border-radius:0;
        transform:none;
        border-left:0;
        border-right:0;
    }
    .mio-main{padding-top:0}
    .hero{
        margin:16px 12px 0;
        padding:24px;
        border-radius:16px;
    }
    .hero h1{font-size:30px}
    .hero-search{
        display:grid;
        height:auto;
    }
    .hero-search select{display:none}
    .hero-search button{height:48px}
    .category-strip{
        grid-template-columns:repeat(2,1fr);
        padding:0 12px;
    }
    .product-grid{padding:0 12px}
    .benefits{grid-template-columns:1fr;padding:0 12px}
    .mio-footer div{display:block}
}
