:root{
    --navy:#061a4f;
    --blue:#075cff;
    --pink:#ff0a73;
    --cyan:#00cfff;
    --violet:#6b3cff;
    --bg:#f5f7fb;
    --line:#e1e6ef;
    --muted:#6d7685;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:var(--bg);
    color:#1e2532;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
select,
textarea{
    font:inherit;
}

.container{
    width:min(1240px,calc(100% - 28px));
    margin:auto;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar{
    background:#001034;
    color:#dce6ff;
    font-size:11px;
}

.topbar-in{
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.topbar strong{
    color:#ff68a7;
}


/* =========================================================
   HEADER
========================================================= */

.header{
    background:#fff;
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:30;
    box-shadow:0 2px 10px #0010340a;
}

.head{
    min-height:82px;
    display:grid;
    grid-template-columns:205px 1fr auto;
    gap:22px;
    align-items:center;
}

.logo img{
    width:190px;
    height:58px;
    object-fit:contain;
    object-position:left;
}

.search{
    height:45px;
    display:flex;
    border:2px solid var(--blue);
    border-radius:9px;
    overflow:hidden;
}

.search input{
    flex:1;
    border:0;
    outline:0;
    padding:0 14px;
}

.search button{
    width:55px;
    border:0;
    background:var(--blue);
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.head-tools{
    display:flex;
    gap:5px;
}

.head-tools a{
    padding:8px;
    display:flex;
    align-items:center;
    gap:7px;
    position:relative;
    font-size:20px;
}

.head-tools a span{
    font-size:12px;
    font-weight:800;
}

.cart-link b{
    position:absolute;
    top:0;
    left:18px;
    background:var(--pink);
    color:#fff;
    border-radius:50%;
    width:18px;
    height:18px;
    display:grid;
    place-items:center;
    font-size:9px;
    border:2px solid white;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav{
    height:48px;
    border-top:1px solid #eef1f6;
}

.nav-in{
    height:100%;
    display:flex;
    align-items:center;
    overflow:auto;
}

.nav-in a{
    height:48px;
    padding:0 17px;
    display:flex;
    align-items:center;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}

.nav-in a:hover,
.nav-in a.active{
    background:var(--blue);
    color:#fff;
}


/* =========================================================
   GENERAL
========================================================= */

.page{
    padding-bottom:60px;
}

.breadcrumb{
    font-size:10px;
    color:#7e8795;
    padding:15px 0;
}

.breadcrumb a{
    color:var(--blue);
}

.page-title{
    font-size:31px;
    color:var(--navy);
    margin:10px 0 18px;
}

.section{
    padding:28px 0;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    border-radius:8px;
    padding:0 17px;
    font-size:12px;
    font-weight:850;
    border:0;
    cursor:pointer;
}

.primary{
    background:var(--blue);
    color:#fff;
}

.secondary{
    border:1px solid var(--line);
    background:#fff;
    color:var(--navy);
}


/* =========================================================
   HERO
========================================================= */

.hero{
    min-height:410px;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border:1px solid var(--line);
    overflow:hidden;
    border-radius:7px;
}

.hero-copy{
    padding:44px;
}

.hero-copy small{
    font-size:10px;
    letter-spacing:.15em;
    color:var(--blue);
    font-weight:900;
}

.hero-copy h1{
    font-size:52px;
    line-height:.96;
    letter-spacing:-2.7px;
    color:var(--navy);
    margin:14px 0;
}

.hero-copy h1 span{
    background:linear-gradient(90deg,var(--blue),var(--pink));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-copy p{
    color:var(--muted);
    line-height:1.6;
    font-size:15px;
}

.hero-art{
    background:radial-gradient(
        circle at 65% 32%,
        #075cff,
        #071a52 44%,
        #020a22 78%
    );
    display:grid;
    place-items:center;
    position:relative;
}

.hero-art img{
    width:72%;
    max-width:420px;
}

.hero-art strong{
    position:absolute;
    bottom:33px;
    color:#dce8ff;
    font-size:12px;
}


/* =========================================================
   NOTICE ROW
========================================================= */

.notice-row{
    margin-top:15px;
    background:#fff;
    border:1px solid var(--line);
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.notice-row>div{
    padding:16px;
    display:flex;
    gap:10px;
    align-items:center;
    border-right:1px solid var(--line);
}

.notice-row>div:last-child{
    border-right:0;
}

.notice-row b{
    font-size:11px;
}

.notice-row small{
    display:block;
    color:#7b8595;
    font-size:9px;
    margin-top:3px;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories,
.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:11px;
}

.cat,
.product{
    background:#fff;
    border:1px solid var(--line);
    border-radius:7px;
    overflow:hidden;
}

.cat{
    padding:15px;
    display:flex;
    align-items:center;
    gap:11px;
    justify-content:space-between;
}

.cat-icon{
    width:52px;
    height:52px;
    border-radius:11px;
    color:#fff;
    display:grid;
    place-items:center;
    background:var(--blue);
    font-size:22px;
}

.cat:nth-child(2) .cat-icon{
    background:var(--pink);
}

.cat:nth-child(3) .cat-icon{
    background:var(--cyan);
}

.cat:nth-child(4) .cat-icon{
    background:var(--violet);
}

.cat b{
    font-size:13px;
    color:var(--navy);
    display:block;
}

.cat small{
    font-size:9px;
    color:var(--muted);
}


/* =========================================================
   CAMPAIGNS
========================================================= */

.campaigns{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:7px;
}

.campaign{
    color:#fff;
    border-radius:6px;
    padding:12px;
    min-height:75px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.campaign span{
    font-size:8px;
    font-weight:900;
    letter-spacing:.14em;
}

.campaign b{
    font-size:12px;
    margin:3px 0;
}

.campaign small{
    font-size:9px;
    opacity:.83;
}

.c1{
    background:#075cff;
}

.c2{
    background:#ff0a73;
}

.c3{
    background:#00a7d0;
}

.c4{
    background:#6b3cff;
}


/* =========================================================
   DARK SECTION
========================================================= */

.dark-wrap{
    background:#061a4f;
    border-radius:7px;
    padding:26px;
}

.dark-wrap h2{
    color:#fff;
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.product{
    display:flex;
    flex-direction:column;
    background:#fff;
}

.product-img{
    height:260px;
    background:#fff;
    display:grid;
    place-items:center;
    position:relative;
    overflow:hidden;
}

.product-photo{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    padding:12px;
    background:#fff;
    display:block;
}

.shape{
    width:112px;
    height:112px;
    border-radius:22px;
    background:linear-gradient(145deg,#fff,#c9d6ed);
    position:relative;
}

.shape:after{
    content:"";
    position:absolute;
    inset:19px;
    background:#071b55;
    border-radius:14px;
}

.shape.garden{
    border-radius:50%;
    background:linear-gradient(145deg,var(--cyan),var(--blue));
}

.shape.garden:after{
    inset:29px;
    border-radius:50%;
}

.shape.drill{
    width:140px;
    height:84px;
    border-radius:19px;
    background:linear-gradient(145deg,#ff5a2b,#ff0a73);
}

.shape.drill:after{
    inset:14px 17px 14px 55px;
}

.badge{
    position:absolute;
    top:10px;
    left:10px;
    z-index:3;
    background:var(--pink);
    color:#fff;
    border-radius:99px;
    padding:6px 8px;
    font-size:8px;
    font-weight:900;
}

.product-body{
    padding:16px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.brandline{
    font-size:8px;
    color:#8b94a2;
    text-transform:uppercase;
    letter-spacing:.1em;
    font-weight:900;
}

.pname{
    font-size:13px;
    min-height:38px;
    line-height:1.3;
    margin:7px 0;
}

.rating{
    font-size:10px;
    color:var(--blue);
    font-weight:900;
}

.price-row{
    display:flex;
    align-items:baseline;
    gap:7px;
    margin:9px 0;
    margin-top:auto;
}

.price{
    font-size:18px;
    font-weight:900;
    color:var(--navy);
}

.old{
    font-size:9px;
    color:#9ca4ae;
    text-decoration:line-through;
}

.whatsapp{
    width:100%;
    min-height:42px;
    padding:10px;
    border:0;
    border-radius:6px;
    background:linear-gradient(90deg,var(--blue),var(--pink));
    color:#fff;
    font-weight:850;
    font-size:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:4px;
    text-align:center;
}

.code{
    font-size:8px;
    color:#8a93a0;
    margin-top:6px;
}


/* =========================================================
   SHOP / FILTERS
========================================================= */

.shop{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:13px;
}

.filters{
    background:#fff;
    border:1px solid var(--line);
    border-radius:7px;
    padding:14px;
    height:max-content;
}

.filter-head{
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid var(--line);
    padding-bottom:10px;
}

.filters h4{
    font-size:10px;
    color:var(--navy);
    margin:16px 0 8px;
}

.filters label{
    font-size:10px;
    color:#6e7887;
    display:block;
    margin:8px 0;
}

.filters button{
    border:0;
    background:none;
    color:var(--blue);
    font-size:9px;
}

.toolbar{
    background:#fff;
    border:1px solid var(--line);
    padding:10px;
    margin-bottom:10px;
    display:flex;
    justify-content:space-between;
}

.toolbar select{
    padding:8px;
    border:1px solid var(--line);
    border-radius:6px;
}


/* =========================================================
   ZUHOP PLUS
========================================================= */

.plus{
    background:linear-gradient(110deg,#061a4f,#0a2e88);
    border-radius:7px;
    color:#fff;
    padding:28px;
    display:grid;
    grid-template-columns:1fr .5fr;
}

.plus h2{
    font-size:38px;
    margin:6px 0;
}

.plus h2 span{
    color:var(--pink);
}

.plus li{
    font-size:10px;
    line-height:2;
}

.plus-art{
    display:grid;
    place-items:center;
    font-size:115px;
    color:var(--cyan);
}


/* =========================================================
   PANELS / FORMS
========================================================= */

.panel{
    background:#fff;
    border:1px solid var(--line);
    border-radius:7px;
    padding:22px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:11px;
}

.field{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.field label{
    font-size:10px;
    font-weight:800;
    color:#4a5569;
}

.field input,
.field textarea,
.field select{
    padding:10px;
    border:1px solid #dce1ea;
    border-radius:6px;
    outline:0;
}

.full{
    grid-column:1/-1;
}

.info{
    font-size:12px;
    color:var(--muted);
    line-height:1.6;
}

.summary{
    padding:15px;
    background:#f3f6fb;
    border:1px solid var(--line);
    border-radius:6px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#020718;
    color:#dbe6ff;
    padding:42px 0 18px;
    margin-top:40px;
}

.foot-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:24px;
}

.foot-grid img{
    width:200px;
}

.foot-grid p{
    font-size:10px;
    color:#7f8eab;
}

.foot-grid h4{
    font-size:11px;
    color:#fff;
}

.foot-grid a{
    display:block;
    font-size:9px;
    color:#7f90ad;
    margin:8px 0;
}

.footer-bottom{
    border-top:1px solid #ffffff14;
    padding-top:12px;
    margin-top:25px;
    color:#65769b;
    font-size:9px;
}


/* =========================================================
   ADMIN
========================================================= */

.admin-nav{
    background:#061a4f;
    color:#fff;
    padding:10px 0;
}

.admin-nav a{
    margin-right:18px;
    font-size:11px;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.admin-table th,
.admin-table td{
    border-bottom:1px solid var(--line);
    padding:9px;
    text-align:left;
    font-size:10px;
}

.notice{
    padding:11px;
    background:#eef5ff;
    border:1px solid #dce7fb;
    border-radius:6px;
    margin-bottom:12px;
    font-size:11px;
}

.danger{
    background:#fff1f3;
    border-color:#ffcfd9;
}

.hidden{
    display:none;
}


/* =========================================================
   ADMIN PRODUCT GALLERY
========================================================= */

.admin-product-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:18px;
}

.admin-product-image{
    border:1px solid var(--line);
    border-radius:10px;
    padding:12px;
    background:#fff;
    display:flex;
    flex-direction:column;
    gap:9px;
}

.admin-product-image img{
    width:100%;
    height:170px;
    object-fit:contain;
    background:#f5f7fb;
    border-radius:7px;
}

.admin-product-image strong{
    font-size:12px;
    color:var(--blue);
}


/* =========================================================
   DESKTOP SCALE
========================================================= */

@media (min-width:1001px){

    .container{
        width:min(1480px,calc(100% - 48px));
    }

    .topbar{
        font-size:13px;
    }

    .topbar-in{
        height:36px;
    }

    .head{
        min-height:92px;
        grid-template-columns:230px 1fr auto;
        gap:26px;
    }

    .logo img{
        width:215px;
        height:68px;
    }

    .search{
        height:52px;
        border-radius:10px;
    }

    .search input{
        padding:0 18px;
        font-size:16px;
    }

    .search button{
        width:62px;
        font-size:23px;
    }

    .head-tools{
        gap:10px;
    }

    .head-tools a{
        padding:10px;
        gap:8px;
        font-size:22px;
    }

    .head-tools a span{
        font-size:14px;
    }

    .nav{
        height:54px;
    }

    .nav-in a{
        height:54px;
        padding:0 21px;
        font-size:14px;
    }

    .page-title{
        font-size:38px;
    }

    .section{
        padding:36px 0;
    }

    .btn{
        min-height:50px;
        padding:0 21px;
        font-size:14px;
    }

    .hero{
        min-height:455px;
    }

    .hero-copy{
        padding:55px;
    }

    .hero-copy small{
        font-size:12px;
    }

    .hero-copy h1{
        font-size:62px;
        line-height:.98;
    }

    .hero-copy p{
        font-size:17px;
        line-height:1.65;
    }

    .hero-art img{
        width:74%;
        max-width:490px;
    }

    .hero-art strong{
        bottom:38px;
        font-size:14px;
    }

    .notice-row{
        margin-top:18px;
    }

    .notice-row>div{
        padding:20px;
        gap:13px;
    }

    .notice-row b{
        font-size:13px;
    }

    .notice-row small{
        font-size:11px;
    }

    .categories,
    .products{
        gap:16px;
    }

    .cat{
        padding:20px;
        gap:15px;
        border-radius:9px;
    }

    .cat-icon{
        width:60px;
        height:60px;
        font-size:25px;
    }

    .cat b{
        font-size:15px;
    }

    .cat small{
        font-size:11px;
    }

    .campaigns{
        gap:12px;
    }

    .campaign{
        min-height:100px;
        padding:17px;
        border-radius:8px;
    }

    .campaign span{
        font-size:10px;
    }

    .campaign b{
        font-size:15px;
        margin:5px 0;
    }

    .campaign small{
        font-size:11px;
    }

    .dark-wrap{
        padding:34px;
    }

    .product-img{
        height:260px;
    }

    .product-body{
        padding:18px;
    }

    .brandline{
        font-size:10px;
    }

    .pname{
        font-size:15px;
        min-height:45px;
        line-height:1.4;
    }

    .rating{
        font-size:12px;
    }

    .price{
        font-size:23px;
    }

    .old{
        font-size:11px;
    }

    .badge{
        top:13px;
        left:13px;
        padding:7px 10px;
        font-size:10px;
    }

    .whatsapp{
        padding:13px;
        font-size:12px;
    }

    .code{
        font-size:10px;
    }

    .shop{
        grid-template-columns:260px 1fr;
        gap:18px;
    }

    .filters{
        padding:18px;
    }

    .filters h4{
        font-size:13px;
    }

    .filters label{
        font-size:12px;
    }

    .filters button{
        font-size:11px;
    }

    .toolbar{
        padding:14px;
    }

    .plus{
        padding:38px;
    }

    .plus h2{
        font-size:46px;
    }

    .plus li{
        font-size:13px;
    }

    .panel{
        padding:28px;
    }

    .field label{
        font-size:12px;
    }

    .field input,
    .field textarea,
    .field select{
        padding:13px;
        font-size:14px;
    }

    .info{
        font-size:14px;
    }

    .footer{
        padding:52px 0 22px;
    }

    .foot-grid p{
        font-size:12px;
    }

    .foot-grid h4{
        font-size:14px;
    }

    .foot-grid a{
        font-size:11px;
    }

    .footer-bottom{
        font-size:11px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){

    .head{
        grid-template-columns:165px 1fr auto;
    }

    .head-tools .txt{
        display:none;
    }

    .products,
    .categories,
    .campaigns{
        grid-template-columns:repeat(2,1fr);
    }

    .notice-row{
        grid-template-columns:repeat(2,1fr);
    }

    .admin-product-gallery{
        grid-template-columns:repeat(2,1fr);
    }
}


/* =========================================================
   MOBILE / TABLET SMALL
========================================================= */

@media(max-width:760px){

    .head{
        grid-template-columns:140px 1fr auto;
    }

    .logo img{
        width:140px;
    }

    .hero{
        grid-template-columns:1fr;
    }

    .hero-art{
        min-height:320px;
    }

    .shop{
        grid-template-columns:1fr;
    }

    .filters{
        display:none;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .full{
        grid-column:auto;
    }

    .plus{
        grid-template-columns:1fr;
    }

    .plus-art{
        display:none;
    }

    .foot-grid{
        grid-template-columns:1fr 1fr;
    }

    .product-img{
        height:300px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .admin-product-gallery{
        grid-template-columns:1fr;
    }
}

@media(max-width:520px){

    .container{
        width:calc(100% - 18px);
    }

    .products,
    .categories,
    .campaigns{
        grid-template-columns:1fr;
    }

    .notice-row{
        grid-template-columns:1fr;
    }

    .hero-copy{
        padding:28px;
    }

    .hero-copy h1{
        font-size:44px;
    }

    .foot-grid{
        grid-template-columns:1fr 1fr;
    }
}
/* =========================================================
   ZUHOP PLUS
========================================================= */

.account-link{
    position:relative;
}

.header-zplus-logo{
    width:29px !important;
    height:29px !important;
    object-fit:contain;
    padding:0 !important;
    margin-left:3px;
}


.zplus-product-mark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#eef3ff;
    border:1px solid #d9e3ff;
}

.zplus-product-mark img{
    width:28px;
    height:28px;
    object-fit:contain;
}


.zplus-shipping-box{
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    padding:17px 18px;
    margin-top:12px;
}

.zplus-progress{
    height:8px;
    background:#e5edf8;
    border-radius:999px;
    overflow:hidden;
    margin:17px 0 10px;
}

.zplus-progress-bar{
    height:100%;
    background:var(--blue);
    border-radius:999px;
    transition:width .25s ease;
}

.zplus-thresholds{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    font-size:12px;
}

.zplus-threshold{
    color:var(--navy);
    font-weight:800;
}

.zplus-threshold small{
    display:block;
    color:#7a8494;
    font-weight:400;
    margin-top:2px;
}