/* Hide Scrollbar */
html,
body{
    overflow-x: hidden;
    scrollbar-width: none;      
    -ms-overflow-style: none;
    padding-top: 1rem;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar{
    display: none;              
}

/* ——— Brand logo: icon + SelectChoice ——— */
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.brand-link:hover {
  opacity: 0.92;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: #BE185D;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #F6F5F2;
}

.brand-name .choice {
  font-weight: 500;
  opacity: 0.95;
}

.brand-link--footer {
  margin-bottom: 1rem;
}

.brand-link--footer .brand-name {
  font-size: 1.15rem;
}
