    nav a {
        position: relative;
        display: inline-block;
    }

    nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 2px;
        background-color: #67391b;
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    #navHoverLayout {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f9f4f1;
        border-top: 1px solid #d5c2b2;
        z-index: 40;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #navHoverLayout.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    nav {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: #f4e1d4;
        transition: all 0.4s ease;
    }

    .sticky-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
    }

    .sticky-nav.show {
        transform: translateY(0);
    }

    nav.shrink {
        min-height: 60px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    nav.shrink img {
        transform: scale(0.8);
        transition: transform 0.4s ease;
    }

    :root {
        --primary-font: 'Metropolis', sans-serif;
    }

    .addToCartBtn {
        background-color: var(--cart-btn-color);
        border-color: var(--cart-btn-color);
        color: #fff;
    }

    .addToCartBtn:hover {
        background-color: var(--cart-btn-hover-color);
        border-color: var(--cart-btn-hover-color);
    }

    nav {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: #f4e1d4;
        z-index: 999;
        transition: all 0.4s ease;
    }

    .sticky-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        transform: translateY(-100%);
        animation: slideDown 0.4s ease forwards;
    }

    @keyframes slideDown {
        to {
            transform: translateY(0);
        }
    }

    body.has-sticky-nav {
        padding-top: 80px;
    }

    nav {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: #f4e1d4;
        z-index: 999;
        transition: all 0.4s ease;
    }

    .sticky-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        transform: translateY(-100%);
        animation: slideDown 0.4s ease forwards;
    }

    @keyframes slideDown {
        to {
            transform: translateY(0);
        }
    }

    body.has-sticky-nav {
        padding-top: 80px;
    }
header.sticky {
  position: sticky;
  top: 0;
  z-index: 9999 !important;
}

body, html {
  overflow-x: visible !important;
}
