body {
    margin:0;
    font-family:'Poppins',sans-serif;
}

a {
    text-decoration:none;
    color:inherit;
}

header {
    position:fixed;
    top:0;
    left:0;
    right:0;
    background:#fff;
    z-index:1000;
    box-shadow:0 1px 5px rgba(0,0,0,0.08);
    transition:transform 0.4s ease, opacity 0.4s ease;
}

header.hide {
    transform:translateY(-100%);
    opacity:0;
}

.header-space {
    height:90px;
}



.header-main {
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1300px;
    margin:auto;
    padding:10px 20px;
    gap:12px;
}

.mobile-top-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo {
    font-size:24px;
    font-weight:800;
    letter-spacing:0.5px;
    text-transform:uppercase;
    white-space:nowrap;
}

.logo span {
    font-weight:400;
    color:#e60023;
}

.icons {
    display:flex;
    align-items:center;
    gap:25px;
    font-size:20px;
    white-space:nowrap;
}

.icons a {
    position:relative;
}

.cart-badge {
    position:absolute;
    top:-6px;
    right:-8px;
    background:red;
    color:#fff;
    font-size:10px;
    border-radius:50%;
    width:14px;
    height:14px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.search-bar {
    position:relative;
    width:100%;
    max-width:900px;
}

.search-bar input{
    width:100%;
    height:35px;
    padding:0 90px 0 18px;
    box-sizing:border-box;
    border:1px solid #ddd;
    border-radius:20px;
    font-size:14px;
    outline:none;
}
.search-bar .search-icon {
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:15px;
}

.image-btn {
    position:absolute;
    right:42px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    font-size:18px;
    color:#666;
    cursor:pointer;
}

.gender-switch {
    display:flex;
    border:1px solid #eee;
    border-radius:4px;
    overflow:hidden;
    white-space:nowrap;
}

.gender-btn {
    padding:10px 28px;
    font-size:13px;
    font-weight:800;
    border:none;
    background:#f5f5f5;
    cursor:pointer;
    letter-spacing:1px;
    transition:.25s;
}

.gender-btn.active {
    background:#000;
    color:#fff;
}

.gender-btn:not(.active):hover {
    background:#eaeaea;
}

.search-results {
    position:absolute;
    top:42px;
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    box-shadow:0 5px 10px rgba(0,0,0,0.08);
    max-height:400px;
    overflow-y:auto;
    z-index:5000;
    display:none;
}

.search-results a {
    display:flex;
    align-items:center;
    padding:8px 10px;
    border-bottom:1px solid #f3f3f3;
    color:#000;
}

.search-results a:hover {
    background:#f7f7f7;
}

.search-results img {
    width:50px;
    height:65px;
    object-fit:cover;
    border-radius:5px;
    margin-right:10px;
}

.search-results .info {
    display:flex;
    flex-direction:column;
}

.search-results .name {
    font-size:13px;
    font-weight:600;
}

.search-results .price {
    font-size:12px;
    color:#e60023;
    font-weight:600;
}

#searchLoading {
    display:none;
    position:absolute;
    top:42px;
    left:0;
    width:100%;
    background:white;
    border:1px solid #ddd;
    border-radius:8px;
    padding:20px 0;
    text-align:center;
    z-index:5000;
}

@keyframes spin {
    100% {
        transform:rotate(360deg);
    }
}

.spinner {
    width:30px;
    height:30px;
    border:4px solid #ddd;
    border-top:4px solid #e60023;
    border-radius:50%;
    margin:auto;
    animation:spin 0.7s linear infinite;
}

.category-menu {
    background:#fff;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:0 10px;
    overflow:visible;
}

.cat-wrapper {
    display:none;
    align-items:center;
    justify-content:center;
    gap:8px;
    white-space:nowrap;
}

.cat-wrapper.active {
    display:flex;
}

.dropdown {
    position:relative;
}

.dropdown > a {
    display:inline-block;
    padding:14px 18px;
    font-size:13px;
    font-weight:700;
    color:#000;
    text-transform:uppercase;
}

.dropdown > a:hover {
    border-bottom:2px solid #000;
}

.dropdown i {
    font-size:10px;
    margin-left:5px;
}

.submenu {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:230px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    z-index:4000;
    padding:8px 0;
    border:1px solid #eee;
}

.dropdown:hover .submenu {
    display:block;
}

.submenu a {
    display:block;
    padding:12px 16px;
    font-size:13px;
    font-weight:600;
    color:#000;
    text-transform:uppercase;
    white-space:nowrap;
}

.submenu a:hover {
    background:#f7f7f7;
}

.menu-icon {
    display:none;
}

.overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    opacity:0;
    pointer-events:none;
    transition:opacity .3s ease;
    z-index:900;
}

.overlay.active {
    opacity:1;
    pointer-events:auto;
}

.mobile-menu {
    position:fixed;
    top:0;
    left:0;
    width:85%;
    max-width:340px;
    height:100%;
    background:#fff;
    transform:translateX(-100%);
    transition:transform .3s ease;
    z-index:1001;
    overflow-y:auto;
}

.mobile-menu.active {
    transform:translateX(0);
}

.mobile-menu-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    border-bottom:1px solid #eee;
}

.mobile-menu-header h3 {
    margin:0;
    font-size:18px;
    font-weight:700;
}

.mobile-group-title {
    padding:14px 22px;
    font-size:12px;
    font-weight:900;
    letter-spacing:0.5px;
    text-transform:uppercase;
    color:#e60023;
    background:#fafafa;
    border-bottom:1px solid #f0f0f0;
}

.mobile-main-cat {
    width:100%;
    padding:15px 22px;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    background:#fff;
    border-bottom:1px solid #eee;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    box-sizing:border-box;
}

.mobile-main-cat i {
    font-size:12px;
    transition:.3s;
}

.mobile-main-cat.active i {
    transform:rotate(180deg);
}

.mobile-subcat-box {
    display:none;
    background:#fafafa;
}

.mobile-subcat-box.active {
    display:block;
}

.mobile-subcat {
    display:block;
    padding:13px 35px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    border-bottom:1px solid #eee;
    color:#333;
}

.mobile-subcat:hover {
    background:#f1f1f1;
}

.mobile-footer-links {
    padding:20px;
}

.mobile-footer-links a {
    display:block;
    font-size:14px;
    margin-bottom:10px;
    color:#444;
}

.whatsapp-float {
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:99999;
    transition:.3s;
    animation:waPulse 2s infinite;
}

.whatsapp-float:hover {
    transform:scale(1.1);
    background:#1ebe5d;
}

@keyframes waPulse {
    0% {
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70% {
        box-shadow:0 0 0 14px rgba(37,211,102,0);
    }
    100% {
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:992px) {
    .header-main {
        flex-direction:column;
        align-items:stretch;
        gap:10px;
    }

    .mobile-top-row {
        width:100%;
    }

    .logo {
        font-size:20px;
    }

    .icons {
        gap:18px;
    }

    .menu-icon {
        display:block;
    }

    .search-bar {
        width:100%;
        min-width:unset;
    }

    .gender-switch {
        display:none !important;
    }

    .category-menu {
        display:none;
    }
}

@media(max-width:768px) {
    .whatsapp-float {
        right:15px;
        bottom:85px;
        width:55px;
        height:55px;
        font-size:28px;
    }
}


/* DESKTOP / WINDOWS FASHION NOVA STYLE - mobile header unchanged */
.desktop-extra{display:none;}

@media(min-width:993px){

    .header-main{
        max-width:none;
        height:58px;
        padding:0 24px;
        flex-direction:row;
        align-items:center;
        justify-content:flex-start;
        gap:28px;
    }

    .mobile-top-row{
        display:contents;
    }

    .logo{
        order:1;
        font-size:26px;
        font-weight:400;
        letter-spacing:-1px;
        line-height:1;
    }

    .logo span{
        font-weight:900;
        color:#000;
        letter-spacing:-2px;
    }

    .gender-switch{
        order:2;
        display:flex;
        align-items:center;
        border:0;
        border-radius:0;
        overflow:visible;
        gap:22px;
        background:transparent;
    }

    .gender-btn{
        background:transparent;
        padding:20px 0 16px;
        border:0;
        border-bottom:3px solid transparent;
        border-radius:0;
        font-size:13px;
        font-weight:900;
        letter-spacing:0;
    }

    .gender-btn.active{
        background:transparent;
        color:#000;
        border-bottom-color:#111;
    }

    .gender-btn:not(.active):hover{
        background:transparent;
        border-bottom-color:#ddd;
    }

    .search-bar{
        order:3;
        flex:1;
        max-width:470px;
        margin-left:auto;
    }

    .search-bar input{
        width:100%;
        height:44px;
        padding:0 52px 0 44px;
        border-radius:999px;
        font-size:14px;
    }

    .search-bar .search-icon{
        left:17px;
        right:auto;
        color:#aaa;
    }

    .image-btn{
        right:16px;
    }

    .icons{
        order:4;
        gap:22px;
        font-size:20px;
    }

    .desktop-extra{
        display:flex !important;
    }

    .flag-dot{
        width:13px;
        height:9px;
        background:#e60023;
        border-radius:1px;
        position:relative;
        align-self:center;
    }

    .flag-dot:after{
        content:'';
        position:absolute;
        left:4px;
        top:3px;
        width:4px;
        height:3px;
        background:#111;
        border-radius:50%;
    }

    .menu-icon{
        display:none !important;
    }

    .category-menu{
        height:48px;
        padding:0 24px;
        border-top:1px solid #f1f1f1;
    }

    .cat-wrapper{
        justify-content:flex-start;
        gap:22px;
        overflow:visible;
    }

    .dropdown{
        height:48px;
        display:flex;
        align-items:center;
    }

    .dropdown > a{
        height:48px;
        padding:0;
        display:flex;
        align-items:center;
        font-size:12px;
        font-weight:900;
    }

    .submenu{
        top:48px;
    }

}

/* Fashion Nova style drawer - only menu opened by 3 lines */
.mobile-menu{
    width:92%;
    max-width:390px;
    background:#fff;
    box-shadow:8px 0 30px rgba(0,0,0,.22);
}

.fn-menu-top{
    height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 16px;
    border-bottom:1px solid #eee;
    background:#fff;
}

.fn-menu-logo{
    font-size:24px;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:-1px;
    white-space:nowrap;
    line-height:1;
}

.fn-menu-logo span{
    font-weight:900;
    color:#000;
    letter-spacing:-2px;
}

.fn-menu-icons{
    display:flex;
    align-items:center;
    gap:17px;
    font-size:20px;
}

.fn-menu-icons a,
.fn-menu-icons button{
    border:0;
    background:none;
    padding:0;
    color:#111;
    font-size:20px;
    cursor:pointer;
    position:relative;
    display:flex;
    align-items:center;
}

.fn-menu-tabs{
    display:flex;
    align-items:center;
    overflow-x:auto;
    white-space:nowrap;
    border-bottom:1px solid #e8e8e8;
    background:#fff;
    scrollbar-width:none;
}

.fn-menu-tabs::-webkit-scrollbar{display:none;}

.fn-menu-tab{
    flex:1;
    min-width:90px;
    height:48px;
    border:0;
    background:#fff;
    font-size:13px;
    font-weight:900;
    color:#111;
    cursor:pointer;
    border-bottom:3px solid transparent;
    text-transform:uppercase;
}

.fn-menu-tab.active{
    border-bottom-color:#111;
}

.fn-promo{
    background:#f4f4f4;
    color:#111;
    padding:13px 16px;
    text-align:center;
    font-size:12px;
    font-weight:900;
    letter-spacing:.3px;
    text-transform:uppercase;
    border-bottom:1px solid #e6e6e6;
}

.fn-menu-panel{display:none;}
.fn-menu-panel.active{display:block;}

.fn-main-cat{
    width:100%;
    border:0;
    background:#fff;
    padding:17px 18px;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #eee;
    cursor:pointer;
    color:#111;
    text-align:left;
}

.fn-main-cat i{
    font-size:12px;
    transition:.25s;
}

.fn-main-cat.active i{
    transform:rotate(180deg);
}

.fn-subcat-box{
    display:none;
    background:#fafafa;
    border-bottom:1px solid #eee;
}

.fn-subcat-box.active{display:block;}

.fn-subcat{
    display:block;
    padding:14px 28px;
    font-size:13px;
    font-weight:700;
    color:#333;
    text-transform:uppercase;
    border-bottom:1px solid #eee;
}

.fn-subcat:last-child{border-bottom:0;}
.fn-subcat:hover{background:#f0f0f0;}

.fn-menu-bottom{
    padding:18px;
    background:#fff;
}

.fn-bottom-link{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 0;
    font-size:14px;
    font-weight:700;
    color:#111;
    border-bottom:1px solid #eee;
}
.body {
    font-family: "Lato", sans-serif;
    transition: background-color .5s;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}