/*=================================
            GLOBAL CSS
=================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


/*=================================
          TOP BANNER
=================================*/

.top-banner {

    width: 100%;

    background: #F5F3EF;

    border-bottom: 1px solid #DDD;

    overflow: hidden;

    padding: 3px 20px;
}


.banner-track {

    display: flex;

    width: max-content;

    animation: marquee 25s linear infinite;

}

.banner-content {

    display: flex;

    align-items: center;

}

.banner-content span {

    white-space: nowrap;

    padding-right: 70px;

    color: #3B2F2F;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.5px;

}

.top-banner:hover .banner-track {

    animation-play-state: paused;

}


/*=================================
            ANIMATION
=================================*/

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/*=================================
          RESPONSIVE
=================================*/

@media (max-width:768px) {

    .top-banner {

        padding: 10px 0;

    }

    .banner-content span {

        font-size: 12px;

        padding-right: 45px;

    }

    .banner-track {

        animation-duration: 18s;

    }

}

@media (max-width:480px) {

    .banner-content span {

        font-size: 11px;

        padding-right: 35px;

    }

    .banner-track {

        animation-duration: 15s;

    }

}

/*=================================
            HEADER
=================================*/

header {
    width: 100%;
    background: #000000;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 5px;
}

.navbar {
    max-width: 1300px;
    margin: auto;
    min-height: 80px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/*=================================
             LOGO
=================================*/


.logo img {
    width: 170px;
    height: 70px;
    display: block;
    object-fit: contain;
}

/*=================================
          NAVIGATION
=================================*/

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #C6B184;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color .3s ease;
}

/* Premium Underline Animation */

.nav-links a.active-page {

    color: #9A7B4F;

}

.nav-links a.active-page::after {

    width: 100%;

}



.nav-links a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: #9A7B4F;

    transform: translateX(-50%);

    transition: width .35s ease;

}

.nav-links a:hover {

    color: #9A7B4F;

}

.nav-links a:hover::after {

    width: 100%;

}

/*=================================
         DROPDOWN MENU
=================================*/

.dropdown-menu {

    position: absolute;

    top: 170%;

    left: 0;

    width: 190px;

    list-style: none;

    background: #fff;

    border-radius: 8px;

    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .3s ease;

    overflow: hidden;

    z-index: 999;

}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    color: #3B2F2F;
}

.dropdown-menu a:hover {
    background: #F5F3EF;
    color: #9A7B4F;
}

/* Desktop Dropdown */

@media (min-width:993px) {

    .dropdown:hover .dropdown-menu {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

}

/*=================================
           SEARCH BOX
=================================*/

.search-box input {

    width: 220px;

    height: 42px;

    border: 1px solid #ddd;

    border-radius: 30px;

    outline: none;

    padding: 0 18px;

    font-size: 14px;

    font-family: inherit;

    transition: .3s;

}

.search-box input:focus {

    border-color: #9A7B4F;

}

/*=================================
          HAMBURGER
=================================*/

.hamburger {

    display: none;

    font-size: 32px;

    cursor: pointer;

    color: #C6B184;

    user-select: none;

}

/*=================================
         TABLET & MOBILE
=================================*/

@media(max-width:992px) {

    .navbar {

        padding: 18px 20px;

    }

    .logo img {

        width: 140px;

    }

    .search-box {

        display: none;

    }

    .hamburger {

        display: block;
        font-size: 32px;
        z-index: 1002;

    }

    .nav-links {

        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 90px 25px 30px;
        list-style: none;
        box-shadow: 5px 0 25px rgba(0, 0, 0, .12);
        transition: left .35s ease;
        z-index: 1001;
    }

    .nav-links.active {

        left: 0;

    }

    .nav-links li {

        width: 100%;

        text-align: left;

    }

    .nav-links li a {

        display: block;
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid #ededed;
        color: #000000;
    }

    /* Mobile par dropdown OFF */

    .dropdown-menu {

        display: none !important;

    }

}

/*=================================
            MOBILE
=================================*/

@media(max-width:576px) {

    .navbar {

        padding: 15px;

    }

    .logo img {

        width: 120px;

    }

    .hamburger {

        font-size: 30px;

    }

}

/*=======================================================
                    PREMIUM FOOTER
=======================================================*/

.site-footer {
    background: #000001;
    padding: 80px 20px 0;
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    width: 150px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #b7b0a6;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #C6B184;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-socials a:hover {
    background: #9A7B4F;
    border-color: #9A7B4F;
    color: #fff;
}

.footer-column h3 {
    color: #fff;
    font-size: 16px;
    font-family: Georgia, serif;
    margin-bottom: 22px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #b7b0a6;
    text-decoration: none;
    font-size: 13px;
    transition: .3s;
}

.footer-column ul li a:hover {
    color: #9A7B4F;
}

.footer-contact li {
    color: #b7b0a6;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: #8a8a8a;
    font-size: 12px;
}

/*=======================================================
             RESPONSIVE - TABLET (max 992px)
=======================================================*/

@media(max-width:992px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

}

/*=======================================================
             RESPONSIVE - MOBILE (max 768px)
=======================================================*/

@media(max-width:768px) {

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}





/*=======================================================
        CART SYSTEM (ADDED — shopping cart feature)
=======================================================*/

/* ---------- Cart Icon (header) ---------- */

.cart-icon {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: #C6B184;

    cursor: pointer;

    transition: color .3s ease, transform .2s ease;

}

.cart-icon svg {

    width: 24px;
    height: 24px;

}

.cart-icon:hover {

    color: #9A7B4F;

}

.cart-icon-pulse {

    transform: scale(1.15);

}

.cart-count {

    position: absolute;

    top: -4px;
    right: -8px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    border-radius: 50%;

    background: #9A7B4F;
    color: #fff;

    font-size: 10px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

    transition: transform .2s ease, opacity .2s ease;

}

.cart-count-hidden {

    display: none;

}

/* Desktop order: LOGO -> NAV -> CART -> SEARCH */

.navbar .cart-icon {

    order: 2;
    position: relative;
    left: 50px;

}

.navbar .search-box {

    order: 3;

}

/* ---------- Cart Overlay ---------- */

.cart-overlay {

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 1, .55);

    opacity: 0;
    visibility: hidden;

    transition: opacity .35s ease, visibility .35s ease;

    z-index: 1998;

}

.cart-overlay.active {

    opacity: 1;
    visibility: visible;

}

/* ---------- Cart Drawer ---------- */

.cart-drawer {

    position: fixed;
    top: 0;
    right: -440px;

    width: 420px;
    max-width: 90vw;

    height: 100vh;
    height: 100dvh;

    background: #ffffff;

    box-shadow: -15px 0 45px rgba(0, 0, 1, .18);

    z-index: 1999;

    display: flex;
    flex-direction: column;

    transition: right .4s cubic-bezier(.4, 0, .2, 1);

}

.cart-drawer.active {

    right: 0;

}

.cart-drawer-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 26px;

    border-bottom: 1px solid #eee;

}

.cart-drawer-top h3 {

    font-family: Georgia, serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: #000001;

}

.cart-drawer-close {

    background: none;
    border: none;

    font-size: 26px;
    line-height: 1;

    color: #777;

    cursor: pointer;

    transition: color .3s ease;

}

.cart-drawer-close:hover {

    color: #9A7B4F;

}

.cart-drawer-body {

    flex: 1;

    overflow-y: auto;

    padding: 6px 26px;

}

/* ---------- Cart Item ---------- */

.cart-item {

    display: flex;
    gap: 14px;

    padding: 18px 0;

    border-bottom: 1px solid #f0ede8;

}

.cart-item-img {

    width: 72px;
    height: 72px;

    flex-shrink: 0;

    border-radius: 10px;

    overflow: hidden;

    background: #F5F3EF;

}

.cart-item-img img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.cart-item-details {

    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;

}

.cart-item-name {

    font-family: Georgia, serif;
    font-size: 14px;
    color: #000001;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.cart-item-price {

    font-size: 12px;
    font-weight: 600;
    color: #9A7B4F;

}

.cart-item-qty {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 2px;

}

.cart-qty-btn {

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d6d0c7;
    border-radius: 6px;

    background: #fff;
    color: #333;

    font-size: 14px;

    cursor: pointer;

    transition: .3s ease;

}

.cart-qty-btn:hover {

    background: #9A7B4F;
    color: #fff;
    border-color: #9A7B4F;

}

.cart-item-qty span {

    min-width: 16px;

    text-align: center;

    font-size: 13px;

}

.cart-item-remove {

    align-self: flex-start;
    margin-top: 2px;

    background: none;
    border: none;

    color: #999;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .8px;

    text-decoration: underline;

    cursor: pointer;

    transition: color .3s ease;

}

.cart-item-remove:hover {

    color: #9A7B4F;

}

/* ---------- Empty State ---------- */

.cart-empty {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;

    padding: 60px 20px;

    text-align: center;

}

.cart-empty p {

    margin-bottom: 20px;

    color: #777;
    font-size: 14px;

}

.cart-continue-btn {

    display: inline-block;

    padding: 13px 28px;

    border: 1px solid #9A7B4F;
    border-radius: 30px;

    color: #9A7B4F;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-decoration: none;

    transition: .3s ease;

}

.cart-continue-btn:hover {

    background: #9A7B4F;
    color: #fff;

}

/* ---------- Cart Footer ---------- */

.cart-drawer-footer {

    padding: 20px 26px 26px;

    border-top: 1px solid #eee;

}

.cart-subtotal-row {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;

}

.cart-subtotal-row span:first-child {

    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #666;

}

.cart-subtotal-row span:last-child {

    font-family: Georgia, serif;
    font-size: 20px;

    color: #000001;

}

.cart-checkout-btn {

    display: block;

    width: 100%;

    padding: 16px;

    border-radius: 6px;

    background: #9A7B4F;
    color: #fff;

    text-align: center;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;

    transition: background .3s ease;

}

.cart-checkout-btn:hover {

    background: #000001;

}

/* ---------- Lock page scroll while drawer is open ---------- */

body.cart-lock {

    overflow: hidden;

}

/*=======================================================
          CART SYSTEM — RESPONSIVE
=======================================================*/

@media(max-width:992px) {

    .navbar .hamburger {

        order: 4;

        margin-left: auto;

    }

    .navbar .cart-icon {

        order: 5;

        margin-left: 14px;

        position: relative;
        left: 8px;

    }

}


@media(max-width:576px) {

    .cart-drawer {

        width: 100%;
        max-width: 100%;

        right: -100%;

    }

    .cart-drawer-top {

        padding: 18px 20px;

    }

    .cart-drawer-body {

        padding: 4px 20px;

    }

    .cart-drawer-footer {

        padding: 16px 20px 22px;

    }

    .cart-item-img {

        width: 66px;
        height: 66px;

    }

    .cart-qty-btn {

        width: 32px;
        height: 32px;

        font-size: 16px;

    }

    .cart-icon {

        width: 36px;
        height: 36px;

    }

    .cart-icon svg {

        width: 22px;
        height: 22px;

    }

}

/* =========================================
   SMALL LAPTOP / TABLET
   1030px and below
========================================= */

@media (max-width:1030px) {

    /* Hide desktop navigation */
    .navbar {
        position: relative;
    }


    /* Hide desktop search */
    .navbar .search-box {
        display: none;
    }

    /* Hamburger */
    .navbar .hamburger {
        display: flex;
        order: unset;
        margin-left: auto;
    }

    /* Cart */
    .navbar .cart-icon {
        position:absolute;
        right:55px;
        left:auto;
        margin:0;
        order:unset;
    }

}

/*=================================
   SEARCH RESULTS (Search Feature)
   New rules only - existing search
   bar styles above are untouched.
=================================*/

.search-box {

    position: relative;

}

.search-results {

    position: absolute;
    top: 48px;
    left: 0;
    width: 260px;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 6px;
    z-index: 999;

}

.search-result-item {

    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;

}

.search-result-item:hover {

    background: #F5F3EF;

}

.search-result-item img {

    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;

}

.search-result-name {

    font-size: 13px;
    flex: 1;

}

.search-result-price {

    font-size: 12px;
    color: #9A7B4F;

}

.search-results .no-results {

    padding: 10px;
    font-size: 13px;
    color: #777;
    text-align: center;

}

/*=======================================================
   HEADER REDESIGN (NEW)
   - Desktop search bar -> search icon that opens the
     existing search box as a LEFT drawer
   - Desktop nav genuinely centered (independent of the
     logo/actions width, not flex-spacing based)
   - Mobile/Tablet: hamburger + search icon on the LEFT,
     logo perfectly centered to the viewport, cart on the
     RIGHT — logo position never shifts with icon widths
   These rules are appended after all existing CSS so they
   take priority inside the header only. Nothing outside
   the header is targeted.
=======================================================*/

/* ---------- Search trigger icon (new) ---------- */

.search-icon-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #C6B184;
    cursor: pointer;
    transition: color .3s ease;
    z-index: 5;
}

.search-icon-btn svg {
    width: 21px;
    height: 21px;
}

.search-icon-btn:hover {
    color: #9A7B4F;
}

.search-icon-btn:focus-visible,
.search-drawer-close:focus-visible {
    outline: 2px solid #9A7B4F;
    outline-offset: 2px;
}

/* ---------- Search drawer (re-styles the existing .search-box) ---------- */

/* ---------- SEARCH DRAWER ---------- */

header .navbar .search-box {
    display: block;
    position: fixed;
    top: 0;
    left: 0;

    width: 360px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;

    background: #ffffff;
    box-shadow: 15px 0 45px rgba(0, 0, 1, .18);

    padding: 90px 22px 24px;

    z-index: 2001;

    /* HIDDEN BY DEFAULT */
    transform: translateX(-110%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        transform .4s ease,
        opacity .3s ease,
        visibility .4s ease;

    overflow-y: auto;
}

/* ONLY SHOW AFTER SEARCH ICON CLICK */
header .navbar .search-box.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

header .navbar .search-box input[type="search"] {
    width: 100%;
    height: 46px;
}

header .navbar .search-box .search-results {
    position: static;
    width: 100%;
    top: auto;
    left: auto;
    margin-top: 14px;
    box-shadow: none;
    border: none;
    padding: 0;
}

.search-drawer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: none;
    background: none;
    font-size: 26px;
    line-height: 1;
    color: #3B2F2F;
    cursor: pointer;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 1, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- Desktop (min-width: 1031px) ---------- */

@media (min-width: 1031px) {

    header .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .navbar .logo {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    header .navbar .nav-links {
        position: static;
        flex-direction: row;
    }

    header .navbar .hamburger {
        display: none;
    }

    .search-icon-btn {
        right: 60px;
    }

    header .navbar .cart-icon {
        position: absolute;
        right: 0;
        left: auto;
        margin: 0;
        order: 0;
    }
}

/* ---------- Mobile + Tablet (max-width: 1030px) ---------- */

@media (max-width: 1030px) {

    header .navbar .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    header .navbar .logo img {
        display: block;
    }

    header .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        max-width: 82vw;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 90px 25px 30px;
        list-style: none;
        box-shadow: 5px 0 25px rgba(0, 0, 0, .12);
        transition: left .35s ease;
        z-index: 1001;
    }

    header .navbar .nav-links.active {
        left: 0;
    }

    header .navbar .nav-links li {
        width: 100%;
        text-align: left;
    }

    header .navbar .nav-links li a {
        display: block;
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid #ededed;
        color: #000000;
    }

    header .navbar .nav-links .dropdown-menu {
        display: none;
    }

    header .navbar .hamburger {
        display: flex;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin: 0;
    }

    .search-icon-btn {
        left: 63px;
    }

    header .navbar .cart-icon {
        position: absolute;
        right: 15px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
}

@media (max-width: 576px) {

    header .navbar .logo img {
        width: 115px;
    }

    .search-icon-btn {
        left: 56px;
        width: 36px;
        height: 36px;
    }

    header .navbar .hamburger {
        left: 12px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    header .navbar .cart-icon {
        right: 12px;
    }

    header .navbar .search-box {
        width: 88vw;
        padding: 80px 18px 20px;
    }
}

@media (max-width: 360px) {

    header .navbar .logo img {
        width: 96px;
    }
}

/*=======================================================
   MOBILE CATEGORIES DROPDOWN (NEW)
   Makes the CATEGORIES nav item expandable as an
   accordion inside the mobile hamburger menu, reusing
   the existing .dropdown / .dropdown-menu markup and
   colors. Desktop hover dropdown is untouched.
=======================================================*/

/* Toggle button hidden on desktop (hover dropdown handles it there) */

.dropdown-toggle {
    display: none;
}

@media (max-width: 1030px) {

    header .navbar .nav-links li.dropdown {
        position: relative;
    }

    header .navbar .nav-links li.dropdown > a {
        display: inline-block;
        width: auto;
        padding-right: 0;
    }

    /* Toggle arrow button */

    header .navbar .nav-links .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 6px;
        right: 0;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: #000000;
    }

    header .navbar .nav-links .dropdown-arrow {
        display: inline-block;
        font-size: 18px;
        line-height: 1;
        color: #9A7B4F;
        transition: transform .3s ease;
    }

    header .navbar .nav-links li.dropdown.mobile-open .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Accordion panel (overrides the desktop hover-dropdown positioning) */

    header .navbar .nav-links .dropdown-menu {
        display: block !important;
        position: static;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0;
        list-style: none;
        background: #F5F3EF;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    header .navbar .nav-links li.dropdown.mobile-open .dropdown-menu {
        max-height: 260px;
    }

    header .navbar .nav-links .dropdown-menu li {
        width: 100%;
    }

    header .navbar .nav-links .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 14px 0 14px 18px;
        border-bottom: 1px solid #ededed;
        color: #3B2F2F;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    header .navbar .nav-links .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    header .navbar .nav-links .dropdown-menu a:hover {
        background: #ffffff;
        color: #9A7B4F;
    }
}
