@charset "utf-8";
/* CSS Document */



/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: #F8FAFC;

    color: var(--text-dark);

}


a {
    text-decoration: none;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    width: 100%;

    background: var(--white);

    position: relative;

    z-index: 1000;

}


/* =====================================================
   HEADER MAIN
===================================================== */

.header-main {

    height: var(--header-height);

    background: var(--white);

    border-bottom: 1px solid #EEF1F5;

}


.header-wrapper {

    height: var(--header-height);

    display: flex;

    align-items: center;

    gap: 30px;

}


/* =====================================================
   LOGO
===================================================== */

.brand-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.logo-placeholder {

    width: 215px;

    height: 65px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

}
.logo-placeholder img {

    display: block;

    max-width: 100%;

    max-height: 65px;

    width: auto;

    height: auto;

    object-fit: contain;

}






/* =====================================================
   SEARCH
===================================================== */

.header-search {

    flex: 1;

    max-width: 620px;

    margin-left: auto;

    margin-right: auto;

}


.search-form {

    position: relative;

    width: 100%;

}


.search-form .form-control {

    height: 46px;

    border: 1px solid #D5DCE6;

    border-radius: 12px;

    padding-left: 18px;

    padding-right: 55px;

    font-size: 14px;

    color: var(--text-dark);

    box-shadow: none;

    transition: all .2s ease;

}


.search-form .form-control::placeholder {

    color: #98A2B3;

}


.search-form .form-control:focus {

    border-color: var(--ice-blue);

    box-shadow:
        0 0 0 3px rgba(0, 168, 204, .10);

}


.search-form button {

    position: absolute;

    top: 0;

    right: 0;

    width: 52px;

    height: 46px;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}
/* =====================================================
   SEARCH CLEAR
===================================================== */

.search-form .search-clear {

    position: absolute;

    top: 0;

    right: 52px;

    width: 32px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #98A2B3;

    text-decoration: none;

    background: transparent;

    border: 0;

    cursor: pointer;

    z-index: 2;

}


.search-form .search-clear i {

    font-size: 19px;

    line-height: 1;

}


.search-form .search-clear:hover {

    color: var(--navy);

}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {

    display: flex;

    align-items: center;

    gap: 25px;

    flex-shrink: 0;

}


.header-action {

    position: relative;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--navy);

    font-size: 25px;

    transition: all .2s ease;

}


.header-action:hover {

    color: var(--ice-blue);

    transform: translateY(-1px);

}


/* =====================================================
   CART BADGE
===================================================== */

.cart-action {

    position: relative;

}


.cart-badge {

    position: absolute;

    top: -4px;

    right: -7px;

    min-width: 19px;

    height: 19px;

    padding: 0 5px;

    border-radius: 50px;

    background: var(--ice-blue);

    color: var(--white);

    font-size: 10px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid var(--white);

}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-btn {

    display: none;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 28px;

    width: 40px;

    height: 40px;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}


/* =====================================================
   CATEGORY NAVBAR
===================================================== */

.category-navbar {

    background: var(--navy);

    height: 48px;

}


.category-menu {

    height: 48px;

    display: flex;

    align-items: center;

}


.category-link {

    position: relative;

    height: 48px;

    min-width: 190px;

    padding: 0 28px;

    color: rgba(255,255,255,.92);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 600;

    border-right: 1px solid rgba(255,255,255,.12);

    transition: all .2s ease;

}


.category-link:first-child {

    border-left: 1px solid rgba(255,255,255,.12);

}


.category-link i {

    font-size: 19px;

}


.category-link:hover {

    background: rgba(255,255,255,.08);

    color: var(--white);

}


.category-link.active {

    background: rgba(255,255,255,.06);

    color: var(--white);

}


.category-link.active::after {

    content: "";

    position: absolute;

    left: 25px;

    right: 25px;

    bottom: 0;

    height: 3px;

    background: var(--ice-blue);

}


/* =====================================================
   PROMO
===================================================== */

.promo-link i {

    color: #FFD21F;

}


/* =====================================================
   TEMPORARY CONTENT
===================================================== */

.temporary-content {

    padding: 60px 20px;

}


.temporary-box {

    min-height: 350px;

    border: 2px dashed #CBD5E1;

    border-radius: 20px;

    background: var(--white);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #94A3B8;

}


.temporary-box i {

    font-size: 55px;

    margin-bottom: 15px;

}


.temporary-box h2 {

    color: var(--navy);

    font-size: 24px;

    font-weight: 800;

}


.temporary-box p {

    margin: 0;

    font-size: 14px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {


    .header-wrapper {

        gap: 15px;

    }


    .logo-placeholder {

        width: 170px;

    }


    .logo-placeholder > i {

        width: 42px;

        height: 42px;

        font-size: 21px;

    }


    .logo-placeholder span {

        font-size: 14px;

    }


    .header-actions {

        gap: 12px;

    }


    .category-link {

        min-width: auto;

        flex: 1;

        padding: 0 12px;

        font-size: 12px;

    }


}


/* =====================================================
   MOBILE NAVBAR
   SEARCH tetap tampil sampai 320px
===================================================== */

@media (max-width: 767.98px) {

    /* -------------------------------------------------
       HEADER
    ------------------------------------------------- */

    .header-main {
        height: 68px;
        width: 100%;
    }

    .header-wrapper {
        width: 100%;
        height: 68px;

        display: flex;
        align-items: center;

        gap: 8px;

        padding-left: 10px;
        padding-right: 10px;

        min-width: 0;
    }


    /* -------------------------------------------------
       LOGO
    ------------------------------------------------- */

    .logo-placeholder {
        width: auto;
        max-width: 120px;

        height: 52px;

        display: flex;
        align-items: center;

        flex: 0 0 auto;

        min-width: 0;

        overflow: hidden;
    }

    .logo-placeholder > i {
        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 19px;
    }

    .logo-placeholder span {
        font-size: 12px;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-placeholder small {
        font-size: 7px;

        white-space: nowrap;
    }


    /* -------------------------------------------------
       SEARCH
       Search TETAP tampil di mobile
    ------------------------------------------------- */

    .header-search {
        display: block;

        flex: 1 1 auto;

        width: auto;
        min-width: 0;
        max-width: none;

        margin: 0;

        overflow: hidden;
    }

    .header-search form,
    .header-search .search-form {
        width: 100%;
        min-width: 0;
    }

    .header-search input,
    .header-search .form-control {
        width: 100%;
        min-width: 0;

        height: 40px;

        padding-left: 12px;
        padding-right: 38px;

        font-size: 12px;

        border-radius: 10px;
    }


    /* -------------------------------------------------
       SEARCH BUTTON
    ------------------------------------------------- */

    .header-search button,
    .header-search .search-btn {
        width: 38px;
        height: 40px;

        padding: 0;

        font-size: 16px;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* -------------------------------------------------
       HEADER ACTIONS
    ------------------------------------------------- */

    .header-actions {
        margin-left: 0;

        display: flex;
        align-items: center;

        gap: 4px;

        flex: 0 0 auto;

        min-width: 0;
    }


    /* -------------------------------------------------
       ACTION BUTTON
    ------------------------------------------------- */

    .header-action {
        width: 36px;
        height: 36px;

        min-width: 36px;

        padding: 0;

        font-size: 21px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;
    }


    /* -------------------------------------------------
       MOBILE MENU
    ------------------------------------------------- */

    .mobile-menu-btn {
        width: 36px;
        height: 36px;

        min-width: 36px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;
    }


    /* -------------------------------------------------
       CATEGORY
    ------------------------------------------------- */

    .category-navbar {
        height: auto;

        display: none;
    }

    .category-navbar.show-mobile {
        display: block;
    }

    .category-menu {
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 8px 0;
    }

    .category-link {
        width: 100%;

        min-height: 48px;
        height: 48px;

        justify-content: flex-start;

        padding: 0 20px;

        border: 0;
        border-radius: 0;
    }

    .category-link:first-child {
        border: 0;
    }

    .category-link.active::after {
        left: auto;
        right: 0;

        top: 0;
        bottom: 0;

        width: 3px;
        height: auto;
    }
}

/* =====================================================
   SMALL MOBILE
   360px ke bawah
===================================================== */

@media (max-width: 400px) {

    .header-wrapper {
        gap: 6px;

        padding-left: 8px;
        padding-right: 8px;
    }


    /* LOGO DIPERKECIL */

    .logo-placeholder {
        max-width: 92px;
        height: 48px;
    }

    .logo-placeholder > i {
        width: 32px;
        height: 32px;

        min-width: 32px;

        font-size: 16px;
    }

    .logo-placeholder span {
        font-size: 10px;
    }

    .logo-placeholder small {
        font-size: 6px;
    }


    /* SEARCH */

    .header-search input,
    .header-search .form-control {
        height: 38px;

        font-size: 11px;

        padding-left: 10px;
        padding-right: 34px;

        border-radius: 9px;
    }

    .header-search button,
    .header-search .search-btn {
        width: 34px;
        height: 38px;

        font-size: 15px;
    }


    /* ACTION */

    .header-actions {
        gap: 2px;
    }

    .header-action,
    .mobile-menu-btn {
        width: 32px;
        height: 32px;

        min-width: 32px;

        font-size: 19px;
    }


    /* CART BADGE */

    .cart-badge {
        top: -3px;
        right: -4px;

        min-width: 16px;
        height: 16px;

        font-size: 8px;
    }
}


/* =====================================================
   EXTRA SMALL
   320px
===================================================== */

@media (max-width: 340px) {

    .header-wrapper {
        gap: 4px;

        padding-left: 6px;
        padding-right: 6px;
    }


    /* LOGO LEBIH COMPACT */

    .logo-placeholder {
        max-width: 76px;
    }

    .logo-placeholder > i {
        width: 29px;
        height: 29px;

        min-width: 29px;

        font-size: 14px;
    }

    .logo-placeholder span {
        font-size: 9px;
    }

    .logo-placeholder small {
        display: none;
    }


    /* SEARCH */

    .header-search input,
    .header-search .form-control {
        height: 36px;

        font-size: 10px;

        padding-left: 8px;
        padding-right: 32px;

        border-radius: 8px;
    }

    .header-search button,
    .header-search .search-btn {
        width: 32px;
        height: 36px;

        font-size: 14px;
    }


    /* ACTION */

    .header-actions {
        gap: 1px;
    }

    .header-action,
    .mobile-menu-btn {
        width: 30px;
        height: 30px;

        min-width: 30px;

        font-size: 17px;
    }


    .cart-badge {
        min-width: 15px;
        height: 15px;

        font-size: 8px;
    }
}
/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {

    padding: 24px 0 30px;

    background: #F4F8FC;

}


/* =====================================================
   HERO LAYOUT
===================================================== */

.hero-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        290px;

    gap: 18px;

}


/* =====================================================
   MAIN HERO BANNER
===================================================== */

.hero-banner {

    position: relative;

    min-height: 390px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            100deg,
            #DFF5FC 0%,
            #EFFAFF 48%,
            #D8EEF8 100%
        );

    border: 1px solid #DCEAF2;

}


/* =====================================================
   HERO IMAGE PLACEHOLDER
===================================================== */

/* =====================================================
   HERO IMAGE
===================================================== */
/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image-placeholder {

    position: absolute;

    top: 0;

    right: 0;

    width: 51%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


/* =====================================================
   HERO BANNER IMAGE
===================================================== */

.hero-banner-image {

    display: block;

    width: 75%;

    height: 72%;

    object-fit: cover;

    object-position: center;

    border-radius: 20px;

}

/* Placeholder */

.hero-placeholder-content {

    width: 75%;

    height: 72%;

    border: 2px dashed #91BCCA;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #5590A3;

    background:
        rgba(255,255,255,.35);

}


.hero-placeholder-content i {

    font-size: 48px;

    margin-bottom: 12px;

}


.hero-placeholder-content span {

    font-size: 16px;

    font-weight: 800;

    letter-spacing: .8px;

}


.hero-placeholder-content small {

    margin-top: 4px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    width: 51%;

    min-height: 390px;

    padding:
        55px 20px 45px 48px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    width: fit-content;

    padding: 5px 11px;

    margin-bottom: 13px;

    border-radius: 50px;

    background:
        rgba(0,168,204,.10);

    color: var(--ice-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

}



.hero-content h1 {

    margin: 0;

    color: var(--navy);

    font-size: clamp(30px, 3vw, 47px);

    line-height: 1.04;

    font-weight: 900;

    letter-spacing: -.7px;

}


.hero-content p {

    max-width: 480px;

    margin:
        16px 0 23px;

    color: #29415F;

    font-size: 15px;

    line-height: 1.55;

    font-weight: 500;

}


/* =====================================================
   HERO BUTTON
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

}


.btn-hero {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 9px;

    background: var(--ice-blue);

    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 7px 18px
        rgba(0,168,204,.22);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}


.btn-hero:hover {

    color: var(--white);

    background: #008EAD;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(0,168,204,.28);

}


.btn-hero i {

    font-size: 16px;

}


/* =====================================================
   HERO SIDE
===================================================== */

.hero-side {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


/* =====================================================
   SIDE CARD
===================================================== */

.hero-side-card {

    border-radius: 16px;

    background: var(--white);

    border: 1px solid var(--border-color);

    overflow: hidden;

}


/* =====================================================
   B2B CARD
===================================================== */

.b2b-card {

    flex: 1;

    padding: 22px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F7FBFE 100%
        );

}


.side-card-icon {

    width: 43px;

    height: 43px;

    margin-bottom: 12px;

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(0,168,204,.10);

    color: var(--ice-blue);

    font-size: 21px;

}


.side-card-label {

    color: var(--ice-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.side-card-content h3 {

    margin:
        5px 0 10px;

    color: var(--navy);

    font-size: 20px;

    line-height: 1.1;

    font-weight: 900;

}


.side-card-content p {

    margin: 0 0 13px;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.5;

}


.side-card-content ul {

    margin: 0 0 15px;

    padding: 0;

    list-style: none;

}


.side-card-content li {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 7px;

    color: #344054;

    font-size: 10px;

    font-weight: 600;

}


.side-card-content li i {

    color: var(--fresh-green);

    font-size: 12px;

}


.btn-side {

    width: 100%;

    min-height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: var(--ice-blue);

    color: var(--white);

    font-size: 10px;

    font-weight: 700;

    transition: .2s ease;

}


.btn-side:hover {

    background: #008EAD;

    color: var(--white);

}


/* =====================================================
   COLD CHAIN CARD
===================================================== */

.cold-card {

    min-height: 125px;

    padding: 17px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


.cold-card-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(15,44,89,.08);

    color: var(--navy);

    font-size: 21px;

}


.cold-card span {

    color: var(--ice-blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;

}


.cold-card h4 {

    margin:
        4px 0 5px;

    color: var(--navy);

    font-size: 12px;

    font-weight: 800;

}


.cold-card p {

    margin: 0 0 7px;

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.45;

}


.cold-card a {

    color: var(--navy);

    font-size: 9px;

    font-weight: 700;

}


.cold-card a:hover {

    color: var(--ice-blue);

}


.cold-card a i {

    margin-left: 3px;

}


/* =====================================================
   HERO TABLET
===================================================== */

@media (max-width: 1199.98px) {


    .hero-layout {

        grid-template-columns:
            minmax(0, 1fr)
            260px;

    }


    .hero-content {

        padding-left: 35px;

    }


    .hero-content h1 {

        font-size: 36px;

    }


    .hero-content p {

        font-size: 13px;

    }


    .side-card-content h3 {

        font-size: 18px;

    }

}


/* =====================================================
   HERO TABLET SMALL
===================================================== */

@media (max-width: 991.98px) {


    .hero-layout {

        grid-template-columns: 1fr;

    }


    .hero-banner {

        min-height: 380px;

    }


    .hero-side {

        display: grid;

        grid-template-columns:
            1fr
            1fr;

    }


    .b2b-card {

        min-height: 280px;

    }


    .cold-card {

        min-height: 280px;

        align-items: center;

    }

}


/* =====================================================
   HERO MOBILE
===================================================== */

@media (max-width: 767.98px) {


    /* -------------------------------------------------
       HERO SECTION
    ------------------------------------------------- */

    .hero-section {

        padding:
            15px 0 20px;

    }


    /* -------------------------------------------------
       HERO LAYOUT
    ------------------------------------------------- */

    .hero-layout {

        display: flex;

        flex-direction: column;

        gap: 13px;

    }


    /* -------------------------------------------------
       HERO BANNER
    ------------------------------------------------- */

    .hero-banner {

        min-height: 0;

        height: auto;

        border-radius: 14px;

        display: flex;

        flex-direction: column;

        overflow: hidden;

    }


    /* -------------------------------------------------
       HERO CONTENT
    ------------------------------------------------- */

    .hero-content {

        order: 1;

        width: 100%;

        min-height: 0;

        padding:
            30px 24px 20px;

        display: flex;

        flex-direction: column;

        justify-content: flex-start;

        position: relative;

        z-index: 2;

    }


    /* -------------------------------------------------
       HERO IMAGE
    ------------------------------------------------- */

    .hero-image-placeholder {

        order: 2;

        position: relative;

        top: auto;

        right: auto;

        bottom: auto;

        left: auto;

        width: 100%;

        height: 250px;

        display: flex;

        align-items: center;

        justify-content: center;

        overflow: hidden;

    }


    /* -------------------------------------------------
       HERO IMAGE
    ------------------------------------------------- */

    .hero-banner-image {

        display: block;

        width: 88%;

        height: 100%;

        object-fit: cover;

        object-position: center;

        border-radius: 16px;

    }


    /* -------------------------------------------------
       LABEL
    ------------------------------------------------- */

    .hero-label {

        font-size: 8px;

        margin-bottom: 10px;

    }


    /* -------------------------------------------------
       TITLE
    ------------------------------------------------- */

    .hero-content h1 {

        font-size: 30px;

        line-height: 1.05;

    }


    /* -------------------------------------------------
       DESCRIPTION
    ------------------------------------------------- */

    .hero-content p {

        max-width: 330px;

        margin:
            13px 0 17px;

        font-size: 12px;

        line-height: 1.45;

    }


    /* -------------------------------------------------
       BUTTON
    ------------------------------------------------- */

    .btn-hero {

        min-height: 40px;

        padding:
            0 17px;

        font-size: 11px;

    }


    /* -------------------------------------------------
       SIDE CARD
    ------------------------------------------------- */

    .hero-side {

        display: flex;

        flex-direction: column;

        gap: 13px;

    }

}

/* =====================================================
   HERO SMALL MOBILE
===================================================== */

@media (max-width: 400px) {


    .hero-banner {

        min-height: 455px;

    }


    .hero-content {

        padding:
            25px 20px 0;

    }


    .hero-content h1 {

        font-size: 27px;

    }


    .hero-content p {

        font-size: 11px;

    }


    .hero-placeholder-content {

        width: 80%;

    }

}

/* =====================================================
   TRUST / FEATURE SECTION
===================================================== */

.trust-section {

    padding: 0 0 28px;

    background: #F4F8FC;

}


/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {

    min-height: 76px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

    background: var(--white);

    border: 1px solid var(--border-color);

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 3px 12px rgba(15,44,89,.04);

}


/* =====================================================
   TRUST ITEM
===================================================== */

.trust-item {

    min-height: 76px;

    padding:
        12px 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    border-right:
        1px solid #E7ECF2;

}


.trust-item:last-child {

    border-right: 0;

}


/* =====================================================
   TRUST ICON
===================================================== */

.trust-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}


/* =====================================================
   ICON COLORS
===================================================== */

.cold-chain-icon {

    color: var(--ice-blue);

    background:
        rgba(0,168,204,.10);

}


.wholesale-icon {

    color: #8B5E34;

    background:
        rgba(139,94,52,.10);

}


.temperature-icon {

    color: var(--ice-blue);

    background:
        rgba(0,168,204,.10);

}


.halal-icon {

    color: #16805C;

    background:
        rgba(22,128,92,.10);

}


/* =====================================================
   TRUST CONTENT
===================================================== */

.trust-content {

    min-width: 0;

}


.trust-content h3 {

    margin: 0;

    color: var(--navy);

    font-size: 12px;

    line-height: 1.3;

    font-weight: 800;

}


.trust-content p {

    margin: 3px 0 0;

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.3;

    font-weight: 500;

}


/* =====================================================
   TRUST HOVER
===================================================== */

.trust-item {

    transition:
        background .2s ease;

}


.trust-item:hover {

    background:
        #FAFCFE;

}


.trust-item:hover .trust-icon {

    transform: scale(1.05);

}


.trust-icon {

    transition:
        transform .2s ease;

}


/* =====================================================
   TRUST TABLET
===================================================== */

@media (max-width: 991.98px) {


    .trust-bar {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-item {

        justify-content: flex-start;

        padding:
            14px 22px;

    }


    .trust-item:nth-child(2) {

        border-right: 0;

    }


    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {

        border-bottom:
            1px solid #E7ECF2;

    }

}


/* =====================================================
   TRUST MOBILE
===================================================== */

@media (max-width: 767.98px) {


    .trust-section {

        padding:
            0 0 20px;

    }


    /*
       Horizontal scrolling container
    */

    .trust-bar {

        display: flex;

        align-items: stretch;

        gap: 10px;

        min-height: auto;

        padding: 10px;

        border-radius: 13px;

        border: 1px solid var(--border-color);

        background: transparent;

        box-shadow: none;

        overflow-x: auto;

        overflow-y: hidden;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;

    }


    /*
       Hilangkan scrollbar Chrome,
       Edge dan Safari
    */

    .trust-bar::-webkit-scrollbar {

        display: none;

    }


    .trust-item {

        flex:
            0 0 215px;

        min-height: 70px;

        padding:
            12px 15px;

        justify-content: flex-start;

        gap: 11px;

        background: var(--white);

        border:
            1px solid #E4EAF1;

        border-radius: 11px;

        scroll-snap-align: start;

        box-shadow:
            0 2px 8px rgba(15,44,89,.04);

    }


    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {

        border-bottom:
            1px solid #E4EAF1;

    }


    .trust-item:last-child {

        border-right:
            1px solid #E4EAF1;

    }


    .trust-icon {

        width: 40px;

        height: 40px;

        font-size: 19px;

    }


    .trust-content h3 {

        font-size: 11px;

    }


    .trust-content p {

        font-size: 9px;

    }

}


/* =====================================================
   TRUST SMALL MOBILE
===================================================== */

@media (max-width: 400px) {


    .trust-item {

        flex-basis: 200px;

    }


    .trust-icon {

        width: 37px;

        height: 37px;

        font-size: 18px;

    }


    .trust-content h3 {

        font-size: 10px;

    }


    .trust-content p {

        font-size: 8px;

    }

}

/* =====================================================
   FEATURED CATEGORY SECTION
===================================================== */

.featured-category-section {

    padding: 5px 0 35px;

    background: #F4F8FC;

}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 15px;

}


.section-eyebrow {

    display: block;

    margin-bottom: 3px;

    color: var(--ice-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.section-heading h2 {

    margin: 0;

    color: var(--navy);

    font-size: 20px;

    font-weight: 900;

    text-transform: uppercase;

}


.view-all-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--ice-blue);

    font-size: 11px;

    font-weight: 700;

    transition: all .2s ease;

}


.view-all-link:hover {

    color: var(--navy);

    gap: 10px;

}


.view-all-link i {

    font-size: 14px;

}


/* =====================================================
   CATEGORY GRID
===================================================== */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


/* =====================================================
   CATEGORY CARD
===================================================== */

.category-card {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 14px;

    background: var(--white);

    border: 1px solid #DDE5EE;

    box-shadow:
        0 3px 12px rgba(15,44,89,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.category-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(0,168,204,.35);

    box-shadow:
        0 12px 28px rgba(15,44,89,.10);

}


/* =====================================================
   CATEGORY IMAGE
===================================================== */

.category-image {

    position: relative;

    height: 165px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #E6F6FA,
            #F3FAFC
        );

}


/* =====================================================
   IMAGE PLACEHOLDER
===================================================== */

.category-image-placeholder {

    position: absolute;

    inset: 14px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        2px dashed #A6CDD8;

    border-radius: 11px;

    color: #639AA8;

    background:
        rgba(255,255,255,.30);

    transition:
        transform .35s ease,
        background .35s ease;

}


.category-image-placeholder i {

    margin-bottom: 6px;

    font-size: 32px;

}


.category-image-placeholder span {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .8px;

}


/* =====================================================
   REAL IMAGE
===================================================== */

.category-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;

}


.category-card:hover .category-image img {

    transform: scale(1.06);

}


.category-card:hover
.category-image-placeholder {

    transform: scale(1.02);

    background:
        rgba(255,255,255,.45);

}


/* =====================================================
   CATEGORY BADGE
===================================================== */

.category-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    padding:
        5px 9px;

    border-radius: 50px;

    background:
        var(--ice-blue);

    color: var(--white);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;

    box-shadow:
        0 4px 10px rgba(0,168,204,.20);

}


.dairy-badge {

    background:
        #6C9EAF;

}


.meat-badge {

    background:
        #C94D4D;

}


.oil-badge {

    background:
        var(--fresh-green);

}


/* =====================================================
   CATEGORY CARD FOOTER
===================================================== */

.category-card-footer {

    min-height: 82px;

    padding:
        12px 13px;

    display: flex;

    align-items: center;

    gap: 10px;

}


/* =====================================================
   CATEGORY ICON
===================================================== */

.category-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    font-size: 18px;

}


.frozen-icon {

    color: var(--ice-blue);

    background:
        rgba(0,168,204,.10);

}


.dairy-icon {

    color: #527F92;

    background:
        rgba(82,127,146,.10);

}


.meat-icon {

    color: #C94D4D;

    background:
        rgba(201,77,77,.10);

}


.oil-icon {

    color: var(--fresh-green);

    background:
        rgba(78,159,61,.10);

}


/* =====================================================
   CATEGORY INFO
===================================================== */

.category-info {

    min-width: 0;

    flex: 1;

}


.category-info h3 {

    margin: 0;

    overflow: hidden;

    color: var(--navy);

    font-size: 12px;

    line-height: 1.3;

    font-weight: 800;

    text-overflow: ellipsis;

    white-space: nowrap;

}


.category-info p {

    margin:
        4px 0 0;

    overflow: hidden;

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.3;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* =====================================================
   CATEGORY ARROW
===================================================== */

.category-arrow {

    width: 29px;

    height: 29px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #8A98A8;

    background: #F2F5F8;

    font-size: 13px;

    transition:
        all .25s ease;

}


.category-card:hover .category-arrow {

    color: var(--white);

    background: var(--ice-blue);

    transform:
        rotate(5deg);

}


/* =====================================================
   CATEGORY TABLET
===================================================== */

@media (max-width: 991.98px) {


    .featured-category-section {

        padding-bottom: 28px;

    }


    .category-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;

    }


    .category-image {

        height: 180px;

    }


    .category-card-footer {

        min-height: 78px;

    }

}


/* =====================================================
   CATEGORY MOBILE
===================================================== */

@media (max-width: 767.98px) {


    .featured-category-section {

        padding:
            0 0 25px;

    }


    .section-heading {

        margin-bottom: 12px;

    }


    .section-eyebrow {

        font-size: 8px;

    }


    .section-heading h2 {

        font-size: 17px;

    }


    .view-all-link {

        font-size: 10px;

    }


    .category-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;

    }


    .category-card {

        border-radius: 11px;

    }


    .category-image {

        height: 125px;

    }


    .category-image-placeholder {

        inset: 9px;

        border-radius: 8px;

    }


    .category-image-placeholder i {

        font-size: 25px;

        margin-bottom: 4px;

    }


    .category-image-placeholder span {

        font-size: 7px;

    }


    .category-badge {

        top: 8px;

        left: 8px;

        padding:
            4px 7px;

        font-size: 6px;

    }


    .category-card-footer {

        min-height: 65px;

        padding:
            9px;

        gap: 7px;

    }


    .category-icon {

        width: 31px;

        height: 31px;

        border-radius: 8px;

        font-size: 15px;

    }


    .category-info h3 {

        font-size: 10px;

    }


    .category-info p {

        margin-top: 2px;

        font-size: 7px;

    }


    .category-arrow {

        width: 25px;

        height: 25px;

        font-size: 11px;

    }

}


/* =====================================================
   CATEGORY SMALL MOBILE
===================================================== */

@media (max-width: 400px) {


    .category-image {

        height: 115px;

    }


    .category-card-footer {

        min-height: 61px;

        padding: 8px;

    }


    .category-icon {

        width: 28px;

        height: 28px;

        font-size: 13px;

    }


    .category-info h3 {

        font-size: 9px;

    }


    .category-info p {

        display: none;

    }


    .category-arrow {

        width: 23px;

        height: 23px;

        font-size: 10px;

    }

}

/* =====================================================
   PRODUCTS SECTION
===================================================== */

.products-section {

    padding: 5px 0 40px;

    background: #F4F8FC;

}


/* =====================================================
   PRODUCT SECTION HEADER
===================================================== */

.product-section-heading {

    margin-bottom: 17px;

}


/* =====================================================
   PRODUCTS LAYOUT
===================================================== */

.products-layout {

    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    gap: 16px;

    align-items: start;

}


/* =====================================================
   PRODUCT SIDEBAR
===================================================== */

.product-sidebar {

    display: flex;

    flex-direction: column;

    gap: 13px;

}


/* =====================================================
   FILTER CARD
===================================================== */

.filter-card {

    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--border-color);

    border-radius: 13px;

}


/* =====================================================
   FILTER HEADER
===================================================== */

.filter-header {

    min-height: 48px;

    padding:
        0 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid #E6EBF1;

}


.filter-header h3 {

    margin: 0;

    color: var(--navy);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

}


.filter-header i {

    color: var(--ice-blue);

    font-size: 15px;

}


/* =====================================================
   TEMPERATURE FILTER
===================================================== */

.temperature-filter {

    padding:
        7px 12px 10px;

}


.temperature-option {

    position: relative;

    min-height: 42px;

    display: flex;

    align-items: center;

    gap: 9px;

    cursor: pointer;

    user-select: none;

}


.temperature-option input {

    position: absolute;

    opacity: 0;

    pointer-events: none;

}


.custom-radio {

    width: 17px;

    height: 17px;

    flex-shrink: 0;

    border:
        2px solid #B7C2CF;

    border-radius: 50%;

    position: relative;

    transition:
        all .2s ease;

}


.temperature-option input:checked
+ .custom-radio {

    border-color: var(--ice-blue);

}


.temperature-option input:checked
+ .custom-radio::after {

    content: "";

    position: absolute;

    width: 8px;

    height: 8px;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: var(--ice-blue);

}


.temperature-text {

    color: #344054;

    font-size: 10px;

    line-height: 1.3;

    font-weight: 600;

}


.temperature-text strong {

    color: #006C8A;

    font-weight: 700;

}


.temperature-text small {

    display: block;

    margin-top: 2px;

    color: #98A2B3;

    font-size: 8px;

    font-weight: 500;

}


/* =====================================================
   SIDEBAR B2B
===================================================== */

.sidebar-b2b-card {

    padding:
        17px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #0F2C59,
            #123D73
        );

    color: var(--white);

    box-shadow:
        0 8px 22px rgba(15,44,89,.12);

}


.sidebar-b2b-icon {

    width: 38px;

    height: 38px;

    margin-bottom: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(255,255,255,.12);

    color: #6EDCF2;

    font-size: 18px;

}


.sidebar-b2b-card > span {

    color: #6EDCF2;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.sidebar-b2b-card h3 {

    margin:
        5px 0 8px;

    color: var(--white);

    font-size: 15px;

    line-height: 1.2;

    font-weight: 800;

}


.sidebar-b2b-card p {

    margin:
        0 0 12px;

    color:
        rgba(255,255,255,.72);

    font-size: 9px;

    line-height: 1.5;

}


.sidebar-b2b-card ul {

    margin:
        0 0 14px;

    padding: 0;

    list-style: none;

}


.sidebar-b2b-card li {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 6px;

    color:
        rgba(255,255,255,.88);

    font-size: 8px;

    font-weight: 600;

}


.sidebar-b2b-card li i {

    color: #6EDCF2;

    font-size: 10px;

}


.sidebar-b2b-button {

    min-height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: var(--ice-blue);

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    transition:
        all .2s ease;

}


.sidebar-b2b-button:hover {

    background: #00BADF;

    color: var(--white);

    transform:
        translateY(-1px);

}


/* =====================================================
   COLD CHAIN GUARANTEE
===================================================== */

.cold-guarantee-card {

    padding:
        15px;

    border:
        1px solid var(--border-color);

    border-radius: 13px;

    background: var(--white);

}


.cold-guarantee-top {

    display: flex;

    align-items: center;

    gap: 9px;

}


.cold-guarantee-icon {

    width: 35px;

    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(15,44,89,.08);

    color: var(--navy);

    font-size: 17px;

}


.cold-guarantee-top span {

    color: var(--navy);

    font-size: 9px;

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: .5px;

}


.cold-guarantee-card p {

    margin:
        10px 0;

    color: var(--text-muted);

    font-size: 8px;

    line-height: 1.5;

}


.cold-guarantee-card a {

    color: var(--ice-blue);

    font-size: 8px;

    font-weight: 700;

}


.cold-guarantee-card a i {

    margin-left: 3px;

}


/* =====================================================
   PRODUCT AREA
===================================================== */

.product-area {

    min-width: 0;

}


/* =====================================================
   PRODUCT GRID
===================================================== */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {

    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--border-color);

    border-radius: 13px;

    box-shadow:
        0 3px 12px rgba(15,44,89,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.product-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(0,168,204,.35);

    box-shadow:
        0 12px 25px rgba(15,44,89,.10);

}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image {

    position: relative;

    height: 185px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #EFF8FA,
            #F8FCFD
        );

}


.product-image-placeholder {

    position: absolute;

    inset: 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        2px dashed #A9CCD6;

    border-radius: 10px;

    color: #6C9EAB;

    background:
        rgba(255,255,255,.35);

}


.product-image-placeholder i {

    margin-bottom: 6px;

    font-size: 33px;

}


.product-image-placeholder span {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .7px;

}


/* =====================================================
   PRODUCT REAL IMAGE
===================================================== */

.product-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;

}


.product-card:hover .product-image img {

    transform:
        scale(1.06);

}


/* =====================================================
   TEMPERATURE BADGE
===================================================== */

.product-temperature-badge {

    position: absolute;

    top: 10px;

    left: 10px;

    display: inline-flex;

    align-items: center;

    gap: 4px;

    padding:
        5px 8px;

    border-radius: 50px;

    color: var(--white);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .5px;

    box-shadow:
        0 3px 8px rgba(15,44,89,.10);

}


.product-temperature-badge.frozen {

    background: var(--ice-blue);

}


.product-temperature-badge.chilled {

    background: #527F92;

}


.product-temperature-badge i {

    font-size: 10px;

}


/* =====================================================
   WISHLIST
===================================================== */

.product-wishlist {

    position: absolute;

    top: 10px;

    right: 10px;

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #E1E7ED;

    border-radius: 50%;

    background:
        rgba(255,255,255,.94);

    color: #788698;

    font-size: 13px;

    cursor: pointer;

    transition:
        all .2s ease;

}


.product-wishlist:hover {

    color: #E05252;

    border-color: #F0C4C4;

    background: #FFF7F7;

}


/* =====================================================
   PRODUCT BODY
===================================================== */

.product-body {

    padding:
        12px 13px 13px;

}


.product-category {

    color: var(--ice-blue);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .9px;

}


.product-name {

    min-height: 35px;

    margin:
        5px 0 5px;

    color: var(--navy);

    font-size: 12px;

    line-height: 1.35;

    font-weight: 800;

}


/* =====================================================
   PRODUCT RATING
===================================================== */

.product-rating {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 6px;

}


.product-rating span {

    display: inline-flex;

    align-items: center;

    gap: 3px;

    color: #F3A623;

    font-size: 9px;

    font-weight: 700;

}


.product-rating span i {

    font-size: 8px;

}


.product-rating small {

    color: #98A2B3;

    font-size: 7px;

}


/* =====================================================
   PRODUCT PRICE
===================================================== */

.product-price {

    margin-bottom: 5px;

    color: var(--navy);

    font-size: 17px;

    line-height: 1.2;

    font-weight: 900;

}


/* =====================================================
   PRODUCT STOCK
===================================================== */

.product-stock {

    display: flex;

    align-items: center;

    gap: 4px;

    margin-bottom: 10px;

    color: var(--fresh-green);

    font-size: 8px;

    font-weight: 600;

}


.product-stock i {

    font-size: 10px;

}


/* =====================================================
   PRODUCT ADD BUTTON
===================================================== */

.product-add-button {

    width: 100%;

    min-height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    border: 0;

    border-radius: 7px;

    background: var(--ice-blue);

    color: var(--white);

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all .2s ease;

}


.product-add-button:hover {

    background: #008EAD;

    transform:
        translateY(-1px);

}


.product-add-button:active {

    transform:
        translateY(0);

}


/* =====================================================
   LOAD MORE
===================================================== */

.product-load-more {

    padding-top: 18px;

    text-align: center;

}


.load-more-button {

    min-height: 38px;

    padding:
        0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border:
        1px solid #C8D4DF;

    border-radius: 8px;

    background: var(--white);

    color: var(--navy);

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all .2s ease;

}


.load-more-button:hover {

    color: var(--ice-blue);

    border-color: var(--ice-blue);

    background:
        #F7FCFD;

}


/* =====================================================
   PRODUCT TABLET
===================================================== */

@media (max-width: 1199.98px) {


    .products-layout {

        grid-template-columns:
            200px
            minmax(0, 1fr);

    }


    .product-grid {

        gap: 11px;

    }


    .product-image {

        height: 165px;

    }


    .product-price {

        font-size: 15px;

    }

}


/* =====================================================
   PRODUCT TABLET SMALL
===================================================== */

@media (max-width: 991.98px) {


    .products-layout {

        grid-template-columns:
            180px
            minmax(0, 1fr);

        gap: 12px;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .product-image {

        height: 180px;

    }


    .sidebar-b2b-card {

        padding: 14px;

    }


    .sidebar-b2b-card h3 {

        font-size: 14px;

    }

}


/* =====================================================
   PRODUCT MOBILE
===================================================== */

@media (max-width: 767.98px) {


    .products-section {

        padding:
            0 0 30px;

    }


    .products-layout {

        display: flex;

        flex-direction: column;

        gap: 12px;

    }


    /* -----------------------------------------------
       SIDEBAR MOBILE
    ------------------------------------------------ */

    .product-sidebar {

        width: 100%;

        display: grid;

        grid-template-columns:
            1fr;

        gap: 10px;

    }


    .filter-card {

        width: 100%;

    }


    .filter-header {

        min-height: 44px;

    }


    .temperature-filter {

        padding:
            5px 10px;

        display: flex;

        gap: 5px;

        overflow-x: auto;

        scrollbar-width: none;

    }


    .temperature-filter::-webkit-scrollbar {

        display: none;

    }


    .temperature-option {

        flex:
            0 0 auto;

        min-height: 38px;

        padding:
            0 9px;

        border:
            1px solid #E1E7ED;

        border-radius: 8px;

    }


    .temperature-text {

        font-size: 9px;

    }


    .temperature-text small {

        display: inline;

        margin-left: 2px;

    }


    .sidebar-b2b-card {

        display: none;

    }


    .cold-guarantee-card {

        display: none;

    }


    /* -----------------------------------------------
       PRODUCT GRID
    ------------------------------------------------ */

    .product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;

    }


    .product-card {

        border-radius: 11px;

    }


    .product-image {

        height: 145px;

    }


    .product-image-placeholder {

        inset: 9px;

    }


    .product-image-placeholder i {

        font-size: 27px;

    }


    .product-image-placeholder span {

        font-size: 7px;

    }


    .product-temperature-badge {

        top: 7px;

        left: 7px;

        padding:
            4px 6px;

        font-size: 6px;

    }


    .product-temperature-badge i {

        font-size: 8px;

    }


    .product-wishlist {

        top: 7px;

        right: 7px;

        width: 26px;

        height: 26px;

        font-size: 11px;

    }


    .product-body {

        padding:
            9px;

    }


    .product-category {

        font-size: 6px;

    }


    .product-name {

        min-height: 32px;

        margin:
            4px 0;

        font-size: 10px;

    }


    .product-rating {

        margin-bottom: 5px;

    }


    .product-rating span {

        font-size: 8px;

    }


    .product-rating small {

        font-size: 6px;

    }


    .product-price {

        font-size: 14px;

    }


    .product-stock {

        margin-bottom: 8px;

        font-size: 7px;

    }


    .product-add-button {

        min-height: 33px;

        font-size: 9px;

    }


    .product-load-more {

        padding-top: 14px;

    }


}


/* =====================================================
   PRODUCT SMALL MOBILE
===================================================== */

@media (max-width: 400px) {


    .product-grid {

        gap: 8px;

    }


    .product-image {

        height: 130px;

    }


    .product-name {

        font-size: 9px;

    }


    .product-rating small {

        display: none;

    }


    .product-price {

        font-size: 13px;

    }


    .product-stock {

        font-size: 6px;

    }


    .product-add-button {

        min-height: 31px;

        font-size: 8px;

    }

}

/* =====================================================
   WISHLIST ACTIVE
===================================================== */

.product-wishlist.active {

    color: #E05252;

    border-color: #F0C4C4;

    background: #FFF7F7;

}

/* =====================================================
   SHOPPING CART
===================================================== */


/* =====================================================
   HEADER CART BUTTON
===================================================== */

.header-cart {

    position: relative;

    width: 40px;

    height: 40px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: var(--navy);

    font-size: 19px;

    cursor: pointer;

    transition:
        all .2s ease;

}


.header-cart:hover {

    color: var(--ice-blue);

    background:
        rgba(0,168,204,.08);

}


.header-cart .cart-count {

    position: absolute;

    top: 1px;

    right: 0;

    min-width: 17px;

    height: 17px;

    padding:
        0 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        2px solid var(--white);

    border-radius: 50px;

    background: #E05252;

    color: var(--white);

    font-size: 7px;

    line-height: 1;

    font-weight: 800;

}


/* =====================================================
   CART OVERLAY
===================================================== */

.cart-overlay {

    position: fixed;

    inset: 0;

    z-index: 9998;

    background:
        rgba(8,25,49,.48);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.cart-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =====================================================
   CART DRAWER
===================================================== */

.cart-drawer {

    position: fixed;

    top: 0;

    right: 0;

    z-index: 9999;

    width: 410px;

    max-width: 100%;

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: var(--white);

    box-shadow:
        -12px 0 35px rgba(15,44,89,.15);

    transform:
        translateX(100%);

    visibility: hidden;

    transition:
        transform .35s cubic-bezier(.4,0,.2,1),
        visibility .35s ease;

}


.cart-drawer.active {

    transform:
        translateX(0);

    visibility: visible;

}


/* =====================================================
   CART HEADER
===================================================== */

.cart-drawer-header {

    min-height: 76px;

    padding:
        0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid #E7EDF3;

    background: var(--white);

}


.cart-title {

    display: flex;

    align-items: center;

    gap: 10px;

}


.cart-title-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(0,168,204,.10);

    color: var(--ice-blue);

    font-size: 18px;

}


.cart-title h2 {

    margin: 0;

    color: var(--navy);

    font-size: 15px;

    line-height: 1.2;

    font-weight: 900;

}


.cart-title span {

    display: block;

    margin-top: 3px;

    color: #8B98A8;

    font-size: 9px;

}


.cart-close {

    width: 34px;

    height: 34px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #F2F5F8;

    color: #657386;

    font-size: 13px;

    cursor: pointer;

    transition:
        all .2s ease;

}


.cart-close:hover {

    background: #E9EEF3;

    color: #E05252;

    transform:
        rotate(90deg);

}


/* =====================================================
   CART BODY
===================================================== */

.cart-drawer-body {

    flex: 1;

    min-height: 0;

    overflow-y: auto;

    padding:
        12px 16px 18px;

    scrollbar-width: thin;

    scrollbar-color:
        #C9D4DE transparent;

}


.cart-drawer-body::-webkit-scrollbar {

    width: 5px;

}


.cart-drawer-body::-webkit-scrollbar-track {

    background: transparent;

}


.cart-drawer-body::-webkit-scrollbar-thumb {

    background: #C9D4DE;

    border-radius: 10px;

}


/* =====================================================
   EMPTY CART
===================================================== */

.cart-empty {

    min-height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px;

    text-align: center;

}


.cart-empty-icon {

    width: 78px;

    height: 78px;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #F0F7F9;

    color:
        #8AB6C1;

    font-size: 31px;

}


.cart-empty h3 {

    margin:
        0 0 7px;

    color: var(--navy);

    font-size: 15px;

    font-weight: 800;

}


.cart-empty p {

    max-width: 240px;

    margin:
        0 0 17px;

    color: #8A98A8;

    font-size: 9px;

    line-height: 1.6;

}


.cart-start-shopping {

    min-height: 36px;

    padding:
        0 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border: 0;

    border-radius: 7px;

    background: var(--ice-blue);

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    cursor: pointer;

}


/* =====================================================
   CART ITEM
===================================================== */

.cart-item {

    position: relative;

    display: flex;

    gap: 10px;

    padding:
        12px 0;

    border-bottom:
        1px solid #E9EEF3;

}


.cart-item:first-child {

    padding-top: 5px;

}


/* =====================================================
   CART ITEM IMAGE
===================================================== */

.cart-item-image {

    width: 76px;

    height: 76px;

    flex-shrink: 0;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #EDF7F9,
            #F7FBFC
        );

    color: #79AAB5;

}


.cart-item-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


.cart-item-image-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}


.cart-item-image-placeholder i {

    font-size: 22px;

}


.cart-item-image-placeholder span {

    margin-top: 3px;

    font-size: 6px;

    font-weight: 800;

}


/* =====================================================
   CART ITEM CONTENT
===================================================== */

.cart-item-content {

    min-width: 0;

    flex: 1;

    padding-right: 22px;

}


.cart-item-category {

    display: block;

    margin-bottom: 3px;

    color: var(--ice-blue);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .6px;

}


.cart-item-name {

    margin: 0 0 4px;

    color: var(--navy);

    font-size: 11px;

    line-height: 1.35;

    font-weight: 800;

}


.cart-item-price {

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;

}


/* =====================================================
   QUANTITY
===================================================== */

.cart-item-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

}


.cart-quantity {

    height: 29px;

    display: inline-flex;

    align-items: center;

    border:
        1px solid #D9E2E9;

    border-radius: 7px;

    overflow: hidden;

}


.cart-quantity-button {

    width: 28px;

    height: 29px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    background: #F7F9FB;

    color: #647386;

    font-size: 11px;

    cursor: pointer;

    transition:
        all .15s ease;

}


.cart-quantity-button:hover {

    color: var(--ice-blue);

    background:
        #EDF8FA;

}


.cart-quantity-value {

    min-width: 28px;

    padding: 0 4px;

    text-align: center;

    color: var(--navy);

    font-size: 9px;

    font-weight: 800;

}


/* =====================================================
   ITEM TOTAL
===================================================== */

.cart-item-total {

    color: var(--navy);

    font-size: 10px;

    font-weight: 900;

}


/* =====================================================
   REMOVE ITEM
===================================================== */

.cart-remove {

    position: absolute;

    top: 10px;

    right: 0;

    width: 24px;

    height: 24px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: #A1ACB8;

    font-size: 11px;

    cursor: pointer;

    transition:
        all .2s ease;

}


.cart-remove:hover {

    color: #E05252;

    background:
        #FFF1F1;

}


/* =====================================================
   CART FOOTER
===================================================== */

.cart-drawer-footer {

    padding:
        15px 17px 17px;

    border-top:
        1px solid #E4EAF0;

    background: var(--white);

    box-shadow:
        0 -5px 15px rgba(15,44,89,.04);

}


.cart-subtotal {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.cart-subtotal span {

    color: #68778A;

    font-size: 10px;

    font-weight: 600;

}


.cart-subtotal strong {

    color: var(--navy);

    font-size: 19px;

    font-weight: 900;

}


.cart-shipping-note {

    margin:
        6px 0 13px;

    display: flex;

    align-items: center;

    gap: 5px;

    color: #8A98A8;

    font-size: 8px;

}


.cart-shipping-note i {

    color: var(--ice-blue);

    font-size: 10px;

}


/* =====================================================
   CHECKOUT BUTTON
===================================================== */

.cart-checkout-button {

    width: 100%;

    min-height: 43px;

    padding:
        0 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 0;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #00A8CC,
            #008EAD
        );

    color: var(--white);

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition:
        all .2s ease;

}


.cart-checkout-button:hover {

    transform:
        translateY(-1px);

    box-shadow:
        0 6px 15px rgba(0,168,204,.20);

}


.cart-checkout-button i {

    font-size: 14px;

}


/* =====================================================
   CONTINUE SHOPPING
===================================================== */

.cart-continue-button {

    width: 100%;

    min-height: 34px;

    margin-top: 7px;

    border: 0;

    background: transparent;

    color: #738194;

    font-size: 9px;

    font-weight: 700;

    cursor: pointer;

}


.cart-continue-button:hover {

    color: var(--ice-blue);

}


/* =====================================================
   CART COUNT ANIMATION
===================================================== */

.cart-count.bump {

    animation:
        cartCountBump .35s ease;

}


@keyframes cartCountBump {

    0% {

        transform:
            scale(1);

    }

    45% {

        transform:
            scale(1.45);

    }

    100% {

        transform:
            scale(1);

    }

}


/* =====================================================
   MOBILE CART
===================================================== */

@media (max-width: 767.98px) {


    .cart-drawer {

        width: 100%;

        max-width: 390px;

    }


    .cart-drawer-header {

        min-height: 68px;

        padding:
            0 14px;

    }


    .cart-title-icon {

        width: 36px;

        height: 36px;

        font-size: 16px;

    }


    .cart-title h2 {

        font-size: 13px;

    }


    .cart-item-image {

        width: 68px;

        height: 68px;

    }


    .cart-item-name {

        font-size: 10px;

    }


    .cart-item-price {

        font-size: 10px;

    }


    .cart-subtotal strong {

        font-size: 17px;

    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {


    .cart-drawer {

        width: 100%;

    }


    .cart-drawer-body {

        padding:
            10px 12px;

    }


    .cart-item-image {

        width: 62px;

        height: 62px;

    }


    .cart-item-content {

        padding-right: 18px;

    }


}

/* =====================================================
   ADD TO CART SUCCESS
===================================================== */

.product-add-button.added {

    background: #4E9F3D;

}


.product-add-button.added:hover {

    background: #4E9F3D;

}

/* =====================================================
   BODY CART LOCK
===================================================== */

body.cart-open {

    overflow: hidden;

}


/* =====================================================
   STEP 7
   PROMO BANNER
===================================================== */

.promo-section {

    padding:
        20px 0 65px;

}


.promo-banner {

    position: relative;

    min-height: 310px;

    overflow: hidden;

    display: flex;

    align-items: center;

    border-radius: 18px;

    background:
        linear-gradient(
            120deg,
            #082B52 0%,
            #0A4770 55%,
            #087F9D 100%
        );

    box-shadow:
        0 12px 35px
        rgba(8,43,82,.15);

}


/* =====================================================
   PROMO CONTENT
===================================================== */

.promo-content {

    position: relative;

    z-index: 3;

    width: 58%;

    padding:
        42px 0 42px 48px;

}


.promo-label {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 12px;

    padding:
        5px 10px;

    border:
        1px solid rgba(255,255,255,.20);

    border-radius: 50px;

    background:
        rgba(255,255,255,.10);

    color: #BFEAF2;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.promo-label i {

    color: #FFD166;

    font-size: 10px;

}


.promo-content h2 {

    margin:
        0 0 12px;

    color: var(--white);

    font-size: 29px;

    line-height: 1.15;

    font-weight: 400;

    letter-spacing: -.7px;

}


.promo-content h2 strong {

    font-weight: 900;

}


.promo-content > p {

    max-width: 430px;

    margin:
        0 0 16px;

    color:
        rgba(255,255,255,.72);

    font-size: 10px;

    line-height: 1.7;

}


/* =====================================================
   PROMO FEATURES
===================================================== */

.promo-features {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 20px;

}


.promo-features span {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color:
        rgba(255,255,255,.82);

    font-size: 8px;

    font-weight: 600;

}


.promo-features i {

    color: #72D4E2;

    font-size: 10px;

}


/* =====================================================
   PROMO BUTTON
===================================================== */

.promo-button {

    min-height: 39px;

    padding:
        0 15px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border-radius: 7px;

    background: var(--white);

    color: var(--navy);

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    transition:
        all .2s ease;

}


.promo-button:hover {

    color: var(--navy);

    text-decoration: none;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.16);

}


.promo-button i {

    color: var(--ice-blue);

    font-size: 12px;

}


/* =====================================================
   PROMO IMAGE
===================================================== */

.promo-image {

    position: absolute;

    top: 0;

    right: 0;

    width: 45%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.promo-image-placeholder {

    position: relative;

    z-index: 2;

    width: 240px;

    height: 210px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px dashed
        rgba(255,255,255,.28);

    border-radius: 18px;

    background:
        rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.45);

}


.promo-image-placeholder i {

    margin-bottom: 8px;

    font-size: 35px;

}


.promo-image-placeholder span {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .7px;

}


/* =====================================================
   PROMO DECORATIVE CIRCLES
===================================================== */

.promo-circle {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.08);

}


.promo-circle-one {

    width: 350px;

    height: 350px;

    right: -90px;

    top: -20px;

}


.promo-circle-two {

    width: 250px;

    height: 250px;

    right: 25px;

    bottom: -120px;

}


/* =====================================================
   DISCOUNT BADGE
===================================================== */

.promo-discount {

    position: absolute;

    z-index: 5;

    top: 35px;

    right: 38%;

    width: 70px;

    height: 70px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #FFD166;

    color: #173B57;

    transform:
        rotate(8deg);

    box-shadow:
        0 8px 18px
        rgba(0,0,0,.14);

}


.promo-discount small {

    font-size: 6px;

    font-weight: 900;

}


.promo-discount strong {

    font-size: 22px;

    line-height: 1;

    font-weight: 900;

}


.promo-discount span {

    font-size: 7px;

    font-weight: 900;

}

/* =====================================================
   B2B SECTION
===================================================== */

.b2b-section {

    padding:
        20px 0 70px;

    background:
        #F7F9FB;

}


/* =====================================================
   B2B HEADING
===================================================== */

.b2b-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 25px;

}


.b2b-heading > p {

    max-width: 390px;

    margin: 0;

    color: #7C8998;

    font-size: 9px;

    line-height: 1.7;

}


/* =====================================================
   B2B WRAPPER
===================================================== */

.b2b-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1.2fr;

    gap: 15px;

}


/* =====================================================
   B2B MAIN CARD
===================================================== */

.b2b-main-card {

    position: relative;

    min-height: 270px;

    overflow: hidden;

    padding:
        30px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #0B365F,
            #0A5475
        );

    box-shadow:
        0 10px 25px
        rgba(11,54,95,.12);

}


.b2b-main-icon {

    width: 42px;

    height: 42px;

    margin-bottom: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.12);

    color: #8AE1EB;

    font-size: 19px;

}


.b2b-main-label {

    display: block;

    margin-bottom: 6px;

    color: #8BD8E2;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.3px;

}


.b2b-main-card h3 {

    position: relative;

    z-index: 2;

    margin:
        0 0 10px;

    color: var(--white);

    font-size: 22px;

    line-height: 1.2;

    font-weight: 900;

}


.b2b-main-card p {

    position: relative;

    z-index: 2;

    max-width: 310px;

    margin:
        0 0 18px;

    color:
        rgba(255,255,255,.67);

    font-size: 9px;

    line-height: 1.7;

}


.b2b-main-button {

    position: relative;

    z-index: 3;

    min-height: 35px;

    padding:
        0 13px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border-radius: 6px;

    background: #FFFFFF;

    color: var(--navy);

    font-size: 8px;

    font-weight: 800;

    text-decoration: none;

    transition:
        all .2s ease;

}


.b2b-main-button:hover {

    color: var(--navy);

    text-decoration: none;

    transform:
        translateY(-2px);

}


.b2b-main-button i {

    color: var(--ice-blue);

}


/* =====================================================
   B2B DECORATION
===================================================== */

.b2b-decoration {

    position: absolute;

    right: -35px;

    bottom: -45px;

    width: 180px;

    height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.07);

}


.b2b-decoration::before {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.07);

}


.b2b-decoration i {

    color:
        rgba(255,255,255,.08);

    font-size: 70px;

}


/* =====================================================
   B2B FEATURES
===================================================== */

.b2b-features {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.b2b-feature-card {

    min-height: 127px;

    padding:
        22px;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    border:
        1px solid #E5EBF0;

    border-radius: 12px;

    background: var(--white);

    transition:
        all .25s ease;

}


.b2b-feature-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(0,168,204,.25);

    box-shadow:
        0 10px 25px
        rgba(15,44,89,.08);

}


.b2b-feature-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        #EFF8FA;

    color:
        var(--ice-blue);

    font-size: 16px;

}


.b2b-feature-card h4 {

    margin:
        1px 0 5px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;

}


.b2b-feature-card p {

    margin: 0;

    color: #8A97A6;

    font-size: 8px;

    line-height: 1.6;

}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {


    /* PROMO */

    .promo-content {

        width: 65%;

        padding-left: 32px;

    }


    .promo-content h2 {

        font-size: 24px;

    }


    .promo-image {

        width: 40%;

        opacity: .8;

    }


    .promo-image-placeholder {

        width: 190px;

        height: 175px;

    }


    .promo-discount {

        right: 34%;

        width: 60px;

        height: 60px;

    }


    /* B2B */

    .b2b-wrapper {

        grid-template-columns:
            1fr;

    }


    .b2b-main-card {

        min-height: 235px;

    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {


    /* ================================================
       PROMO
    ================================================ */

    .promo-section {

        padding:
            15px 0 45px;

    }


    .promo-banner {

        min-height: 500px;

        align-items: flex-start;

        border-radius: 14px;

    }


    .promo-content {

        width: 100%;

        padding:
            30px 23px;

    }


    .promo-content h2 {

        font-size: 23px;

    }


    .promo-content > p {

        max-width: 330px;

        font-size: 9px;

    }


    .promo-features {

        gap: 7px;

    }


    .promo-features span {

        font-size: 7px;

    }


    .promo-image {

        top: auto;

        right: 0;

        bottom: 0;

        width: 100%;

        height: 220px;

        opacity: 1;

    }


    .promo-image-placeholder {

        width: 180px;

        height: 150px;

    }


    .promo-discount {

        top: 28px;

        right: 22px;

        width: 58px;

        height: 58px;

    }


    .promo-discount strong {

        font-size: 18px;

    }


    /* ================================================
       B2B
    ================================================ */

    .b2b-section {

        padding:
            15px 0 50px;

    }


    .b2b-heading {

        display: block;

        margin-bottom: 20px;

    }


    .b2b-heading > p {

        margin-top: 10px;

        font-size: 8px;

    }


    .b2b-wrapper {

        grid-template-columns:
            1fr;

    }


    .b2b-main-card {

        min-height: 250px;

        padding: 24px;

    }


    .b2b-main-card h3 {

        font-size: 20px;

    }


    .b2b-features {

        grid-template-columns:
            1fr 1fr;

        gap: 9px;

    }


    .b2b-feature-card {

        min-height: 125px;

        padding: 15px;

        display: block;

    }


    .b2b-feature-icon {

        margin-bottom: 9px;

    }


    .b2b-feature-card h4 {

        font-size: 9px;

    }


    .b2b-feature-card p {

        font-size: 7px;

    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {


    .promo-banner {

        min-height: 480px;

    }


    .promo-content {

        padding:
            25px 19px;

    }


    .promo-content h2 {

        font-size: 20px;

    }


    .promo-image {

        height: 195px;

    }


    .promo-image-placeholder {

        width: 155px;

        height: 125px;

    }


    .promo-image-placeholder i {

        font-size: 27px;

    }


    .b2b-features {

        grid-template-columns:
            1fr;

    }


    .b2b-feature-card {

        min-height: auto;

        display: flex;

    }


    .b2b-feature-icon {

        margin-bottom: 0;

    }

	
	
}

/* =====================================================
   STEP 8
   NEWSLETTER
===================================================== */

.newsletter-section {

    position: relative;

    z-index: 5;

    padding:
        10px 0 0;

}


.newsletter-card {

    position: relative;

    min-height: 145px;

    padding:
        25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            120deg,
            #0A355B,
            #087A96
        );

    box-shadow:
        0 15px 35px
        rgba(8,43,82,.15);

}


/* =====================================================
   NEWSLETTER CONTENT
===================================================== */

.newsletter-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

}


.newsletter-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(255,255,255,.10);

    color: #8BE0EA;

    font-size: 21px;

}


.newsletter-label {

    display: block;

    margin-bottom: 4px;

    color: #8BD8E2;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;

}


.newsletter-content h2 {

    margin:
        0 0 5px;

    color: var(--white);

    font-size: 19px;

    line-height: 1.2;

    font-weight: 400;

}


.newsletter-content h2 strong {

    font-weight: 900;

}


.newsletter-content p {

    margin: 0;

    color:
        rgba(255,255,255,.63);

    font-size: 8px;

    line-height: 1.5;

}


/* =====================================================
   NEWSLETTER FORM
===================================================== */

.newsletter-form {

    position: relative;

    z-index: 2;

    width: 360px;

    flex-shrink: 0;

    display: flex;

    gap: 7px;

}


.newsletter-input-wrapper {

    flex: 1;

    height: 40px;

    display: flex;

    align-items: center;

    padding:
        0 11px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 7px;

    background:
        rgba(255,255,255,.10);

}


.newsletter-input-wrapper i {

    margin-right: 7px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;

}


.newsletter-input-wrapper input {

    width: 100%;

    min-width: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--white);

    font-size: 8px;

}


.newsletter-input-wrapper input::placeholder {

    color:
        rgba(255,255,255,.50);

}


.newsletter-form > button {

    height: 40px;

    padding:
        0 13px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    border: 0;

    border-radius: 7px;

    background: var(--white);

    color: var(--navy);

    font-size: 8px;

    font-weight: 800;

    cursor: pointer;

    white-space: nowrap;

    transition:
        all .2s ease;

}


.newsletter-form > button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 6px 16px
        rgba(0,0,0,.15);

}


.newsletter-form > button i {

    color: var(--ice-blue);

}


/* =====================================================
   NEWSLETTER DECORATION
===================================================== */

.newsletter-card::after {

    content: "";

    position: absolute;

    right: -90px;

    top: -120px;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.07);

}

/* =====================================================
   MAIN FOOTER
===================================================== */

.site-footer {

    margin-top: -1px;

    padding-top: 75px;

    background:
        #092A4A;

    color: var(--white);

}


/* =====================================================
   FOOTER TOP
===================================================== */

.footer-top {

    display: grid;

    grid-template-columns:
        1.45fr
        .8fr
        .95fr
        1.25fr;

    gap: 40px;

    padding-bottom: 45px;

}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {

    max-width: 300px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: var(--white);

    text-decoration: none;

}


.footer-logo:hover {

    color: var(--white);

    text-decoration: none;

}


.footer-logo-placeholder {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.10);

    color: #8BDDE6;

    font-size: 18px;

}


.footer-logo strong {

    display: block;

    color: var(--white);

    font-size: 14px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: .5px;

}


.footer-logo strong span {

    color: #7BD6E1;

}


.footer-logo small {

    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,.42);

    font-size: 6px;

    letter-spacing: .7px;

}


.footer-brand > p {

    margin:
        0 0 17px;

    color:
        rgba(255,255,255,.52);

    font-size: 8px;

    line-height: 1.8;

}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    gap: 7px;

}


.footer-social a {

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 7px;

    background:
        rgba(255,255,255,.04);

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

    text-decoration: none;

    transition:
        all .2s ease;

}


.footer-social a:hover {

    background:
        rgba(255,255,255,.12);

    color: var(--white);

    transform:
        translateY(-2px);

}


/* =====================================================
   FOOTER COLUMN
===================================================== */

.footer-column h3 {

    margin:
        2px 0 16px;

    color: var(--white);

    font-size: 10px;

    font-weight: 800;

}


.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-column li {

    margin-bottom: 10px;

}


.footer-column li a {

    color:
        rgba(255,255,255,.52);

    font-size: 8px;

    text-decoration: none;

    transition:
        all .2s ease;

}


.footer-column li a:hover {

    padding-left: 3px;

    color: #82DCE5;

}


/* =====================================================
   FOOTER CONTACT
===================================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 13px;

}


.footer-contact-icon {

    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255,255,255,.07);

    color: #78D5DF;

    font-size: 10px;

}


.footer-contact-item span {

    display: block;

    margin-bottom: 2px;

    color:
        rgba(255,255,255,.38);

    font-size: 6px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .6px;

}


.footer-contact-item p,
.footer-contact-item a {

    display: block;

    margin: 0;

    color:
        rgba(255,255,255,.62);

    font-size: 8px;

    line-height: 1.5;

    text-decoration: none;

}


.footer-contact-item a:hover {

    color: #7BD6E1;

}


/* =====================================================
   FOOTER TRUST
===================================================== */

.footer-trust {

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    gap: 25px;

    padding:
        25px 0;

    border-top:
        1px solid
        rgba(255,255,255,.08);

}


.footer-trust-group {

    min-width: 0;

}


.footer-trust-title {

    display: block;

    margin-bottom: 9px;

    color:
        rgba(255,255,255,.36);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =====================================================
   PAYMENT BADGES
===================================================== */

.payment-badges,
.shipping-badges {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

}


.payment-badge {

    min-width: 45px;

    height: 25px;

    padding:
        0 7px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background: var(--white);

    color: #244361;

    font-size: 6px;

    font-weight: 900;

}


.shipping-badge {

    min-height: 25px;

    padding:
        0 8px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 5px;

    background:
        rgba(255,255,255,.04);

    color:
        rgba(255,255,255,.62);

    font-size: 6px;

    font-weight: 700;

}


.shipping-badge i {

    color: #75D7E1;

    font-size: 9px;

}


/* =====================================================
   OPERATIONAL
===================================================== */

.footer-operational {

    display: flex;

    align-items: center;

    gap: 9px;

}


.footer-operational > i {

    color: #7BD6E1;

    font-size: 18px;

}


.footer-operational span {

    color:
        rgba(255,255,255,.55);

    font-size: 7px;

    line-height: 1.5;

}


.footer-operational strong {

    display: block;

    color: var(--white);

    font-size: 8px;

}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.08);

    background:
        rgba(0,0,0,.12);

}


.footer-bottom-inner {

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

}


.footer-bottom p {

    margin: 0;

    color:
        rgba(255,255,255,.35);

    font-size: 7px;

}


.footer-bottom p strong {

    color:
        rgba(255,255,255,.55);

}


.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 8px;

}


.footer-bottom-links a {

    color:
        rgba(255,255,255,.42);

    font-size: 7px;

    text-decoration: none;

}


.footer-bottom-links a:hover {

    color: #7BD6E1;

}


.footer-bottom-links span {

    color:
        rgba(255,255,255,.18);

    font-size: 7px;

}


.footer-made i {

    color: #E05252;

    margin: 0 2px;

}


/* =====================================================
   STEP 9
   FINAL POLISH + RESPONSIVE AUDIT
===================================================== */


/* =====================================================
   1. GLOBAL DESIGN SYSTEM
===================================================== */

:root {

    --navy: #082B52;
    --navy-dark: #061F3A;

    --blue: #087F9D;
    --ice-blue: #00A8CC;

    --ice-light: #EFF8FA;

    --text: #243447;
    --text-muted: #7C8998;

    --border: #E5EBF0;

    --bg: #F7F9FB;

    --white: #FFFFFF;

    --danger: #E05252;
    --warning: #F5A623;
    --success: #20A464;

    --radius-sm: 7px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --container-width: 1180px;

}


/* =====================================================
   2. GLOBAL RESET
===================================================== */

*,
*::before,
*::after {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 80px;

}


body {

    margin: 0;

    padding: 0;

    background: var(--white);

    color: var(--text);

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.5;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    height: auto;

    display: block;

}


button,
input,
select,
textarea {

    font-family: inherit;

}


button {

    cursor: pointer;

}


a {

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;

}


/* =====================================================
   3. CONTAINER STANDARD
===================================================== */

.container {

    width: 100%;

    max-width: var(--container-width);

    margin-left: auto;

    margin-right: auto;

    padding-left: 20px;

    padding-right: 20px;

}


/* Bootstrap container compatibility */

@media (min-width: 576px) {

    .container {

        max-width: 540px;

    }

}


@media (min-width: 768px) {

    .container {

        max-width: 720px;

    }

}


@media (min-width: 992px) {

    .container {

        max-width: 960px;

    }

}


@media (min-width: 1200px) {

    .container {

        max-width: 1180px;

    }

}


/* =====================================================
   4. SECTION SPACING
===================================================== */

section {

    position: relative;

}


.section-heading {

    margin-bottom: 28px;

}


.section-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 7px;

    color: var(--ice-blue);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


.section-heading h2 {

    margin: 0;

    color: var(--navy);

    font-size: 25px;

    line-height: 1.2;

    font-weight: 400;

    letter-spacing: -.5px;

}


.section-heading h2 strong {

    font-weight: 900;

}


@media (max-width: 767.98px) {

    .section-heading {

        margin-bottom: 20px;

    }

    .section-heading h2 {

        font-size: 20px;

    }

}

/* =====================================================
   5. BUTTON POLISH
===================================================== */

.btn,
button,
.promo-button,
.b2b-main-button,
.newsletter-form > button {

    -webkit-tap-highlight-color: transparent;

}


.promo-button,
.b2b-main-button {

    position: relative;

    overflow: hidden;

}


.promo-button::after,
.b2b-main-button::after {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left .5s ease;

}


.promo-button:hover::after,
.b2b-main-button:hover::after {

    left: 140%;

}


/* =====================================================
   BUTTON PRESS
===================================================== */

.promo-button:active,
.b2b-main-button:active,
.newsletter-form > button:active {

    transform:
        translateY(0)
        scale(.97);

}

/* =====================================================
   6. PRODUCT CARD POLISH
===================================================== */


/*
 * Support beberapa kemungkinan class
 * dari STEP 5.
 */

.product-card,
.product-item,
.product-box {

    position: relative;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    background:
        var(--white);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.product-card:hover,
.product-item:hover,
.product-box:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(0,168,204,.25);

    box-shadow:
        0 14px 30px
        rgba(8,43,82,.09);

}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-card img,
.product-item img,
.product-box img {

    transition:
        transform .45s ease;

}


.product-card:hover img,
.product-item:hover img,
.product-box:hover img {

    transform:
        scale(1.035);

}


/* =====================================================
   PRODUCT IMAGE PLACEHOLDER
===================================================== */

.product-image-placeholder {

    min-height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 7px;

    background:
        #F5F8FA;

    color:
        #A7B3BE;

    font-size: 8px;

}


.product-image-placeholder i {

    font-size: 30px;

}


/* =====================================================
   PRODUCT BADGE
===================================================== */

.product-badge {

    position: absolute;

    top: 10px;

    left: 10px;

    z-index: 4;

    padding:
        4px 7px;

    border-radius: 5px;

    background:
        var(--ice-blue);

    color:
        var(--white);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: .5px;

}


/* =====================================================
   PRODUCT PRICE
===================================================== */

.product-price {

    color:
        var(--navy);

    font-size: 14px;

    font-weight: 900;

}


.product-old-price {

    margin-left: 5px;

    color:
        #A3ADB7;

    font-size: 8px;

    text-decoration:
        line-through;

}


/* =====================================================
   ADD CART BUTTON
===================================================== */

.product-add-cart,
.btn-add-cart {

    transition:
        all .2s ease;

}


.product-add-cart:hover,
.btn-add-cart:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 7px 15px
        rgba(0,168,204,.18);

}


.product-add-cart:active,
.btn-add-cart:active {

    transform:
        scale(.96);

}

/* =====================================================
   7. CART DRAWER FINAL POLISH
===================================================== */


/*
 * Support beberapa kemungkinan class
 * yang digunakan pada STEP 6.
 */

.cart-overlay,
.cart-backdrop {

    position: fixed;

    inset: 0;

    z-index: 9997;

    background:
        rgba(4,20,36,.48);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;

}


.cart-overlay.active,
.cart-backdrop.active {

    opacity: 1;

    visibility: visible;

}


.cart-drawer,
.cart-offcanvas {

    position: fixed;

    top: 0;

    right: 0;

    z-index: 9998;

    width: 400px;

    max-width: 100%;

    height: 100dvh;

    display: flex;

    flex-direction: column;

    background:
        var(--white);

    box-shadow:
        -12px 0 35px
        rgba(0,0,0,.12);

    transform:
        translateX(100%);

    transition:
        transform .3s
        cubic-bezier(.4,0,.2,1);

}


.cart-drawer.active,
.cart-offcanvas.active {

    transform:
        translateX(0);

}


/* =====================================================
   CART HEADER
===================================================== */

.cart-header {

    min-height: 64px;

    flex-shrink: 0;

    padding:
        0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid var(--border);

}


.cart-header h3 {

    margin: 0;

    color:
        var(--navy);

    font-size: 15px;

    font-weight: 900;

}


.cart-close {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 8px;

    background:
        #F3F6F8;

    color:
        #71808E;

    transition:
        all .2s ease;

}


.cart-close:hover {

    background:
        #E8EEF2;

    color:
        var(--navy);

}


/* =====================================================
   CART BODY
===================================================== */

.cart-body {

    flex: 1;

    min-height: 0;

    overflow-y: auto;

    overflow-x: hidden;

    padding:
        15px;

}


/* scrollbar */

.cart-body::-webkit-scrollbar {

    width: 5px;

}


.cart-body::-webkit-scrollbar-thumb {

    border-radius: 10px;

    background:
        #CBD5DC;

}


/* =====================================================
   CART FOOTER
===================================================== */

.cart-footer {

    flex-shrink: 0;

    padding:
        15px;

    border-top:
        1px solid var(--border);

    background:
        var(--white);

}


/* =====================================================
   CART MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .cart-drawer,
    .cart-offcanvas {

        width: 100%;

    }

    .cart-header {

        min-height: 58px;

    }

    .cart-body {

        padding:
            12px;

    }

}

/* =====================================================
   8. HEADER POLISH
===================================================== */

.site-header,
header {

    position: relative;

    z-index: 1000;

}


.navbar,
.main-header {

    position: relative;

    z-index: 1001;

}


/* =====================================================
   HEADER LINKS
===================================================== */

.nav-link {

    position: relative;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -3px;

    width: 0;

    height: 2px;

    border-radius: 10px;

    background:
        var(--ice-blue);

    transform:
        translateX(-50%);

    transition:
        width .2s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 65%;

}


/* =====================================================
   HEADER SEARCH
===================================================== */

.header-search,
.search-wrapper {

    transition:
        border-color .2s ease,
        box-shadow .2s ease;

}


.header-search:focus-within,
.search-wrapper:focus-within {

    border-color:
        rgba(0,168,204,.45);

    box-shadow:
        0 0 0 3px
        rgba(0,168,204,.08);

}


/* =====================================================
   HEADER ICON
===================================================== */

.header-icon,
.nav-icon {

    transition:
        transform .2s ease;

}


.header-icon:hover,
.nav-icon:hover {

    transform:
        translateY(-1px);

}


/* =====================================================
   CART COUNT
===================================================== */

.cart-count,
.cart-badge {

    min-width: 17px;

    height: 17px;

    padding:
        0 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #E05252;

    color:
        var(--white);

    font-size: 7px;

    font-weight: 900;

}


/* =====================================================
   CART COUNT ANIMATION
===================================================== */

.cart-count.bump,
.cart-badge.bump {

    animation:
        cartBump .35s ease;

}


@keyframes cartBump {

    0% {

        transform:
            scale(1);

    }

    40% {

        transform:
            scale(1.35);

    }

    100% {

        transform:
            scale(1);

    }

}

/* =====================================================
   9. HEADER MOBILE
===================================================== */

@media (max-width: 767.98px) {


    .navbar,
    .main-header {

        z-index: 1000;

    }


    /*
     * Jangan biarkan elemen horizontal
     * membuat body melebar.
     */

    .navbar .container,
    .main-header .container {

        max-width: 100%;

    }


    /*
     * Search mobile
     */

    .header-search,
    .search-wrapper {

        max-width: 100%;

    }


    /*
     * Menu mobile
     */

    .navbar-collapse {

        max-height:
            calc(100dvh - 70px);

        overflow-y: auto;

        overflow-x: hidden;

    }


    /*
     * Navigation item
     */

    .nav-link {

        padding:
            10px 0;

    }


    /*
     * Hilangkan underline
     * pada mobile
     */

    .nav-link::after {

        display: none;

    }

}

/* =====================================================
   10. HERO MOBILE POLISH
===================================================== */

@media (max-width: 767.98px) {


    .hero-section,
    .hero-banner {

        min-height:
            420px;

        overflow:
            hidden;

    }


    .hero-content {

        padding:
            35px 0;

    }


    .hero-content h1 {

        font-size:
            clamp(
                28px,
                8vw,
                40px
            );

        line-height:
            1.08;

    }


    .hero-content p {

        max-width:
            330px;

        font-size:
            9px;

    }


    .hero-buttons {

        display: flex;

        flex-wrap: wrap;

        gap: 7px;

    }


}

/* =====================================================
   11. CATEGORY MOBILE
===================================================== */

.category-grid,
.categories-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

}


.category-card {

    min-width: 0;

    overflow: hidden;

    border-radius:
        var(--radius-md);

}


.category-card img {

    transition:
        transform .4s ease;

}


.category-card:hover img {

    transform:
        scale(1.05);

}


@media (max-width: 991.98px) {

    .category-grid,
    .categories-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 575.98px) {

    .category-grid,
    .categories-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;

    }


    .category-card {

        border-radius:
            10px;

    }

}

/* =====================================================
   12. TRUST BAR MOBILE
===================================================== */

.trust-bar,
.features-bar {

    overflow: hidden;

}


@media (max-width: 767.98px) {

    .trust-items,
    .features-wrapper {

        display: flex;

        flex-wrap: nowrap;

        gap: 9px;

        overflow-x: auto;

        overflow-y: hidden;

        padding-bottom: 5px;

        scroll-snap-type:
            x mandatory;

        scrollbar-width: none;

    }


    .trust-items::-webkit-scrollbar,
    .features-wrapper::-webkit-scrollbar {

        display: none;

    }


    .trust-item,
    .feature-item {

        flex:
            0 0 auto;

        min-width:
            180px;

        scroll-snap-align:
            start;

    }

}

/* =====================================================
   13. PROMO MOBILE FINAL
===================================================== */

@media (max-width: 767.98px) {

    .promo-banner {

        min-height:
            490px;

    }


    .promo-content {

        position:
            relative;

        z-index:
            5;

    }


    .promo-image {

        z-index:
            1;

    }


    .promo-discount {

        z-index:
            8;

    }


    .promo-circle {

        opacity:
            .7;

    }

}


@media (max-width: 390px) {

    .promo-banner {

        min-height:
            465px;

    }


    .promo-content h2 {

        font-size:
            20px;

    }


    .promo-content > p {

        max-width:
            290px;

    }


    .promo-features {

        max-width:
            290px;

    }

}


@media (max-width: 360px) {

    .promo-banner {

        min-height:
            450px;

    }


    .promo-content {

        padding:
            22px 17px;

    }


    .promo-content h2 {

        font-size:
            19px;

    }


    .promo-image {

        height:
            175px;

    }


    .promo-image-placeholder {

        width:
            145px;

        height:
            115px;

    }

}

/* =====================================================
   14. B2B MOBILE FINAL
===================================================== */

@media (max-width: 575.98px) {

    .b2b-features {

        gap:
            8px;

    }


    .b2b-feature-card {

        padding:
            13px;

    }


    .b2b-main-card {

        padding:
            22px;

    }


    .b2b-main-card h3 {

        font-size:
            19px;

    }

}

/* =====================================================
   15. FOOTER MOBILE FINAL
===================================================== */

@media (max-width: 767.98px) {


    .footer-top {

        gap:
            28px 20px;

    }


    .footer-brand {

        padding-right:
            10px;

    }


    .footer-brand > p {

        max-width:
            340px;

    }


    .footer-column li {

        margin-bottom:
            8px;

    }


    .footer-contact-item {

        margin-bottom:
            11px;

    }


    .payment-badges,
    .shipping-badges {

        max-width:
            100%;

    }


    .footer-bottom-inner {

        align-items:
            flex-start;

    }

}


@media (max-width: 390px) {

    .footer-top {

        grid-template-columns:
            1fr;

    }


    .footer-brand,
    .footer-contact {

        grid-column:
            auto;

    }


    .footer-column {

        width:
            100%;

    }


    .footer-bottom-links {

        flex-wrap:
            wrap;

    }

}

/* =====================================================
   16. FLOATING WHATSAPP FINAL
===================================================== */

.floating-whatsapp {

    z-index:
        9900;

}


@media (max-width: 767.98px) {

    .floating-whatsapp {

        right:
            14px;

        bottom:
            14px;

        width:
            46px;

        height:
            46px;

        min-height:
            46px;

        padding:
            0;

    }

}


@media (max-width: 360px) {

    .floating-whatsapp {

        right:
            10px;

        bottom:
            10px;

        width:
            42px;

        height:
            42px;

        min-height:
            42px;

    }

}

/* =====================================================
   17. Z-INDEX SYSTEM
===================================================== */

.site-header,
header {

    z-index:
        1000;

}


.navbar,
.main-header {

    z-index:
        1001;

}


.dropdown-menu {

    z-index:
        1100;

}


.cart-overlay,
.cart-backdrop {

    z-index:
        9997;

}


.cart-drawer,
.cart-offcanvas {

    z-index:
        9998;

}


.floating-whatsapp {

    z-index:
        9900;

}

/* =====================================================
   18. OVERFLOW PROTECTION
===================================================== */

html,
body {

    max-width:
        100%;

    overflow-x:
        hidden;

}


.row {

    --bs-gutter-x:
        1.5rem;

}


.container,
.container-fluid {

    min-width:
        0;

}


[class*="col-"] {

    min-width:
        0;

}


input,
select,
textarea {

    max-width:
        100%;

}


table {

    max-width:
        100%;

}


@media (max-width: 767.98px) {

    .container {

        padding-left:
            15px;

        padding-right:
            15px;

    }

}

/* =====================================================
   19. GLOBAL ANIMATION
===================================================== */

.fade-up {

    opacity:
        0;

    transform:
        translateY(18px);

    transition:
        opacity .6s ease,
        transform .6s ease;

}


.fade-up.show {

    opacity:
        1;

    transform:
        translateY(0);

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-link:hover {
    text-decoration: none;
}



/* =====================================================
   USER ACCOUNT
===================================================== */

.header-user {

    position: relative;

    display: flex;

    align-items: center;

}


/* =====================================================
   USER BUTTON
===================================================== */

.header-user .header-action {

    border: none;

    background: transparent;

    cursor: pointer;

}


/* =====================================================
   USER DROPDOWN
===================================================== */

.user-dropdown {

    position: absolute;

    top: calc(100% + 12px);

    right: 0;

    width: 270px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

    overflow: hidden;

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

}


/* =====================================================
   DROPDOWN AKTIF
===================================================== */

.user-dropdown.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =====================================================
   HEADER DROPDOWN
===================================================== */

.user-dropdown-header {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px;

}


/* =====================================================
   ICON USER
===================================================== */

.user-dropdown-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f1f5f9;

    color: #082B52;

    font-size: 22px;

}


/* =====================================================
   INFO
===================================================== */

.user-dropdown-info {

    min-width: 0;

}


.user-dropdown-name {

    font-size: 14px;

    font-weight: 700;

    color: #082B52;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}


.user-dropdown-label {

    margin-top: 2px;

    font-size: 12px;

    color: #6c757d;

}


/* =====================================================
   DIVIDER
===================================================== */

.user-dropdown-divider {

    height: 1px;

    background: #e9ecef;

}


/* =====================================================
   ITEM
===================================================== */

.user-dropdown-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 16px;

    color: #343a40;

    text-decoration: none;

    font-size: 14px;

    transition:
        background .2s ease,
        color .2s ease;

}


.user-dropdown-item i {

    width: 20px;

    text-align: center;

    font-size: 17px;

}


.user-dropdown-item:hover {

    background: #f8fafc;

    color: #082B52;

}


.user-dropdown-logout {

    color: #dc3545;

}


.user-dropdown-logout:hover {

    color: #dc3545;

    background: #fff5f5;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .user-dropdown {

        width: 250px;

        right: -8px;

    }

}

.product-wholesale-price {

    margin-top: 5px;

    font-size: 12px;

    font-weight: 600;

    color: #198754;

    line-height: 1.4;

}

/* =====================================================
   HASIL PENCARIAN
===================================================== */

.product-search-result {

    margin-bottom: 18px;

    color: #29415F;

    font-size: 15px;

    line-height: 1.4;

}


.product-search-result span {

    font-weight: 500;

}


.product-search-result strong {

    color: var(--navy);

    font-weight: 800;

}