/* RESET */
* {
    box-sizing: border-box;
    margin: 0px;
}
body{
    background-color: #fafafa;
}
html{
    margin: 0px !important;
    overflow-x:hidden;
}
/* OFFER BAR */
.top-offer-bar {
    background: #000;
    color: #ffffff;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
}

.offer-nav {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
}

.offer-nav.prev { left: 20px; }
.offer-nav.next { right: 20px; }

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 999;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown .25s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

body.has-sticky-header {
    padding-top: 130px;
}

.header-inner {
    max-width: 1300px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.site-logo img {     
	height: 50px;
    width: 100px;
} 

.header-search { flex: 1; position: relative; }

.header-search form {
    display: flex;
    border: 1px solid #ccc;
}

.header-search input {
    width: 100%;
    padding: 10px;
    border: none;
}

.header-search button {
    background: none;
    border: none;
    padding: 0 15px;
}

.live-search-results {
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    z-index: 999;
}

.live-search-results a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-select { font-size: 14px; }

.cart-icon { position: relative; }

.cart-count,
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000;
    color: #fff;
    width: 18px;
    height: 18px;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAV */
.nav-menu {
    max-width: 1300px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    gap: 22px;
    list-style: none;
}

.nav-menu ul{
    display: flex;
    gap:15px;
}

.nav-menu li{
    list-style:none;
}
.nav-menu li a{
    text-decoration: none;
    color: black;
}

/* MOBILE */
.mobile-menu-toggle { display: none; }

@media (max-width: 1024px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
        background: #fff;
        padding: 30px;
    }

    .main-nav.active { display: block; }
    .nav-menu { flex-direction: column; }
    .mobile-menu-toggle { display: block;background: none;border:none;padding:none;margin:none; }
}

.header-actions {
    display: flex;
    gap: 28px;
    align-items: center;
}

/* EACH ITEM */
.header-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

/* ICON */
.header-action svg {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
    stroke: #000;
}

/* LABEL */
.header-action span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* COUNT BADGE */
.header-action .count {
    position: absolute;
    top: -6px;
    right: 0px;
    background: #000;
    color: #fff;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}
.header-action .wishlist-count{
	right:15%;
}

/* HOVER */
.header-action:hover svg {
    stroke: #ff3b3b;
}

.header-action:hover span {
    color: #ff3b3b;
}

/* HIDE ZERO COUNT */
.header-action .count:empty {
    display: none;
}

@media (max-width: 700px) {

    .mobile-search-toggle{
        display:block !important;
        background: transparent;
        border: none;
    }

    .header-action span,
    .header-select {
        display: none;
    }

    .header-actions {
        display: flex;
        gap: 14px;
        margin-left: auto;
    }

    .header-search {
        display: none;
    }

    .live-search-results-mobile a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: #000;
    }
}
.mobile-search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9999;
    display: none;
}

.mobile-search-modal.active {
    display: block;
}

.mobile-search-box {
    background: #fff;
    padding: 16px;
    height: 100%;
    position: relative;
}

.mobile-search-box input {
    width: 100%;
    padding: 14px 44px 14px 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.mobile-search-close {
    position: absolute;
    top: 28px;
    right: 18px;
    background: none;
    border: none;
}

.mobile-search-close svg {
    width: 22px;
    height: 22px;
}
.mobile-search-toggle{
    display:none;
}

@media(max-width:449px){
    .header-inner {
        gap: 15px;
        justify-content: center;
    }

    .header-actions {
        display: flex;
        gap: 18px;
        align-items: center;
    }
}