.site-header {
    box-shadow: 0 1px 5px rgba(40, 44, 63, .08)
}

.header-inner {
    display: grid;
    grid-template-columns: 0.8fr 2fr 1.5fr 1.5fr 0.5fr;
    gap: 24px;
    min-height: 80px
}

.brand {
    display: flex;
    align-items: center;
    min-width: 82px
}

.brand img {
    display: block;
    max-height: 52px;
    width: auto
}

.primary-nav {
    min-width: 0
}

.primary-nav>ul {
    gap: 22px
}

.primary-nav>ul>li {
    position: static
}

.primary-nav>ul>li>a {
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap
}

.primary-nav>ul>li:nth-child(1) {
    --menu-accent: #ff3f6c
}

.primary-nav>ul>li:nth-child(2) {
    --menu-accent: #f26a10
}

.primary-nav>ul>li:nth-child(3) {
    --menu-accent: #f2c210
}

.primary-nav>ul>li:nth-child(4) {
    --menu-accent: #0db7af
}

.primary-nav>ul>li:nth-child(5) {
    --menu-accent: #ff3f6c
}

.primary-nav>ul>li:nth-child(6) {
    --menu-accent: #ff3f6c
}

.primary-nav>ul>li:hover,
.primary-nav>ul>li:focus-within {
    border-color: var(--menu-accent, #ff3f6c)
}

.mega-menu-panel {
    left: 35%;
    width: min(600px, 80vw);
    padding: 20px;
    border-top: 1px solid #f3f3f4;
    box-shadow: 0 9px 18px rgba(40, 44, 63, .14)
}

.mega-menu-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
}

.mega-menu-group {
    border-right: 1px solid #f1f1f1;
    padding-right: 22px
}

.mega-menu-group:last-child {
    border-right: 0
}

.mega-menu-heading {
    color: var(--menu-accent, #ff3f6c);
    font-size: 13px;
    margin-bottom: 11px
}

.mega-menu-links li {
    padding: 4px 0
}

.mega-menu-links a {
    font-size: 13px
}

.header-search {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    background: #f5f5f6;
    border: 1px solid transparent;
    border-radius: 4px
}

.header-search:focus-within {
    background: #fff;
    border-color: #d4d5d9
}

.header-search svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: #696e79;
    stroke-linecap: round;
    stroke-width: 1.8
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #282c3f;
    font: inherit;
    font-size: 13px
}

.header-search input::placeholder {
    color: #696e79
}

.header-actions {
    gap: 22px
}

.header-action {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 4px;
    color: #282c3f;
    font-size: 11px;
    font-weight: 700;
    line-height: 1
}

.header-action svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7
}

.header-action:hover {
    color: #ff3f6c
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -10px;
    display: inline-flex;
    min-width: 17px;
    height: 17px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff3f6c;
    color: #fff;
    font-size: 9px
}

.menu-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px 0;
    background: #282c3f
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/**Coupon Banner*/
.offer-banner {
    padding: 14px 0;
    background: #fff;
}

.offer-banner-inner {
    min-height: 100px;
    border-radius: 18px;
    background: linear-gradient(
        90deg,
        #fff1d9,
        #ffe5c9
    );
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 35px;
}

.offer-content strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ff4f45;
}

.offer-content span {
    font-size: 20px;
}

.coupon {
    background: #fff;
    border-radius: 10px;
    padding: 12px 35px;
    text-align: center;
}

.coupon small {
    display: block;
    color: #777;
}

.coupon strong {
    font-size: 26px;
}

.offer-percent {
    font-size: 65px;
    font-weight: 900;
}

/**Shop By Category ****/
.category-tile {
    display: block;
    background: #fff;
    border: 2px solid #ffd29e;
    padding: 4px;
    height: 100%;
    transition: .2s ease;
}

.category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,.10);
}

.category-image {
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info {
    text-align: center;
    padding: 8px 3px 10px;
}

.category-info strong {
    display: block;
    font-size: 12px;
    color: #111;
}

.category-info span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}
@media(max-width:1180px) {
    .header-inner {
        grid-template-columns: auto minmax(300px, 1fr) auto
    }

    .header-search {
        display: none
    }

    .primary-nav>ul {
        gap: 17px
    }
}

@media(max-width:900px) {
    .header-inner {
        display: flex;
        gap: 14px
    }

    .menu-toggle {
        display: block
    }

    .brand {
        flex: 1
    }

    .primary-nav {
        display: none
    }

    .mobile-nav {
        padding: 8px 4% 18px;
        background: #fff
    }

    .mobile-nav>ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

    .mobile-nav>ul>li {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f1
    }

    .mobile-nav>ul>li>a {
        font-size: 13px;
        font-weight: 800
    }

    .mobile-nav .mega-menu-panel {
        display: block;
        position: static;
        transform: none;
        width: auto;
        padding: 12px 0 0;
        border: 0;
        box-shadow: none
    }

    .mobile-nav .mega-menu-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px
    }

    .mobile-nav .mega-menu-group {
        padding: 0;
        border: 0
    }

    .mobile-nav .mega-menu-heading {
        font-size: 12px;
        margin-bottom: 6px
    }

    .mobile-nav .mega-menu-links li {
        padding: 2px 0
    }

    .mobile-nav .mega-menu-links a {
        font-size: 12px
    }
}

@media(max-width:560px) {
    .header-inner {
        min-height: 64px;
        gap: 8px
    }

    .brand {
        overflow: hidden;
        text-overflow: ellipsis
    }

    .brand img {
        max-height: 42px
    }

    .header-actions {
        gap: 11px
    }

    .header-action {
        font-size: 10px
    }

    .header-action svg {
        width: 20px;
        height: 20px
    }

    .cart-count {
        right: -8px
    }

    .mobile-nav .mega-menu-columns {
        grid-template-columns: 1fr
    }
}