/* ===============================
   WCs Header 
   =============================== */
.wcs-header{
    padding: 20px 0;
}
.wcs-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wcs-header__logo-img {
    max-width: 170px;
}
.wcs-header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.wcs-header__menu-link {
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    &:hover {
        color: var(--action);
    }
}
.wcs-nav-icon{
    line-height: 1;
}
.wcs-header__toggle {
    display: none;
}
.wcs-header__toggle-icon{
    cursor: pointer;
}
/* ===============================
   Responsive Header
   =============================== */

/* Desktop */
@media (min-width: 1200px) {
    .wcs-header__nav {
        display: block;
    }

    .wcs-header__toggle {
        display: none;
    }
}

/* Tablet & Mobile */
@media (max-width: 1199px) {
    .wcs-header__nav {
        display: none;
    }

    .wcs-header__toggle {
        display: block;
    }
}

/* Offcanvas base */
.wcs-offcanvas-area {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 40px 20px;
    transition: right 0.3s ease;
    z-index: 9999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Active state */
.wcs-offcanvas-area.is-open {
    right: 0;
}

#close_offcanvas img {
    filter: brightness(0);
    cursor: pointer;
}

#close_offcanvas {
    position: absolute;
    right: 30px;
    top: 12px;
}

.wcs-offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wcs-offcanvas-nav li {
    background-color: #1e1e1e;
    padding: 10px 15px;
}

.wcs-offcanvas-nav li a {
    color: #fff;
}