/* ============================================================ */
/* BASE STYLES */
/* ============================================================ */
body {
    background-color: #fff8f3;
    color: #1a2421;
    font-family: 'EB Garamond', serif;
    -webkit-font-smoothing: antialiased;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================================ */
/* PRIMARY NAVIGATION */
/* ============================================================ */
.primary-nav-link {
    position: relative;
    cursor: pointer;
    padding-bottom: 4px;
}
.primary-nav-link.active {
    font-weight: 600;
    color: #1a2421;
}
.primary-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a2421;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.primary-nav-link.active::after {
    width: 100%;
}
.primary-nav-link:hover::after {
    width: 100%;
}

/* ============================================================ */
/* SECONDARY NAVIGATION */
/* ============================================================ */
.secondary-nav-container {
    position: relative;
    overflow: hidden;
    display: none;
}
.secondary-nav-container.active {
    display: block;
}

.menu-category-link {
    position: relative;
    color: rgba(26, 36, 33, 0.6);
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    padding-bottom: 4px;
}
.menu-category-link.active {
    color: #1a2421;
    font-weight: 600;
}
.menu-category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a2421;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-category-link.active::after {
    width: 100%;
}
.menu-category-link:hover::after {
    width: 100%;
}
.menu-category-link:hover {
    color: #1a2421;
}

.secondary-nav-container ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 0.75rem 1rem;
    position: relative;
    justify-content: flex-start;
}
.secondary-nav-container ul li {
    flex-shrink: 0;
}

/* ============================================================ */
/* MENU ITEMS - HOVER EFFECT */
/* ============================================================ */
.menu-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.menu-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    border-color: #c18a5e !important;
}
.menu-item:hover .item-image {
    transform: scale(1.05);
}
.item-image {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================ */
/* SECTION TABS */
/* ============================================================ */
.section-tab {
    display: none;
}
.section-tab.active {
    display: block;
}

/* ============================================================ */
/* LAYOUT FIXES */
/* ============================================================ */
@media (min-width: 1024px) {
    main {
        max-width: 768px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ============================================================ */
/* FOOTER */
/* ============================================================ */
.footer-logo-square {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.footer-logo-square:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}
.footer-logo-square img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-icon {
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}
.footer-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.review-btn {
    transition: all 0.3s ease;
}
.review-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}