@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --navy: #0a1628;
    --navy2: #0f2040;
    --blue: #1255cc;
    --bl: #1e6ef5;
    --bp: #e8f0fe;
    --green: #00c98d;
    --gd: #00a874;
    --gp: #e6faf4;
    --gold: #f5a623;
    --red: #e84040;
    --pu: #7c3aed;
    --orange: #f97316;
    --w: #fff;
    --gr: #f0f4fb;
    --gr2: #dde5f4;
    --tx: #1a2540;
    --mu: #6b7fa3;
    --br: rgba(18, 85, 204, .13);
    --sh: 0 4px 20px rgba(10, 22, 40, .08);
    --shl: 0 20px 56px rgba(10, 22, 40, .18);
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #f0f4fb;
    color: var(--tx);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
}

/* ── BC ── */
.bc {
    background: white;
    border-bottom: 1px solid var(--br);
    padding: 0 24px;
}

.bc-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    font-size: 12px;
    color: var(--mu);
    flex-wrap: wrap;
}

.bc-in a {
    color: var(--blue);
}

/* ── HERO ── */
.hero {
    background: var(--navy);
    padding: 48px 24px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% -5%, rgba(18, 85, 204, .55) 0%, transparent 65%), radial-gradient(ellipse 35% 45% at 95% 90%, rgba(0, 201, 141, .1) 0%, transparent 55%);
}

.hero-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: end;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns:1fr;
        gap: 28px;
        padding-bottom: 32px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 201, 141, .12);
    border: 1px solid rgba(0, 201, 141, .3);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .4;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 4.5vw, 46px);
    font-weight: 900;
    color: white;
    line-height: 1.12;
    letter-spacing: -.5px;
    margin-bottom: 12px;
}

.hero h1 em {
    color: var(--green);
    font-style: normal;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 24px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hbp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--bl), var(--blue));
    color: white;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(18, 85, 204, .3);
    transition: transform .15s;
}

.hbp:hover {
    transform: translateY(-2px);
}

.hbg {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .09);
    color: white;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s;
}

.hbg:hover {
    background: rgba(255, 255, 255, .15);
}

/* Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hst {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 18px 16px;
    min-width: 130px;
}

.hst-n {
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hst-n.g {
    color: var(--green);
}

.hst-n.b {
    color: #7eb8ff;
}

.hst-n.o {
    color: var(--gold);
}

.hst-l {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

/* Search inside hero */
.hero-search {
    background: rgba(255, 255, 255, .06);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.hs-form {
    display: flex;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    max-width: 700px;
}

.hs-form-in {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    min-width: 0;
}

.hs-form-in svg {
    color: var(--mu);
    flex-shrink: 0;
}

.hs-form-in input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--tx);
    min-width: 0;
}

.hs-form-in input::placeholder {
    color: #aab5cc;
}

.hs-btn {
    background: linear-gradient(135deg, var(--bl), var(--blue));
    color: white;
    border: none;
    padding: 0 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: 52px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.hs-btn:hover {
    opacity: .9;
}

.hs-quick {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hs-ql {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

.hs-qt {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    white-space: nowrap;
    transition: all .15s;
}

.hs-qt:hover {
    background: rgba(255, 255, 255, .18);
    color: white;
}

@media (max-width: 600px) {
    .hs-form {
        border-radius: 12px;
    }

    .hero-search {
        padding: 16px 0;
    }
}

/* ── TYPE STRIP ── */
.tstrip {
    background: white;
    border-bottom: 2px solid var(--br);
    position: sticky;
    top: 64px;
    z-index: 90;
}

.ts-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.ts-in::-webkit-scrollbar {
    display: none;
}

.tsb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 700;
    color: var(--mu);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
    flex-shrink: 0;
    margin-bottom: -2px;
}

.tsb:hover {
    color: var(--navy);
}

.tsb.on {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.tsc {
    background: var(--bp);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
}

.tsb.on .tsc {
    background: var(--blue);
    color: white;
}

@media (max-width: 600px) {
    .tstrip {
        position: static;
    }

    .tsb {
        padding: 10px 11px;
        font-size: 12px;
    }
}

/* ── MAIN ── */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 64px;
}

@media (max-width: 600px) {
    .main {
        padding: 16px 14px 48px;
    }
}

/* Section titles */
.sec-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sec-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec-link {
    font-size: 13px;
    color: var(--blue);
    font-weight: 700;
}

/* ── TOP MARGIN PROMO ── */
.top-promo {
    background: linear-gradient(135deg, var(--navy2) 0%, #1a2d50 100%);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    border: 2px solid rgba(245, 166, 35, .25);
    box-shadow: var(--sh);
    position: relative;
    overflow: hidden;
}

.top-promo::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .15) 0%, transparent 70%);
}

.tp-left h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 900;
    color: white;
    margin-bottom: 6px;
}

.tp-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.tp-right {
    flex-shrink: 0;
}

.tp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #e6960b);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(245, 166, 35, .3);
}

.tp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, .4);
}

@media (max-width: 600px) {
    .top-promo {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }

    .tp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── POPULAR CATEGORIES (scroll on mobile) ── */
.pop-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 28px;
}

.pop-scroll::-webkit-scrollbar {
    display: none;
}

.pop-card {
    flex-shrink: 0;
    width: 140px;
    border-radius: 16px;
    border: 2px solid var(--br);
    overflow: hidden;
    background: white;
    box-shadow: var(--sh);
    transition: border-color .2s, box-shadow .2s, transform .2s;
    cursor: pointer;
}

.pop-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shl);
    transform: translateY(-3px);
    text-decoration: none;
}

.pop-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    background: var(--gr);
}

.pop-label {
    padding: 10px 10px 12px;
}

.pop-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 3px;
}

.pop-cnt {
    font-size: 11px;
    color: var(--mu);
}

@media (max-width: 600px) {
    .pop-card {
        width: 120px;
    }

    .pop-img {
        height: 90px;
    }

    .pop-name {
        font-size: 12px;
    }
}

/* ── CATEGORIES FULL GRID ── */
.cat-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .cat-grid {
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .cat-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 6px;
    }
}

.cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--br);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--tx);
    font-weight: 500;
    box-shadow: var(--sh);
    transition: border-color .15s, background .15s, color .15s, transform .15s;
}

.cat-link:hover {
    border-color: var(--blue);
    background: var(--bp);
    color: var(--blue);
    transform: translateY(-2px);
    text-decoration: none;
}

.cat-link .ci {
    font-size: 18px;
    flex-shrink: 0;
}

.cat-link .ct {
    flex: 1;
    min-width: 0;
}

.cat-link .cn {
    display: block;
    font-size: 10px;
    color: var(--mu);
    margin-top: 1px;
    font-weight: 400;
}

@media (max-width: 600px) {
    .cat-link {
        padding: 10px 12px;
        font-size: 12.5px;
    }

    .cat-link .ci {
        font-size: 16px;
    }
}

/* hidden cats */
.cat-extra {
    display: none;
}

/* show more */
.show-more-wrap {
    text-align: center;
    margin-bottom: 28px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid var(--br);
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
}

.btn-show-more:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(18, 85, 204, .12);
}

/* ── FEATURED PRODUCTS ── */
.prod-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

@media (max-width: 600px) {
    .prod-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 10px;
    }
}

.pg {
    background: white;
    border-radius: 14px;
    border: 2px solid var(--br);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.pg:hover {
    border-color: var(--blue);
    box-shadow: var(--shl);
    transform: translateY(-3px);
    text-decoration: none;
}

.pg-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--gr);
}

@media (max-width: 600px) {
    .pg-img {
        height: 130px;
    }
}

.pg-body {
    padding: 10px 12px;
}

.pg-sup {
    font-size: 11px;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 3px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pg-name {
    font-size: 12px;
    color: var(--tx);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 7px;
    min-height: 33px;
}

.pg-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.pg-lock {
    font-size: 12px;
    color: var(--blue);
    font-weight: 700;
}

.pg-tag {
    display: inline-block;
    margin-top: 5px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 5px;
}

/* ── SUPPLIER PROMO ── */
.sup-promo {
    background: linear-gradient(135deg, var(--blue) 0%, #0c40a0 100%);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}

.sup-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(0, 201, 141, .12) 0%, transparent 60%);
}

.sp-in {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .sp-in {
        grid-template-columns:1fr;
        gap: 24px;
    }
}

.sp-l h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
}

.sp-l p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sp-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sp-btn-g {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--green), var(--gd));
    color: white;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 201, 141, .28);
    transition: transform .15s;
}

.sp-btn-g:hover {
    transform: translateY(-2px);
}

.sp-btn-w {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    color: white;
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.sp-btn-w:hover {
    background: rgba(255, 255, 255, .18);
}

.sp-r {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
}

.sp-stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.sp-stat strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.sp-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 48px 40px 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: left;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 24px;
    }
}

.footer-brand svg {
    height: 26px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.65;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    padding: 4px 0;
    transition: color .15s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .25);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: var(--green);
}

/* ── REVEAL ── */
.rev {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}

.rev.v {
    opacity: 1;
    transform: none;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hst {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 18px 16px;
    min-width: 130px;
}

.hst-n {
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hst-n.g {
    color: var(--green);
}

.hst-n.b {
    color: #7eb8ff;
}

.hst-n.o {
    color: var(--gold);
}

.hst-l {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

/* Search inside hero */
.hero-search {
    background: rgba(255, 255, 255, .06);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px;
}

.hs-form {
    display: flex;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    max-width: 700px;
}

.hs-form-in {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    min-width: 0;
}

.hs-form-in svg {
    color: var(--mu);
    flex-shrink: 0;
}

.hs-form-in input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--tx);
    min-width: 0;
}

.hs-form-in input::placeholder {
    color: #aab5cc;
}

.hs-btn {
    background: linear-gradient(135deg, var(--bl), var(--blue));
    color: white;
    border: none;
    padding: 0 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: 52px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.hs-btn:hover {
    opacity: .9;
}

.hs-quick {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hs-ql {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

.hs-qt {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    white-space: nowrap;
    transition: all .15s;
}

.hs-qt:hover {
    background: rgba(255, 255, 255, .18);
    color: white;
}

@media (max-width: 600px) {
    .hs-form {
        border-radius: 12px;
    }

    .hero-search {
        padding: 16px 0;
    }
}