@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;

    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;

    background: #ffffff;

    color: #111111;

    overflow-x: hidden;
}
/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;
    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;

    padding: 0 40px;
    box-sizing: border-box;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    z-index: 1000;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 120px;
    height: 95px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   DESKTOP RIGHT SIDE
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    margin-left: 30px;

    gap: 35px;

    flex: 1;
    min-width: 0;
}


/* =========================================================
   DESKTOP NAV LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    /*
       Use the complete available width
    */
    flex: 1;
    min-width: 0;

    /*
       Distribute navigation items evenly
    */
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   DESKTOP LINKS
========================================================= */

.nav-links > a,
.products > a {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #222222;

    text-decoration: none;

    /*
       Slightly larger font gives the navigation
       a more balanced visual weight.
    */
    font-size: 16px;

    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.nav-links > a:hover,
.products > a:hover {
    color: #777777;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    position: relative;

    flex-shrink: 0;
}

.products > a {
    gap: 8px;
}


/* =========================================================
   PRODUCT ARROW
========================================================= */

.dropdown-arrow {
    width: 15px;
    height: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.imgss {
    width: 15px;
    height: 15px;

    display: block;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.products:hover .imgss {
    transform: rotate(180deg);
}


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%);

    width: 215px;

    padding: 8px 0;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1100;
}


/* =========================================================
   DROPDOWN BRIDGE
========================================================= */

.products::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 12px;
}


/* =========================================================
   SHOW DROPDOWN
========================================================= */

.products:hover .dropdown {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   CATEGORY
========================================================= */

.category {
    position: relative;
}

.category > a {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;

    box-sizing: border-box;

    color: #222222;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: background 0.2s ease;
}

.category > a:hover {
    background: #f5f5f5;
}


/* =========================================================
   SUBCATEGORY ARROW
========================================================= */

.subcategory-arrow {
    font-size: 21px;

    line-height: 1;

    font-weight: 400;

    transition: transform 0.2s ease;
}

.category:hover .subcategory-arrow {
    transform: translateX(3px);
}


/* =========================================================
   SUBCATEGORY DROPDOWN
========================================================= */

.sub-dropdown {
    position: absolute;

    top: 0;

    left: calc(100% + 5px);

    width: 215px;

    padding: 8px 0;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1200;
}


/* =========================================================
   SUBCATEGORY BRIDGE
========================================================= */

.category::after {
    content: "";

    position: absolute;

    top: 0;
    left: 100%;

    width: 5px;
    height: 100%;
}


/* =========================================================
   SHOW SUBCATEGORY
========================================================= */

.category:hover .sub-dropdown {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   SUBCATEGORY LINKS
========================================================= */

.sub-dropdown a {
    display: block;

    width: 100%;

    padding: 11px 18px;

    box-sizing: border-box;

    color: #222222;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sub-dropdown a:hover {
    background: #f5f5f5;

    color: #111111;
}


/* =========================================================
   EMAIL BUTTON
========================================================= */

.email-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 16px 30px;

    background: #e63946;

    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.email-btn:hover {
    background: #333333;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    position: static;
}


/* =========================================================
   MOBILE HAMBURGER
========================================================= */

.mobile-menu-button {
    width: 45px;
    height: 45px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;

    list-style: none;
}

.mobile-menu-button::-webkit-details-marker {
    display: none;
}

.mobile-menu-button span {
    display: block;

    width: 25px;
    height: 2px;

    background: #222222;

    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   HAMBURGER → X
========================================================= */

.mobile-menu[open]
.mobile-menu-button
span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open]
.mobile-menu-button
span:nth-child(2) {

    opacity: 0;
}

.mobile-menu[open]
.mobile-menu-button
span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE PANEL
========================================================= */

.mobile-menu-panel {
    position: fixed;

    top: 0;
    left: 0;

    width: 50vw;
    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    overflow-y: auto;

    box-shadow: 8px 0 35px rgba(0, 0, 0, 0.15);

    animation: mobileSlideIn 0.3s ease;
}


/* =========================================================
   SLIDE ANIMATION
========================================================= */

@keyframes mobileSlideIn {

    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile-menu-header {
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    box-sizing: border-box;

    border-bottom: 1px solid #eeeeee;
}

.mobile-menu-title {
    color: #222222;

    font-size: 20px;

    font-weight: 800;
}


/*
   This is only visual.
   The hamburger itself is the close control.
*/

.mobile-menu-close {
    font-size: 12px;

    font-weight: 600;

    color: #999999;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    padding: 15px 25px 40px;

    box-sizing: border-box;
}


/* =========================================================
   MAIN MOBILE LINKS
========================================================= */

.mobile-nav > a,
.mobile-nav > details > summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    padding: 15px 5px;

    box-sizing: border-box;

    color: #222222;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    border-bottom: 1px solid #eeeeee;

    cursor: pointer;

    list-style: none;
}

.mobile-nav > details > summary::-webkit-details-marker {
    display: none;
}

.mobile-nav > a:hover,
.mobile-nav > details > summary:hover {
    color: #777777;
}


/* =========================================================
   MOBILE PRODUCTS
========================================================= */

.mobile-products {
    width: 100%;
}


/* =========================================================
   MOBILE ARROWS
========================================================= */

.mobile-arrow {
    display: inline-block;

    font-size: 24px;

    line-height: 1;

    font-weight: 400;

    transition: transform 0.25s ease;
}

.mobile-products[open]
> summary
.mobile-arrow,

.mobile-product-list details[open]
> summary
.mobile-arrow {

    transform: rotate(90deg);
}


/* =========================================================
   MOBILE PRODUCT LIST
========================================================= */

.mobile-product-list {
    padding: 5px 0 5px 15px;

    box-sizing: border-box;
}


/* =========================================================
   MOBILE PRODUCT CATEGORIES
========================================================= */

.mobile-product-list > a,
.mobile-product-list > details > summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    padding: 12px 5px;

    box-sizing: border-box;

    color: #444444;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    list-style: none;
}

.mobile-product-list > details > summary::-webkit-details-marker {
    display: none;
}

.mobile-product-list > a:hover,
.mobile-product-list > details > summary:hover {
    color: #111111;
}


/* =========================================================
   MOBILE SUB LINKS
========================================================= */

.mobile-sub-links {
    padding: 3px 0 5px 18px;

    margin-left: 5px;

    border-left: 1px solid #eeeeee;

    box-sizing: border-box;
}

.mobile-sub-links a {
    display: block;

    padding: 9px 10px;

    color: #666666;

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    border-radius: 4px;
}

.mobile-sub-links a:hover {
    background: #f5f5f5;

    color: #222222;
}


/* =========================================================
   MOBILE EMAIL
========================================================= */

.mobile-email {

    display: flex !important;

    align-items: center;

    justify-content: center !important;

    margin-top: 25px;

    padding: 14px 20px !important;

    background: #e63946;

    color: #ffffff !important;

    border: none !important;

    border-radius: 30px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.mobile-email:hover {
    background: #333333;

    color: #ffffff !important;

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
   1200px
========================================================= */

@media (max-width: 1200px) {

    .navbar {
        padding: 0 25px;
    }

    .nav-right {
        margin-left: 20px;

        gap: 25px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links > a,
    .products > a {
        font-size: 14px;
    }

    .email-btn {
        padding: 14px 22px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL TABLET
   1050px
========================================================= */

@media (max-width: 1050px) {

    .navbar {
        padding: 0 20px;
    }

    .logo {
        width: 105px;

        height: 85px;
    }

    .nav-right {
        margin-left: 15px;

        gap: 15px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links > a,
    .products > a {
        font-size: 12px;
    }

    .email-btn {
        padding: 11px 17px;

        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
   768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    .navbar {

        width: 100%;

        height: 80px;

        min-height: 80px;

        padding: 0 20px;

        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    /* Logo */

    .logo {
        width: 100px;

        height: 70px;
    }


    /* Hide desktop */

    .nav-right {
        display: none;
    }


    /* Show mobile */

    .mobile-menu {
        display: block;
    }

}


/* =========================================================
   MOBILE PANEL - 600px
========================================================= */

@media (max-width: 600px) {

    .mobile-menu-panel {
        width: 75vw;
    }

}


/* =========================================================
   SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    .navbar {

        height: 75px;

        min-height: 75px;

        padding: 0 15px;
    }


    .logo {

        width: 90px;

        height: 65px;
    }


    .mobile-menu-panel {

        width: 85vw;
    }


    .mobile-nav {

        padding-left: 20px;

        padding-right: 20px;
    }

}


/* =========================================================
   VERY SMALL MOBILE - 360px
========================================================= */

@media (max-width: 360px) {

    .mobile-menu-panel {

        width: 90vw;
    }


    .mobile-menu-header {

        padding: 0 20px;
    }


    .mobile-menu-title {

        font-size: 18px;
    }


    .mobile-nav {

        padding-left: 18px;

        padding-right: 18px;
    }

}