/* =========================================================
   RYNA WOMAN - HEADER
========================================================= */

.site-header,
.site-header *,
.site-header *::before,
.site-header *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

/* =========================================================
   HEADER MAIN
========================================================= */

.header-main {
    width: 100%;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 48px;

    background: #fff5f7;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    width: 72px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;

    text-decoration: none;
    overflow: hidden;
}

.site-logo-image {
    width: 55px;
    max-width: 55px;
    max-height: 60px;
    height: auto;

    display: block;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    height: 100%;

    transform: translateY(20px);
}


/* =========================================================
   SEARCH
========================================================= */

.header-search {
    width: 155px;
    height: 34px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #999;

    margin: 0;
    padding: 0;
}

.search-icon {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #444;

    font-size: 15px;
    line-height: 1;
}

.search-icon i {
    font-size: 15px;
    line-height: 1;
}

.header-search input {
    width: 100%;
    height: 100%;

    border: none;
    outline: none;

    background: transparent;

    padding: 0 0 0 8px;

    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;

    color: #222;
}

.header-search input::placeholder {
    color: #888;
    opacity: 1;
}


/* =========================================================
   WISHLIST
========================================================= */

.header-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #111;

    text-decoration: none;

    line-height: 1;
}

.header-icon i {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;
}


/* =========================================================
   CART
========================================================= */

.header-cart {
    width: 25px;
    height: 25px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #111;

    text-decoration: none;

    line-height: 1;
}

.header-cart i {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
    line-height: 1;
}


/* =========================================================
   CART COUNT
========================================================= */

.cart-count {
    position: absolute;

    top: -7px;
    right: -8px;

    min-width: 16px;
    height: 16px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d00000;
    color: #fff;

    font-size: 9px;
    font-weight: 600;

    line-height: 1;
}


/* =========================================================
   SIGN IN
========================================================= */

.header-signin {
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #222;

    text-decoration: none;

    font-size: 13px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;
}

.header-signin:hover {
    color: #000;
}


/* =========================================================
   CATEGORY NAVIGATION
========================================================= */

.header-nav {
    width: 100%;
    height: 40px;

    display: flex;
    align-items: center;

    gap: 30px;

    padding: 0 48px;

    background: #fff5f7;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
}

.header-nav::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-link {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 40px;

    color: #222;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.nav-link:hover {
    color: #000;
    opacity: 0.7;
}


/* =========================================================
   SEARCH / FORM RESET
========================================================= */

.header-search button,
.header-search input,
.header-search select {
    font-family: inherit;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

    .header-main {
        height: 78px;

        padding-left: 52px;
        padding-right: 52px;
    }

    .header-nav {
        padding-left: 52px;
        padding-right: 52px;

        gap: 32px;
    }

    .header-actions {
        gap: 26px;
    }

    .header-search {
        width: 160px;
    }

    .nav-link {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .header-main {
        padding-left: 30px;
        padding-right: 30px;
    }

    .header-nav {
        padding-left: 30px;
        padding-right: 30px;

        gap: 24px;
    }

    .header-actions {
        gap: 19px;
    }

    .header-search {
        width: 135px;
    }

    .nav-link {
        font-size: 12px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .header-main {
        height: 66px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .site-logo {
        width: 60px;
        height: 56px;
    }

    .site-logo-image {
        width: 47px;
        max-width: 47px;
        max-height: 52px;
    }

    .header-actions {
        gap: 15px;
    }

    .header-search {
        width: 115px;
        height: 31px;
    }

    .header-search input {
        font-size: 12px;
    }

    .search-icon,
    .search-icon i {
        font-size: 13px;
    }

    .header-nav {
        height: 36px;

        padding-left: 18px;
        padding-right: 18px;

        gap: 19px;
    }

    .nav-link {
        height: 36px;
        font-size: 11px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-main {
        height: 60px;

        padding-left: 12px;
        padding-right: 12px;
    }

    .site-logo {
        width: 50px;
        height: 50px;
    }

    .site-logo-image {
        width: 40px;
        max-width: 40px;
        max-height: 46px;
    }

    .header-actions {
        gap: 11px;
    }

    .header-search {
        width: 92px;
        height: 28px;
    }

    .search-icon,
    .search-icon i {
        font-size: 12px;
    }

    .header-search input {
        font-size: 10px;
        padding-left: 5px;
    }

    .header-icon,
    .header-cart {
        width: 21px;
        height: 21px;
    }

    .header-icon i,
    .header-cart i {
        font-size: 18px;
    }

    .header-signin {
        font-size: 11px;
        height: 22px;
    }

    .cart-count {
        min-width: 13px;
        height: 13px;

        top: -6px;
        right: -6px;

        padding: 0 3px;

        font-size: 7px;
    }

    .header-nav {
        height: 33px;

        padding-left: 12px;
        padding-right: 12px;

        gap: 15px;
    }

    .nav-link {
        height: 33px;
        font-size: 10px;
    }

}