/** Shopify CDN: Minification failed

Line 143:2 Expected ":"
Line 144:2 Expected ":"
Line 145:2 Expected ":"
Line 146:2 Expected ":"
Line 147:2 Expected ":"
Line 148:2 Expected ":"
Line 149:2 Expected ":"
Line 163:2 Expected ":"
Line 164:2 Expected ":"
Line 165:2 Expected ":"
... and 6 more hidden warnings

**/
.list-menu--right {
  right: 0;
}

.list-menu--disclosure {
  position: absolute;
  min-width: 100%;
  width: 20rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
}

.list-menu--disclosure:focus {
  outline: none;
}

.list-menu__item--active {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.list-menu__item--active:hover {
  text-decoration-thickness: 0.2rem;
}

.list-menu--disclosure.localization-selector {
  max-height: 18rem;
  overflow: auto;
  width: 10rem;
  padding: 0.5rem;
}


/* ============================================================
   BIMBA STUDIO — Desktop Dropdown Overrides
   Paste at the BOTTOM of component-list-menu.css
   ============================================================ */

/* --- Dropdown container --- */
.list-menu--disclosure {
  position: absolute;
  min-width: 100%;
  width: 22rem;
  border: none;
  border-radius: 1rem;
  background-color: rgb(var(--color-background));
  box-shadow:
    0 4px 6px rgba(18, 18, 18, 0.04),
    0 12px 32px rgba(75, 42, 15, 0.12);
  padding: 0.5rem 0;
  overflow: hidden;
  margin-top: 0.6rem;

  /* Slide-down animation */
  animation: bimba-dropdown-in 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top center;
}

@keyframes bimba-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Thin top accent line */
.list-menu--disclosure::before {
  content: '';
  display: block;
  height: 8px;
  /* Repeating pattern inspired by Bagru/Sanganeri motifs */
  background-image: radial-gradient(circle, rgba(75, 42, 15, 0.4) 1px, transparent 1px);
  background-size: 6px 6px;
  background-position: center;
  margin-bottom: 0.6rem;
  opacity: 0.6;
}

/* --- Dropdown items --- */
.list-menu--disclosure .header__menu-item,
.list-menu--disclosure .list-menu__item {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgb(var(--color-foreground));
  text-decoration: none !important;
  border-left: 2px solid transparent;
  transition:
    border-left-color 0.18s ease,
    background-color 0.18s ease,
    padding-left 0.18s ease;
  line-height: 1.4;
}

.list-menu--disclosure .header__menu-item:hover,
.list-menu--disclosure .header__menu-item:focus-visible,
.list-menu--disclosure .list-menu__item:hover,
.list-menu--disclosure .list-menu__item:focus-visible {
  background-color: rgba(75, 42, 15, 0.06);
  border-left-color: rgb(var(--color-foreground));
  padding-left: 2.4rem;
  text-decoration: none !important;
  outline: none;
}

/* Active/current page item inside dropdown */
.list-menu--disclosure .header__menu-item--active,
.list-menu--disclosure .list-menu__item--active {
  border-left: 2px solid rgb(var(--color-foreground));
  background-color: rgba(75, 42, 15, 0.05);
  text-decoration: none !important;
  padding-left: 2.4rem;
}

.list-menu--disclosure .list-menu__item--active:hover {
  background-color: rgba(75, 42, 15, 0.09);
  text-decoration: none;
}

/* --- Top-level desktop nav items --- */
.header__menu-item {
  position: relative;
  padding: 0.6rem 1.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-decoration: none !important; /* Added !important to override defaults */
  color: rgb(var(--color-foreground));
  transition: opacity 0.2s ease;
}

/* --- Force off the default underline for the active item AND inner spans --- */
.list-menu__item--active,
.header__menu-item--active,
.header__menu-item:hover,
.header__menu-item span,
.header__active-menu-item span,
.header__menu-item:hover span {
  text-decoration: none !important; 
}

.header__menu-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background-color: rgb(var(--color-foreground));
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ... keep the rest of your ::after hover states below here ... */

.header__menu-item:hover::after,
.header__menu-item:focus-visible::after {
  width: 70%;
}

.header__menu-item--active::after {
  width: 70%;
}

/* Caret icon tightening */
.header__menu-item .icon-caret {
  width: 1rem;
  height: 1rem;
  margin-left: 0.3rem;
  transition: transform 0.2s ease;
}

details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

/* Localization dropdown — keep original compact sizing */
.list-menu--disclosure.localization-selector {
  max-height: 18rem;
  overflow: auto;
  width: 10rem;
  padding: 0.5rem;
  animation: none;
}

.list-menu--disclosure.localization-selector::before {
  display: none;
}
