header {
    max-width: 1920px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 68px;
    align-content: center;
    position: fixed;
    width: 100%;
    z-index: 2;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.navbar-logo {
    display: none;
}
.nav-links {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: clamp(1rem, 4vw, 5rem);
    max-width: 1600px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.nav-links li {
    position: relative;
    width: 175px;
}
.nav-links a, .wkd-list-item a, .shop-menu-heading, .wkd-list-item.department {
    color: #4f514b;
    font-family: var(--wkd-sys-typo-display-kanit-light-family);
    font-weight: 300;
    font-size: calc(14px + (18 - 14) * ((100vw - 771px) / (1600 - 771)));
    display: block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
}
.nav-links a, .wkd-list-item, .wkd-list-item a, .shop-menu-heading, .wkd-list-item.department {
    transition: color 0.3s, font-weight 0.3s;
}
.nav-links a:hover, .wkd-list-item:hover, .wkd-list-item a:hover {
    font-weight: 500;
    color: #8C5A32;
}
.nav-links a.appointment {
    background-color: #fd9c3e;
    color: #fff;
    border-radius: 25px;
    font-family: var(--wkd-sys-typo-display-kanit-light-family);
    font-size: calc(14px + (18 - 14) * ((100vw - 771px) / (1600 - 771)));
    font-weight: 400;
}
.wkd-button--filled {
    --wkd-comp-button-container-color: #fd9c3e!important;
}
.dropdown-menu {
    background-color: #fff;
    display: none;
    list-style-type: none;
    padding: 0;
    position: absolute;
    z-index: 1;
}
@media (min-width: 769px) {
    .dropdown-menu {
        min-width: 160px;
    }
}
.dropdown-menu li {
    width: 100%;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.logo {
    max-width: 58px;
    height: auto;
}
.nav-links .logo-container {
    display: flex;
    flex: 0 1 auto;
    justify-content: center;
}        
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -360px;
        width: 360px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.9);
        gap: 0;
        transition: right 0.3s ease;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    .navbar-logo {
        display: block;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 0;
    }
    .navbar-logo img {
        max-width: 54px;
        height: auto;
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }
    .shop-header__menu-icon {
        display: flex;
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
    }
    .wkd-icon--button {
        display: flex;
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }
    .nav-links li .appointment {
        background-color: #fd9c3e;
        color: #fff;
        border-radius: 30px;
        width: 100%;
        box-sizing: border-box;
        font-size: 18px; 
        padding: 10px 20px; 
        max-width: 235px;
        margin: 15px auto;
        text-align: center;
    }
    .nav-links li.dropdown .dropdown-menu {
        background-color: transparent;
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        position: relative;
        margin-top: 10px;
    }
    .nav-links li.dropdown .dropdown-menu li {
        padding: 10px 0;
        width: 100%;
    }
    .nav-links li.dropdown .dropdown-menu li a {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
    }
    .wkd-menu-surface {
        display: inline-block;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    .nav-links li.dropdown .wkd-menu {
        background-color: transparent;
        border-radius: unset;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        padding-left: 0;
        position: relative;
        margin-top: 10px;
    }
    
    .nav-links li.dropdown .wkd-menu li {
        padding: 10px 0;
        width: 100%;
        max-width: 172px;
    }    
    .nav-links li {
        box-sizing: border-box;
        padding: 10px 95px;
        width: 100%;
    }
    .nav-links li::before {
        content: "■";
        color: #8C5A32;
        font-size: 12px;
        padding-right: 10px;
        display: inline-block;
    }
    .nav-links li.dropdown .dropdown-menu li::before, .nav-links li:has(.appointment)::before, .nav-links li:has(.wkd-button)::before, .nav-links li:has(.logo)::before  {
        content: none;
    }
    .nav-links a, .wkd-list-item a, .shop-menu-heading {
        font-size: 18px;
        padding: 10px 20px;
        text-align: left;
        color: #4f514b;
        display: inline-block;
        line-height: 20px;
        width: 100%;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}
@media (min-width: 769px) {
    .shop-header__menu-icon {
        display: none;
    }
}
@media(min-width: 1920px) {
    .nav-links a, .nav-links a.appointment, .wkd-menu .wkd-list-item, .wkd-list-item.department {
        font-size: 18px;
      }
}
#shop-menu {
    background-color: #fff;
    border: none;
    border-bottom-right-radius: 36px;
    border-top-right-radius: 36px;
}
.wkd-drawer--modal {
    top: 0;
}
.shop-menu-list {
    padding-left: 8px;
    padding-right: 8px;
}
.wkd-drawer .wkd-list-item {
    align-items: center;
}
.shop-menu-list-divider {
    background-color: var(--wkd-sys-color-outline);
    height: 1px;
    margin-bottom: 16px;
    margin-top: 16px;
    width: 100%;
    list-style: none;
}
.wkd-list-item__secondary {
    font-size: 14px!important;
    margin: 4px 30px!important;
}
.wkd-list-item__secondary::before {
    content: "■";
    color: #8C5A32;
    font-size: 12px;
    display: inline-block;
    line-height: 42px;
  }
.wkd-icon-button svg {
    height: 30px!important;
    width: 30px!important;
}
.wkd-drawer .wkd-list-item .wkd-button__label {
    display: flex!important;
    justify-content: center;
    margin: 0!important;
  }
.wkd-drawer__header {
    flex-shrink: 0;
    box-sizing: border-box;
    min-height: 34px;
    padding: 16px 20px 0 24px;
}
