body {
    font-family: "Inter", sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

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

/* Fix scroll offset for anchor links with sticky navbar */
html {
    scroll-padding-top: 1rem;
    /* 50px - navbar height + extra padding */
}

section[id] {
    scroll-margin-top: 1rem;
    /* 50px - navbar height + extra padding */
}

/* catalog */
body {
    font-family: "Inter", sans-serif;
}

/* Prevent layout shift: reserve space for product grid and provide hero fallback */
#product-grid {
    min-height: 360px;
    /* reserve vertical space until JS injects products */
}

.hero-section {
    background-color: #0b1220;
    /* subtle dark-blue fallback to reduce flash */
    background-size: cover;
    background-position: center;
}
