*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    overflow-x:hidden;
}

/* =========================
TOP HEADER
========================= */

.top-header{
    background:#0f8a7b;
    padding:12px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;
    gap:15px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.top-left span,
.top-right a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.offer-badge{
    background:#ffb800;
    color:#111;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;
    font-weight:600;
}

/* =========================
MAIN HEADER
========================= */

.main-header{
    background:#fff;

    padding:25px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:30px;

    flex-wrap:wrap;
}

/* LOGO */

.logo{
    text-decoration:none;

    font-size:58px;

    font-weight:800;

    color:#0f8a7b;
}

.logo span{
    color:#0f172a;
}

/* =========================
SEARCH
========================= */

.search-box{
    flex:1;
    max-width:700px;
}

.search-box form{
    position:relative;
}

.search-box input{
    width:100%;

    height:65px;

    border:2px solid #e5e7eb;

    border-radius:60px;

    padding:0 75px 0 28px;

    font-size:16px;

    outline:none;
}

.search-box button{
    position:absolute;

    right:8px;
    top:8px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#0f8a7b;

    color:#fff;

    cursor:pointer;

    font-size:18px;
}

/* =========================
HEADER ICONS
========================= */

.header-icons{
    display:flex;
    align-items:center;
    gap:20px;
}

.icon-box{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    color:#111827;
}

.icon-circle{
    width:56px;
    height:56px;

    border-radius:50%;

    background:#ffb800;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;

    position:relative;

    color:#111827;
}

.cart-count{
    position:absolute;

    top:-5px;
    right:-3px;

    width:22px;
    height:22px;

    border-radius:50%;

    background:#ef4444;

    color:#fff;

    font-size:12px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.icon-text small{
    display:block;

    font-size:12px;

    color:#6b7280;
}

.icon-text span{
    font-weight:700;

    font-size:18px;
}

/* =========================
NAVBAR
========================= */

.navbar{
    background:#fff;

    padding:18px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    border-top:1px solid #eee;
    border-bottom:1px solid #eee;

    position:relative;

    z-index:99;
}

/* CATEGORY */

.category-dropdown{
    position:relative;
}

.category-btn{
    background:#0f9b8e;

    color:#fff;

    border:none;

    padding:18px 26px;

    border-radius:16px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    display:flex;
    align-items:center;
    gap:12px;
}

/* CATEGORY MENU */

.category-menu{
    position:absolute;

    top:75px;
    left:0;

    width:320px;

    background:#fff;

    border-radius:22px;

    box-shadow:0 10px 40px rgba(0,0,0,0.12);

    overflow:hidden;

    z-index:999;

    display:none;

    max-height:520px;

    overflow-y:auto;
}

/* SHOW MENU */

.category-dropdown:hover .category-menu{
    display:block;
}

/* CATEGORY LINKS */

.category-menu a{
    display:flex;
    align-items:center;

    padding:17px 24px;

    color:#111827;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    border-bottom:1px solid #f1f1f1;

    transition:0.3s;
}

.category-menu a:hover{
    background:#0f9b8e;

    color:#fff;

    padding-left:32px;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
    gap:35px;

    flex-wrap:wrap;
}

.menu a{
    color:#111827;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:0.3s;
}

.menu a:hover{
    color:#0f9b8e;
}

/* SUPPORT */

.support-box{
    display:flex;
    align-items:center;
    gap:14px;
}

.support-icon{
    width:55px;
    height:55px;

    border-radius:50%;

    background:#f3f4f6;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#0f9b8e;

    font-size:22px;
}

.support-text small{
    display:block;

    color:#888;

    font-size:12px;
}

.support-text span{
    font-size:24px;

    font-weight:700;

    color:#111827;
}

/* =========================
MOBILE HEADER
========================= */

@media(max-width:768px){

/* TOP HEADER */

.top-header{
    padding:12px;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    gap:12px;
}

.top-left,
.top-right{
    justify-content:center;

    gap:12px;

    flex-wrap:wrap;
}

.top-left span,
.top-right a{
    font-size:12px;
}

/* MAIN HEADER */

.main-header{
    padding:18px 14px;

    flex-direction:column;

    gap:18px;
}

/* LOGO */

.logo{
    font-size:42px;

    text-align:center;
}

/* SEARCH */

.search-box{
    width:100%;
    max-width:100%;
}

.search-box form{
    position:relative;
}

.search-box input{
    width:100%;

    height:54px;

    border-radius:50px;

    padding:0 60px 0 18px;

    font-size:14px;
}

.search-box button{
    position:absolute;

    top:5px;
    right:5px;

    width:44px;
    height:44px;

    border-radius:50%;
}

/* HIDE LOGIN/CART */

.header-icons{
    display:none;
}

/* NAVBAR */

.navbar{
    padding:16px 14px;

    flex-direction:column;

    align-items:flex-start;

    gap:16px;
}

/* CATEGORY */

.category-dropdown{
    width:100%;
}

.category-btn{
    width:100%;

    justify-content:center;

    padding:15px;

    border-radius:14px;

    font-size:15px;
}

/* MENU */

.menu{
    display:none;
}

/* SUPPORT */

.support-box{
    display:none;
}

}

/* EXTRA SMALL */

@media(max-width:500px){

.logo{
    font-size:34px;
}

.search-box input{
    height:52px;
}

}
/* =========================
HIDE MOBILE HEADER ITEMS
========================= */

@media(max-width:768px){

/* PAGE MENU HIDE */

.menu{
    display:none !important;
}

/* SEARCH BOX HIDE */

.search-box{
    display:none !important;
}

/* SUPPORT SECTION HIDE */

.support-box{
    display:none !important;
}

/* LOGIN + CART HIDE */

.header-icons{
    display:none !important;
}

}
/* =========================
FINAL MOBILE HEADER FIX
========================= */

@media only screen and (max-width:768px){

/* SEARCH HIDE */

.search-box{
    display:none !important;
}

/* LOGIN + CART HIDE */

.header-icons{
    display:none !important;
}

/* SUPPORT HIDE */

.support-box{
    display:none !important;
}

/* PAGE MENU HIDE */

.menu{
    display:none !important;
}

/* MAIN HEADER */

.main-header{
    padding:18px 15px !important;
    justify-content:center !important;
    text-align:center !important;
}

/* LOGO */

.logo{
    width:100%;
    text-align:center;
    font-size:44px !important;
}

/* NAVBAR */

.navbar{
    padding:15px !important;
}

/* CATEGORY BUTTON */

.category-dropdown{
    width:100%;
}

.category-btn{
    width:100%;
    justify-content:center;
    border-radius:14px;
}

}
@media only screen and (max-width:768px){

/* HIDE */

.search-box,
.header-icons,
.support-box,
.menu{
    display:none !important;
}

/* TOP HEADER */

.top-header{
    padding:12px !important;

    flex-direction:column !important;

    justify-content:center !important;

    align-items:center !important;

    text-align:center !important;

    gap:10px !important;
}

.top-left,
.top-right{
    justify-content:center !important;

    flex-wrap:wrap !important;

    gap:10px !important;
}

/* MAIN HEADER */

.main-header{
    padding:18px 15px !important;

    justify-content:center !important;

    align-items:center !important;

    text-align:center !important;
}

/* LOGO */

.logo{
    width:100% !important;

    text-align:center !important;

    font-size:42px !important;
}

/* NAVBAR */

.navbar{
    padding:15px !important;
}

/* CATEGORY BUTTON */

.category-dropdown{
    width:100% !important;
}

.category-btn{
    width:100% !important;

    justify-content:center !important;

    border-radius:14px !important;
}

}