@font-face {
    font-family: 'FKScreamer-Regular';
    src: url('../font/FKScreamer-Regular.ttf') format('truetype');
    font-weight: normal;
}

/* Universal box-sizing for consistent sizing */
* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'FKScreamer-Medium';
    src: url('../font/FKScreamer-Medium.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'FKScreamer-Bold';
    src: url('../font/FKScreamer-Bold.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'FKScreamer-Black';
    src: url('../font/FKScreamer-Black.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'NeurialGrotesk-Regular';
    src: url('../font/NeurialGrotesk-Regular.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'NeurialGrotesk-Medium';
    src: url('../font/NeurialGrotesk-Medium.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'NeurialGrotesk-Bold';
    src: url('../font/NeurialGrotesk-Bold.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'NeurialGrotesk-ExtraBold';
    src: url('../font/NeurialGrotesk-ExtraBold.otf') format('opentype');
    font-weight: normal;
}

:root {
    --card-width: 350px;
    --bg-color: #230C00;
    --bg-rgb: 35, 12, 0;
    --text-color: #fff;
    --accent-color: #ff4d4d;
}



html {
    width: 100%;
    /* Let html grow with content -> Viewport handles scroll */
    height: auto;
    overflow-x: hidden;
    /* CRITICAL: visible lets the viewport handle scroll, removing 'html' scrollbar */
    overflow-y: visible;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    /* CRITICAL: No container, just flow */
    overflow: visible !important;
    width: 100%;
    height: auto !important;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    perspective: 1000px;
    position: relative;
    padding-top: 20vh;
    /* CRITICAL: Never create inner scroll - only window scrolls */
    overflow: visible;
    height: auto;
}

.card-stack {
    position: relative;
    width: 70vw;
    /* CRITICAL: Height set by JS, never overflow */
    overflow: visible;
}

/* Global Header Background Gradient - Conditional */
#global-header {
    background: transparent !important;
    transition: transform 0.4s ease, opacity 0.5s ease, background 0.5s ease !important;
    padding-bottom: 40px !important;
}

#global-header.has-bg {
    background: linear-gradient(to bottom,
            rgba(var(--bg-rgb), 0.95) 0%,
            rgba(var(--bg-rgb), 0.7) 40%,
            rgba(var(--bg-rgb), 0) 60%) !important;
}

/* Header Reviewer Avatar Sizes */
#global-header .header-right img {
    width: 65px !important;
    height: 65px !important;
    transition: transform 0.3s ease;
}

#global-header .header-right .header-reviewer-item:hover img {
    transform: scale(1.1);
}

/* Layer 1: JS/Parallax Domain */
.card-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    /* Dimensions applied via JS to avoid click-occlusion */
    /* CRITICAL: Never create scroll container */
    overflow: visible;
    height: auto;
}

/* Layer 2: CSS/State Domain */
.card {
    width: 100% !important;
    max-width: 100% !important;
    background-color: #222;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    color: white;
    will-change: transform;
    position: relative;
    container-type: inline-size;
    min-width: 0;
    overflow: hidden;
    font-family: 'NeurialGrotesk-Regular', sans-serif;
    /* Default body font size */
    font-size: clamp(0.85rem, 4cqw, 1.1rem);
    /* CRITICAL: Height auto, content-driven, no fixed height */
    height: auto;
    max-height: none;
}

/* Black overlay for dimmed state */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 99;
}

.card-wrapper.dimmed .card::after {
    opacity: 0.5;
    /* Light black layer */
}

/* Light up on hover even when dimmed */
.card-wrapper.dimmed:hover .card::after {
    opacity: 0;
}

.card.fly-down {
    transform: translateY(var(--dynamic-fly-offset, 110vh)) rotate(var(--fly-rotate, 0deg));
}

.card-wrapper.active .card {
    border-color: var(--accent-color);
}

/* Global Card Content Styles */

.card-content {
    flex-grow: 1;
    width: 100%;
    min-width: 0;
    /* CRITICAL: Content-driven height, no scroll */
    overflow: visible;
    height: auto;
}

.card-cover {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    display: block;
}

.card h1,
.card h2 {
    font-family: 'FKScreamer-Bold', sans-serif;
    margin: 0;
    /* Use cqw (Container Query Width) for true proportional scaling relative to card size */
    font-size: clamp(1.5rem, 10cqw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #000;
    font-weight: normal;
    line-height: 0.8;
}

.card p {
    font-family: 'NeurialGrotesk-Regular', sans-serif;
    /* Allow paragraphs to inherit font-size from parent containers */
    font-size: inherit;
    color: #000;
    line-height: 1.6;
    margin: 0;
    font-weight: normal;
}

/* Specific Responsive Padding for Each Card */
/* Specific Responsive Padding for Each Card */
.card-padding-1 {
    padding: clamp(15px, 2.5vw, 40px) !important;
    width: 100%;
    box-sizing: border-box;
}

.card-padding-2 {
    padding: clamp(15px, 2.5vw, 40px) !important;
    width: 100%;
    box-sizing: border-box;
}

.card-padding-3 {
    padding: clamp(15px, 2.5vw, 40px) !important;
    width: 100%;
    box-sizing: border-box;
}

.card-padding-4 {
    /* Reduced padding for 1280px screens: ~25-30px */
    padding: clamp(15px, 2.5vw, 40px) !important;
    width: 100%;
    box-sizing: border-box;
}

.fluid-margin-bottom {
    /* Scale margin-bottom for Card 4 title image */
    margin-bottom: clamp(15px, 3.5vw, 40px) !important;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.restaurant-name {
    font-family: 'FKScreamer-Bold', sans-serif;
    font-size: clamp(2.78rem, 6.33vw, 8.22rem) !important;
    border-bottom: 5px solid #000;
    /* Override generic card h1 */
    line-height: 0.9;
    margin: 0;
    text-transform: none !important;
    padding-bottom: 15px;
}

#card-1 .card {
    background-color: #EEEAC7;
}

#card-2 .card {
    background-color: #B3BAC0;
}

#card-3 .card {
    background-color: #E06F1B;
}

#card-4 .card {
    background-color: #F9D71E;
}

.read-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 12px 24px;
    background-color: white;
    color: black;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 5;
}

.read-btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Scroll Hint Styles */
#scroll-hint {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 8000;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    color: #fff;
    mix-blend-mode: difference;
}

#scroll-hint.hidden {
    opacity: 0;
    transform: translate(-50%, 20px);
}

.scroll-text {
    font-family: 'NeurialGrotesk-Bold', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Mobile adjustments for scroll-hint */
@media (max-width: 1024px) {
    #scroll-hint {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 0.6rem;
    }
}





/* Fix dat.GUI position to avoid header overlap */
.dg.ac {
    z-index: 10000 !important;
    top: 130px !important;
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: all;
    transform: translateY(0);
    will-change: transform;
}

#loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: gap 1s cubic-bezier(0.19, 1, 0.22, 1);
    padding-left: 60px;
    /* Shift desktop loading slightly to the right */
}

#loading-content.show-text {
    gap: 40px;
    /* Added spacing as requested */
}

#loading-screen.slide-up {
    transform: translateY(-100%);
}

#loading-image {
    height: 40vh;
    /* 40% of screen height */
    width: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

#loading-image.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for loading image */
@media (max-width: 767px) {
    #loading-image {
        height: 18vh;
        /* Smaller on mobile per user request */
    }

    #loading-content {
        padding-left: 30px;
        /* Shift content slightly to the right on mobile */
    }

    #loading-content.show-text {
        gap: 20px;
        /* Smaller gap for smaller mobile image */
    }
}

/* Responsive Header for Mobile */
@media (max-width: 1024px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        /* Force single scroll context on Viewport */
        overflow-y: visible !important;
        height: auto !important;
    }

    #global-header {
        padding: 15px 20px 0 20px !important;
        align-items: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
        overflow: hidden !important;
    }

    #global-header .header-left,
    #global-header .header-right {
        min-width: 0 !important;
    }

    /* Smaller Logo */
    #global-header .header-left img {
        height: 75px !important;
        max-width: 100%;
    }

    #global-header .header-left div {
        font-size: 0.6rem !important;
        margin-left: 0 !important;
    }

    /* Simplify Right Side */
    #global-header .header-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 8px !important;
        flex: 1 1 auto !important;
    }

    /* Reduce gap between avatars on mobile */
    #global-header .header-right>div:last-child {
        gap: 10px !important;
    }

    /* Show "XEM ĐÁNH GIÁ CỦA" text above on mobile */
    #global-header .header-right>div:first-child {
        display: block !important;
        font-size: 0.6rem !important;
        text-align: right;
    }

    /* Show reviewer names below avatars on mobile */
    .header-reviewer-item {
        flex-direction: column !important;
        gap: 5px !important;
        align-items: center !important;
    }

    #global-header .header-right span {
        display: block !important;
        font-size: 0.9rem !important;
        letter-spacing: 0.05em !important;
        text-align: center;
        white-space: nowrap;
    }

    /* Adjust avatar size */
    #global-header .header-right img {
        width: 40px !important;
        height: 40px !important;
        display: block;
    }

    /* Tên nhà hàng trên mobile: bé đi một nửa */
    .restaurant-name {
        font-size: 5rem !important;
        letter-spacing: 0 !important;
    }

    #global-header.has-bg {
        background: linear-gradient(to bottom,
                rgba(var(--bg-rgb), 0.9) 0%,
                rgba(var(--bg-rgb), 0.7) 50%,
                rgba(var(--bg-rgb), 0) 100%) !important;
    }
}

/* Reviewer Tag on Cards */
.reviewer-tag {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    z-index: 20;
    pointer-events: none;
    /* Let clicks pass through if needed, or auto */
}

.reviewer-tag img {
    width: 40px;
    height: auto;
    /* Allow aspect-ratio to control height */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.reviewer-tag .tag-name {
    background-color: #000;
    color: #EEEAC7;
    display: flex;
    align-items: center;
    padding: 0 clamp(8px, 1.5vw, 15px);
    font-family: 'FKScreamer-Medium', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.loading-text-content {
    text-align: left;
    /* Text left aligned */
    color: #EEEAC7;
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

#loading-content.show-text .loading-text-content {
    opacity: 1;
    width: clamp(200px, 30vw, 500px);
}

.loading-title-line-1,
.loading-title-line-2 {
    color: #EEEAC7;
    font-family: 'FKScreamer-Bold', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 0.9;
    letter-spacing: -0.02rem;
}

.loading-title-line-1 {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

#loading-content.show-text .loading-title-line-1 {
    opacity: 1;
    transform: translateY(0);
}

.loading-title-line-2 {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.4s;
    /* Increased delay */
    margin-bottom: 12px;
}

#loading-content.show-text .loading-title-line-2 {
    opacity: 1;
    transform: translateY(0);
}

.loading-title-line-1.visible,
.loading-title-line-2.visible {
    opacity: 1;
    transform: translateY(0);
}

.loading-title-line-2 {
    margin-bottom: 12px;
}

/* Restaurant Card Grid Layout */
.restaurant-grid {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    /* Removed side padding as requested */
    padding: 0;
    position: relative;
    z-index: 10;
    /* Vertical spacing between stacked restaurant blocks */
    margin-bottom: clamp(60px, 8vw, 100px);
}

/* Remove any "generated" or default margins from the last element to prevent extra bottom space */
[class^="card-padding-"]>*:last-child {
    margin-bottom: 0 !important;
}

.header-reviewer-item span {
    transition: color 0.3s ease;
}

.header-reviewer-item:hover span {
    color: #E06F1B !important;
}

.card-cover {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    /* Remove bottom margin as the wrapper handles overlap */
}

/* New Wrapper for Content Columns */
.content-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(15px, 2vw, 30px);

    /* Overlap the cover image (Grouping as one block) */
    margin-top: clamp(-80px, -10vw, -40px);
    position: relative;
    z-index: 10;
}

/* Left Column - Image Stack */
.col-left-images {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2vw, 25px);
    /* Individual offset for staggering */
    margin-top: clamp(60px, 8vw, 110px);
}

.col-left-images img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Optional rounded */
}

/* Right Column - Content */
.col-right-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 20px;
}

/* Specific adjustment for Card 1 as requested */
.card-padding-1 .col-right-content {
    padding-right: 0;
    padding-left: 20px;
}

/* Info Box */
.restaurant-info-box {
    background-color: #EEEAC7;
    /* Light beige/cream */
    padding: clamp(20px, 3vw, 30px);
    color: #000;
    display: flex;
    flex-direction: column;
}


.price-section {
    margin: 15px 0;
}

.price-range {
    display: flex;
    gap: 5px;
}

.price-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'NeurialGrotesk-Bold', sans-serif;
    font-size: 1.1rem;
    line-height: 1;
    padding-bottom: 0;
    /* Visual optical correction to center $ */
    padding-top: 2px;
    background-color: transparent;
}

.price-icon.active {
    background-color: #000;
    color: #EEEAC7;
}

.address-section {
    border-top: 2px solid #000;
    padding-top: 15px;
}

.address-label {
    font-family: 'NeurialGrotesk-Medium', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.address-text {
    font-family: 'NeurialGrotesk-Bold', sans-serif;
    font-size: 1.05rem;
    line-height: 1.2;
}

/* Description Text */
/* Standardized Body Text */
.loading-subtitle {
    font-family: 'NeurialGrotesk-Regular', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.7s;
    /* Increased delay */
}

#loading-content.show-text .loading-subtitle {
    opacity: 0.7;
    transform: translateY(0);
}

.body-text {
    font-family: 'NeurialGrotesk-Regular', sans-serif;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: -0.01em;
    color: #000;
}

.restaurant-description {
    text-align: justify;
}

.restaurant-description p {
    margin-bottom: 20px;
}

/* Responsive: Stack on mobile */
@media (max-width: 1024px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
}

/* Specific Customization for Card 1 */
.card-1-info-box {
    background-color: #FFFDE8 !important;
    /* Increase spacing with text column */
}

.card-1-reviewer-tag {
    left: auto !important;
    right: 0 !important;
    flex-direction: row-reverse;
    /* Optional: text first then image if on right */
}

    /* Mobile Cover Image - DEPRECATED (Now handled by <picture>) */
    /* .card-cover-mobile removed */

@media (max-width: 1024px) {
    /* .card-cover display toggle removed */
    /* .card-cover-mobile display toggle removed */

    .content-grid-wrapper {
        display: flex !important;
        flex-direction: column !important;
        margin-top: 0 !important;
        gap: 20px !important;
    }

    /* Reorder: Content (Box + Desc) first, then Images */
    .col-right-content {
        order: 1;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .col-left-images {
        order: 2;
        margin-top: 0 !important;
    }

    .card-1-reviewer-tag {
        left: 0 !important;
        right: auto !important;
        flex-direction: row !important;
    }
}

/* Separator Block Styles */
.separator-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.separator-text {
    font-family: 'NeurialGrotesk-Bold', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
}

.separator-icon {
    width: 15vw;
    height: auto;
    object-fit: contain;
}

/* Sidebar Indicator */
#sidebar-indicator {
    position: fixed;
    left: 120px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9000;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}

#sidebar-indicator.is-centered {
    /* Move from bottom 40px to center of screen (50vh) */
    /* Half of indicator height is 50%, offset from bottom is 40px */
    transform: translateY(calc(-50vh + 50% + 40px)) !important;
}

#sidebar-indicator.reset-position {
    transform: translateY(0) !important;
    transition: transform 0.5s ease;
}

.indicator-item {
    position: relative;
    width: 110px;
    /* Reduced from 150px to avoid header overlap */
    height: auto;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
}



.indicator-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 200/350;
    object-fit: cover;
}

.indicator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
    opacity: 1;
    /* Default dimmed */
}

/* Hover Effect: Light up only */
.indicator-item:hover .indicator-overlay,
.indicator-item.forced-hover .indicator-overlay {
    opacity: 0;
    /* Light up */
}

/* Reviewer Avatar on Hover */
.reviewer-hover {
    position: absolute;
    bottom: 0px;
    left: 100%;
    margin-left: 20px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-10px);
    pointer-events: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reviewer-name {
    font-family: 'FKScreamer-Medium', sans-serif;
    color: #EEEAC7;
    font-size: 1.5rem;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    line-height: 1;
    letter-spacing: 0.02em;
}

.reviewer-hover img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.indicator-item:hover .reviewer-hover,
.indicator-item.forced-hover .reviewer-hover {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Ensure overlay stays dark unless hovered or active */
.indicator-item .indicator-overlay {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator-item.active .indicator-overlay {
    opacity: 0;
}

/* Responsive Scaling */
@media (max-width: 1440px) {
    .indicator-item {
        width: 100px;
        /* Scale down from 150px */
    }

    #sidebar-indicator {
        left: 80px;
        /* Adjust left position */
        bottom: 20px;
    }

    .reviewer-name {
        font-size: 1rem;
        gap: 10px;
    }

    .reviewer-hover img {
        width: 50px;
        height: 50px;
    }
}

/* Large Screens (> 1920px) */
@media (min-width: 1921px) {
    .indicator-item {
        width: 150px;
        /* Restore larger size for big screens */
    }

    #sidebar-indicator {
        left: 120px;
        /* Align with header padding (120px) */
    }
}

/* Hide on mobile/tablet */
@media (max-width: 1024px) {
    #sidebar-indicator {
        display: none;
    }
}

/* Mobile Navigation Buttons */
.mobile-nav-container {
    display: none;
    width: 100%;
    margin-top: 30px;
    padding: 0 0 40px 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mobile-nav-row {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 15px;
}

.nav-btn {
    background-color: #230C00;
    color: #EEEAC7 !important;
    border: none;
    padding: 16px 16px;
    font-family: 'NeurialGrotesk-Bold', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease;
    flex: 1;
    max-width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn.full-width {
    max-width: 100%;
}

.nav-btn:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .mobile-nav-container {
        display: flex;
    }
}