@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=Outfit:wght@100..900&display=swap');
:root {
    --primary-color: #7b4f20;
    --text-color: #83818c;
    --hover-opacity: 0.8;
    --font-family: "Outfit", sans-serif, "Kantumruy Pro", sans-serif;
}

body {
    font-family: var(--font-family);
    font-weight: 600;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #fff6f3 0, #fffefb 100%)
}

div.scrollmenu {
    overflow: auto;
    white-space: nowrap;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    z-index: 99;
}

div.scrollmenu a {
    display: inline-block;
    color: var(--primary-color);
    text-align: center;
    padding: 14px 0;
    text-decoration: none;
    font-size: 20px;
    opacity: var(--hover-opacity);
    font-weight: 600;
    transition: opacity 0.3s ease, color 0.3s ease;
}

div.scrollmenu a:hover,
div.scrollmenu a:focus {
    opacity: 1;
    color: var(--primary-color);
}

div.scrollmenu::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge, and Firefox */
.div.scrollmenu {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

#nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

#nav li {
    width: 20%;
}

#nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
    font-size: 15px;
    position: relative;
    color: var(--text-color);
    font-family: var(--font-family);
    padding: 10px 20px;
    font-weight: 500;
    transition: color 0.3s ease;

}

#nav li a:before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
}

#nav li a:not(.active):hover:before,
#nav li a:not(.active):focus:before {
    opacity: 1;
    bottom: 0;
}

#nav li a:not(.active):hover,
#nav li a:not(.active):focus {
    color: var(--primary-color);
}

.nav-indicator {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: var(--primary-color);
    transition: left 0.4s ease, width 0.4s ease;
}

div#tops {
    padding-top: 70px;
}

@media only screen and (max-width: 600px) {
    div.scrollmenu a {
        padding: 7px 0;
        font-size: 11px;
    }

    div#tops {
        padding-top: 30px;
    }
}

/* Optional: Add touch-friendly support */
div.scrollmenu {
    -webkit-overflow-scrolling: touch;
}
 .item-info {
     padding: 15px 15px;
     background: #ffffff;
}
 .item-image{
     border-radius: 20px 20px 0 0;
 }
