body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* Optional if you're using scrollable sections but want to hide scrollbars visually */
body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

body {
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* Internet Explorer 10+ */
}


/* === HOMEPAGE NAVBAR === */
.home-navbar {
  width: 100%;
  padding-top: 12vw;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.home-brand {
  font-size: 1.7rem;
  font-family: 'Aptos-Narrow';
  font-weight: 600;
  line-height: 60px;
  color: #262C36;
  margin-left: 24px;

}

.home-scan-icon {
  height: 40px;
  width: auto;
  cursor: pointer;
  margin-right: 24px;
}

.home-main-contain {
  width: 100%;
  margin: 0 auto;
}


.home-brand-link {
  text-decoration: none;
}

.home-brand-link .home-brand {
  color: #262C36; /* or white depending on background */
}


/* === home-content === */
.home-content {
  width: 100%;
  background-color: white;
  position: sticky;
  padding-top: 2%;
  top: 0;
  z-index: 1000;
  
}


.home-content-inner {
  display: flex;
  flex-direction: column;
}

/* Don’t let it fade in a drawer */
.home-title {
  font-family: 'Aptos-Narrow';
  font-style: normal;
  color: #262C36;
  font-weight: 100;
  font-size: 2.6rem;
  margin-left: 24px;
  margin-right: 24px;
  line-height: 0.9;
}

.highlight-blue {
  color: #003399; /* or your brand’s preferred blue */
}


/* Category & Popular Row */
.home-content-menu {
  display: flex;
  margin-left: 24px;
  margin-top: 5vw;
  gap: 5rem;
}

.home-menu-left,
.home-menu-subtitle {
  font-size: 1.5rem;
  font-family: 'Aptos-Narrow';
  font-weight: 100;
  color: #262C36
}

/* home divider line */
.home-divider {
  width: calc(100% - 48px); /* 24px left + right */
  margin-top: 1vw;
  margin-left:24px;
  margin-right: 24px;
  height: 0.5px;
  background-color: #bbb; /* lighter color & line weight */
}


/* === gallery thumbnails === */
.home-gallery-section {
  display: flex;
  gap: 1rem;
  padding: 4vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  margin-left: 24px;
  scrollbar-width: none;
}
.home-gallery-section > * {
  flex: 0 0 auto;
}

.gallery-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-gallery-section::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.home-gallery-section img {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 0px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  min-width: 180px;
  width: 100%;
  box-sizing: border-box;
}


.gallery-card img {
  width: 100%;
  border-radius: 0;
  margin-bottom: 10px;
}

.gallery-caption {
  text-align: left;
  padding-left: 2px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-title {
  font-size: 1rem;
  font-family: 'Aptos-Narrow';
  font-weight: 700;
  letter-spacing: 1px;
  color: #262C36;
  margin-bottom: 2px;
}

.gallery-desc {
  font-size: 0.96rem;
  font-family: 'Aptos-Light';
  color: #262C36;
  margin-bottom: 2px;
}

.home-gallery-section .gallery-arrow {
  width: 36px;
  max-width: none;
  min-width: 0;
  height: auto;
  display: inline-block;
}

.gallery-arrow {
  width: 36px !important;
  max-width: none !important;
  min-width: 0 !important;
}

/* === home menu === */
.home-content-menu {
  display: flex;
  margin-left: 24px;
  margin-top: 5vw;
  gap: 5rem;
}

.home-menu-switch {
  font-family: 'Aptos-Narrow';
  font-weight: 400;
  color: #262C36;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: font-weight 0.18s;
}

.home-menu-switch.selected {
  font-weight: 700;
}
