/** Shopify CDN: Minification failed

Line 66:1 Unexpected "/"
Line 691:5 Unexpected "/"

**/
/* Top-Level Navigation Bar */
/* Displays: SHOP | EXPLORE | OUTFITS | PRELOVED above existing menu */

/* CSS Variables for justify-content settings for each menu */
:root {
  --menu-justify-1: flex-start;  /* SHOP BY */
  --menu-justify-2: flex-start;  /* STYLING HUB (EXPLORE) */
  --menu-justify-3: center;      /* OUTFITS */
  --menu-justify-4: flex-start;  /* PRELOVED */
}

/* Create positioning context for top-level nav */
.top-level-nav {
  position: relative;
}

.menu__item.menu__item--icons.static{
  position: static;
}
.menu__item--icons .menu__item--icon{
  position: relative;
}

/* Position main menu below top-level nav */
.menu__items[data-takes-space] {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0s 0.15s;
  background-color: var(--bg, #fff);
  border-bottom: 1px solid var(--COLOR-LINE);
  z-index: 100;
  border-top: 1px solid var(--COLOR-LINE);
  min-height: 45px;
  /* justify-content: flex-start; */
}

/* Hide menu container when it has no visible children */
.menu__items[data-takes-space]:not(:has(.menu__item:not([style*="display: none"]))) {
  display: none !important;
}

/* Hide menu on mobile by default */
@media screen and (max-width: 1185px) {
  .menu__items[data-takes-space] {
    display: none !important;
  }
}




*/

/* Add spacing for main content when menu is visible */
.menu__items[data-takes-space][style*='opacity: 1'] {
  --menu-visible-height: 50px;
}

/* Push main content down when SHOP menu is open by default */
.main-content {
  /* padding-top: var(--default-menu-spacing, 0px); */
  transition: padding-top 0.15s ease;
}

/* Set default spacing when SHOP menu is visible */
:root {
  --default-menu-spacing: 50px;
}

.menu__items[data-takes-space][style*='opacity: 1'] {
  transition:
    opacity 0.15s ease,
    visibility 0s 0s;
}

/* Hide menu items immediately when menu is closing */
.menu__items[data-takes-space]:not([style*='opacity: 1']) .menu__item,
.menu__items[data-takes-space][style*='opacity: 0'] .menu__item {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0s,
    visibility 0s;
}

.menu__items[data-takes-space][style*='opacity: 1'] .menu__item {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition:
    opacity 0.15s ease,
    visibility 0s 0s;
}

/* Hide all dropdowns immediately when menu is closing */
.menu__items[data-takes-space]:not([style*='opacity: 1']) .header__dropdown,
.menu__items[data-takes-space][style*='opacity: 0'] .header__dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition:
    opacity 0s,
    visibility 0s !important;
}

.menu__items[data-takes-space]:not([style*='opacity: 1'])
  .header__dropdown__wrapper,
.menu__items[data-takes-space][style*='opacity: 0'] .header__dropdown__wrapper {
  opacity: 0 !important;
  transform: none !important;
  transition:
    opacity 0s,
    transform 0s !important;
}

/* Show grey border at top of dropdown when grandparent menu is displayed */
/* This targets grandparent items that are visible (not display:none) */
.grandparent:not([style*='display: none']) .header__dropdown::before {
  opacity: 1 !important;
}

/* Instantly hide third-tier dropdowns when closing (no transition lag) */
/* This applies to SHOP menu items like "Dresses" that have hover-disclosure */
.menu__items[data-takes-space][data-two-tier='false'] hover-disclosure:not(.is-visible) .header__dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0s !important, visibility 0s !important;
}

/* Force instant hide on dropdown wrapper too to prevent white flash */
.menu__items[data-takes-space][data-two-tier='false'] hover-disclosure:not(.is-visible) .header__dropdown__wrapper {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  transition: opacity 0s !important, transform 0s !important;
}

/* Exception: menu__item--icons should always be visible on desktop */
.menu__item--icons[data-takes-space] {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  width: auto;
  border-bottom: none;
  background-color: transparent;
}

/* Two-tier menus (EXPLORE, OUTFITS, PRELOVED) - show as expanded mega menu */
/* Display all grandparent items with their children visible (no hover required) */

/* Force show all dropdowns in 2-tier menus - override ALL theme styles */
.menu__items[data-takes-space][data-two-tier='true']
  hover-disclosure.is-visible
  .header__dropdown,
.menu__items[data-takes-space][data-two-tier='true']
  hover-disclosure:not(.is-visible)
  .header__dropdown,
.menu__items[data-takes-space][data-two-tier='true']
  hover-disclosure
  .header__dropdown {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  pointer-events: all !important;
  max-height: none !important;
  height: auto !important;
  transform: none !important;
  transition: none !important;
}

/* Disable hover functionality on 2-tier menu hover-disclosure elements */
.menu__items[data-takes-space][data-two-tier='true'] hover-disclosure {
  pointer-events: none !important;
}

/* But keep all links clickable */
.menu__items[data-takes-space][data-two-tier='true'] hover-disclosure a {
  pointer-events: all !important;
  padding-bottom: 0;
}

/* Remove hover bridge for 2-tier menus since there's no hover behavior */
.menu__items[data-takes-space][data-two-tier='true']
  hover-disclosure
  > a[data-top-link]::after {
  display: none;
}

/* Show menu items when menu wrapper is visible */
.menu__items[data-takes-space][style*='opacity: 1'] .menu__item {
  display: block;
}

.menu__items[data-takes-space][style*='opacity: 1'] .menu__item.parent{
  /* min-width: 235px; */
}
/* @media(max-width: 1280px){
 .menu__items[data-takes-space][style*='opacity: 1'] .menu__item.parent{
    min-width: 175px;
  }
} */

/* Dropdowns should only show when their parent has is-visible class (handled by hover-disclosure component) */
/* Do NOT force all dropdowns to show when menu is visible */

/* Ensure dropdowns are hidden when menu is hidden */
.menu__items[data-takes-space][style*='opacity: 0'] .header__dropdown {
  display: none !important;
  pointer-events: none !important;
}

/* Add bridge under menu items (DRESSES, SALE, etc.) to their dropdowns */
.menu__items[data-takes-space] hover-disclosure:not(.is-visible) > a[data-top-link]::after {
  display: none;
}
.menu__items[data-takes-space] hover-disclosure > a[data-top-link]::after {
  display: block;
  content: '';
  position: absolute;
  top: 100%;
  left: -2rem;
  right: -2rem;
  height: 40px; /* Larger bridge for menu items */
  pointer-events: all;
  /* background: rgba(0, 255, 0, 0.1); */ /* Green tint - uncomment for debugging */
  z-index: 1;
}

.menu__items[data-takes-space] hover-disclosure > a[data-top-link] {
  position: relative;
}

.menu__items[data-takes-space][data-two-tier='false']
  .menu__item
  > .navlink--toplevel,
.menu__items[data-takes-space]:not([data-two-tier='true'])
  .menu__item
  > .navlink--toplevel {
  font-size: 15px;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.menu__items[data-takes-space][data-two-tier='false']
  .menu__item
  > .navlink--toplevel
  .navtext,
.menu__items[data-takes-space]:not([data-two-tier='true'])
  .menu__item
  > .navlink--toplevel
  .navtext {
  font-weight: 400;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  color: var(--COLOR-PRIMARY);
  letter-spacing: 0;
}

/* Add black bottom border to hovered menu item */
.menu__items[data-takes-space][data-two-tier='false']
  .menu__item.is-visible,
.menu__items[data-takes-space]:not([data-two-tier='true'])
  .menu__item.is-visible {
  border-bottom: 1px solid #000;
  margin-bottom: -1px;

}

.menu__items[data-takes-space][data-two-tier='false']
  .menu__item.is-visible
  > .navlink,
.menu__items[data-takes-space]:not([data-two-tier='true'])
  .menu__item.is-visible
  > .navlink {
  font-weight: 400;
}

.menu__items[data-takes-space][data-two-tier='true'] .navlink--grandchild {
  font-weight: 400;
  font-size: 15px;
  opacity: 1;
}

.menu__items[data-takes-space][data-two-tier='true']
  .navlink--grandchild
  .navtext {
  font-weight: 400;
  font-size: 0.9rem;
}

.menu__items[data-takes-space][data-two-tier='true']
  .navlink--grandchild:hover {
  opacity: 1;
}

/* Width differentiation for menu items with dropdowns vs simple links */
/* Items with dropdowns (grandparent/parent) - wider */
.menu__items[data-takes-space] .menu__item.grandparent,
.menu__items[data-takes-space] .menu__item.parent {
  /* min-width: 100px; */
  padding: 0 8px;
}

.menu__items[data-takes-space] .menu__item.child {
  /* min-width: 124px; */
  padding: 0 24px;
}


@media screen and (min-width: 1280px) {
  .menu__items[data-takes-space] .menu__item.child {
    min-width: 124px;
    padding: 0 24px;
  }

  .menu__items[data-takes-space] hover-disclosure.menu__item {
    min-width: 124px;
  }

  .menu__items[data-takes-space] .menu__item.child {
    /* min-width: 100px; */
    padding: 0 24px;
  }
}

/* menu__items stays full-width for background; container handles layout */
.menu__items[data-takes-space] {
  container-type: inline-size;
  container-name: menu-container;
}

/* Apply justify-content based on active menu using CSS variables */
.menu__items[data-takes-space][data-active-menu="1"]:not([data-is-wrapping="true"]) .menu__items-container {
  justify-content: var(--menu-justify-1);
}

.menu__items[data-takes-space][data-active-menu="2"]:not([data-is-wrapping="true"]) .menu__items-container {
  justify-content: var(--menu-justify-2);
}

.menu__items[data-takes-space][data-active-menu="3"]:not([data-is-wrapping="true"]) .menu__items-container {
  justify-content: var(--menu-justify-3);
}

.menu__items[data-takes-space][data-active-menu="4"]:not([data-is-wrapping="true"]) .menu__items-container {
  justify-content: var(--menu-justify-4);
}

/* Auto-switch to flex-start when items are actually wrapping */
.menu__items[data-takes-space][data-is-wrapping="true"] .menu__items-container {
  justify-content: flex-start !important;
}

/* Fallback: Container query for browsers without full JS support */
@container menu-container (max-width: 1200px) {
  .menu__items[data-takes-space][data-active-menu="1"]:not([data-is-wrapping]) .menu__items-container,
  .menu__items[data-takes-space][data-active-menu="2"]:not([data-is-wrapping]) .menu__items-container,
  .menu__items[data-takes-space][data-active-menu="3"]:not([data-is-wrapping]) .menu__items-container,
  .menu__items[data-takes-space][data-active-menu="4"]:not([data-is-wrapping]) .menu__items-container {
    justify-content: flex-start !important;
  }
}

/* 3-tier menus (Womens): override container padding/alignment */
.menu__items[data-takes-space][data-two-tier="false"] .menu__items-container {
  padding: 0;
  align-items: center;
}

@media(min-width: 1280px){
  .menu__items[data-takes-space][data-two-tier="false"] .menu__items-container {
    padding-left: 23px;
    gap: 0;
  }
}


nav[data-nav] {
  position: static;
}

@media screen and (max-width: 1185px) {
  nav[data-nav] {
    position: absolute;
  }
}

.top-level-nav {
  width: 100%;
  background-color: var(--bg, #fff);
  padding: 0;
  margin: 0;
}

.top-level-nav__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.top-level-nav__item {
  position: relative;
  border-right: 1px solid var(--COLOR-LINE);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  min-width: 142px;
}

.top-level-nav__item:hover,
.top-level-nav__item--menu-open {
  border-bottom: none;
}

.top-level-nav__item:first-child {
  border-left: 1px solid var(--COLOR-LINE);
}

/* Use ::before pseudo-element for hover border to prevent layout shift */
.top-level-nav__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--COLOR-BRAND-ONE);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.top-level-nav__item:hover::before,
.top-level-nav__item--menu-open::before {
  opacity: 1;
}

/* Use ::after to cover bottom border and create seamless flow into dropdown */
.top-level-nav__item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--bg, #fff);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 101;
}

.top-level-nav__item:hover::after,
.top-level-nav__item--menu-open::after {
  opacity: 1;
}

.top-level-nav__link {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text, #000);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.top-level-nav__link:hover,
.top-level-nav__item--active .top-level-nav__link {
  color: var(--text, #000);
}

/* Responsive */
@media screen and (max-width: 1185px) {
  .top-level-nav {
    display: none;
  }
}

@media screen and (min-width: 1186px) and (max-width: 1280px) {
  .top-level-nav__link {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 1280px) {
  .top-level-nav__item {
    min-width: 132px;
  }
}

/* Embedded Search Bar */
.menu__item--search-embedded {
  display: flex;
  align-items: center;
}

/* Show embedded search in compress mode */
.site-header--compress .nav .menu__item--search-embedded {
  display: flex;
}

.search-form--embedded {
  position: relative;
  width: 100%;
}

.search-form__inner--embedded {
  display: flex;
  align-items: center;
  padding: 0;
  min-height: auto;
  width: auto;
  background: transparent;
}

.search-form__input-holder--embedded {
  position: relative;
  display: flex;
  align-items: center;
  width: 335px;
  background: var(--input-bg, rgba(0, 0, 0, 0.05));
  border-radius: 20px;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.search-form__label--embedded {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  pointer-events: none;
  z-index: 1;
}

.search-form__label--embedded .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--text, #000);
  opacity: 0.6;
}

.search-form__input--embedded {
  width: 100%;
  border: 0;
  border-radius: 20px;
  margin: 0;
  padding: 8px 20px 8px 40px;
  background: transparent;
  font-size: 15px;
  line-height: 1.4;
  border: 1px solid #eaeaea;
  color: var(--COLOR-PRIMARY);
}

.search-form__input--embedded::placeholder {
  color: var(--COLOR-PRIMARY);
}

.search-form__input--embedded:focus {
  outline: none;
  box-shadow: none;
}

.search-form__submit--embedded {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  border: 1px solid #eaeaea;
}

.search-form__submit--embedded:hover {
  opacity: 1;
}

.search-form__submit--embedded .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--text, #000);
}

.search-popdown__results--embedded {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  z-index: 1000;
  background: var(--bg, #fff);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

/* Hide by default - JavaScript will show it when there are results */
/* Hide when only loading state is present (no actual results yet) */
.search-popdown__results--embedded:has(
  .predictive-search__loading-state:only-child
) {
  display: none !important;
}

/* Show when predictive-search has results (set by JavaScript) */
predictive-search[open='true'][results='true']
  .search-popdown__results--embedded,
predictive-search[results='true'] .search-popdown__results--embedded {
  display: block;
}

/* Show when form has is-searched class (user has typed something) */
.search-form--embedded.is-searched
  .search-popdown__results--embedded:not(
    :has(.predictive-search__loading-state:only-child)
  ) {
  display: block;
}

.predictive-search--embedded {
  position: static;
  margin: 0;
  padding: 16px;
  max-height: 400px;
  background: var(--bg, #fff);
  border-radius: 8px;
}

/* Desktop: Show embedded search in menu__item--icons (between nav links and account icons) */
@media screen and (min-width: 1186px) {
  .menu__item--icons .menu__item--search-embedded {
    display: flex;
    margin-right: 0px;
  }
}

@media screen and (min-width: 1120px) {
  .menu__item--icons .menu__item--search-embedded {
    display: flex;
    margin-right: 20px;
  }
  /* .top-level-nav__wrapper{
    /* padding-left: 24px; */
  } */
}

@media screen and (min-width: 1350px) {
  .menu__item--icons .menu__item--search-embedded {
    display: flex;
    margin-right: 60px;
  }
}

/* Mobile: Hide embedded search in menu__item--icons */
@media screen and (max-width: 1185px) {
  .menu__item--search-embedded {
    display: none;
  }
}

@media screen and (min-width: 1186px) and (max-width: 1250px) {
  .search-form__input-holder--embedded {
    width: 250px;
  }
}

@media screen and (min-width: 1050px) and (max-width: 1280px) {
  .search-form__input-holder--embedded {
    width: 250px;
  }
}

/* Mobile Search Bar - Always visible below nav on mobile */
.mobile-search-bar {
  display: none;
  width: 100%;
  background-color: var(--bg, #fff);
  padding: 12px 0;
}

.mobile-search-bar__inner {
  max-width: 100%;
  padding: 0 var(--gutter-mobile, 16px);
}

/* Show mobile search bar only on mobile screens */
@media screen and (max-width: 1185px) {
  .mobile-search-bar {
    display: block;
    padding-top: 0;
  }

  /* Make search input full width on mobile */
  .mobile-search-bar .search-form__input-holder--embedded {
    width: 100%;
    max-width: 100%;
  }
}

/* On mobile, keep desktop search in menu__item--icons hidden */
@media screen and (max-width: 1185px) {
  .menu__item--icons .menu__item--search-embedded {
    display: none !important;
  }
}

/* Navigation Color Swatches */
.navlink__color-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-color: var(--swatch-color, #ccc);
  flex-shrink: 0;
  overflow: hidden;
}

.navlink__color-swatch__inner {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--swatch-color, #ccc);
  border-radius: 50%;
}

/* Navigation Image Swatches (for Fashion Style sections) */
.navlink__color-swatch--image {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  background: transparent;
}

.navlink__color-swatch__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.navlink--grandchild .navtext {
  display: inline-flex;
  align-items: center;
}

/* =================================================================
   Two-tier menus (Shop By / Styling Hub / Preloved):
   Each group is now a single grandparent hover-disclosure, matching
   the Womens mega menu structure exactly. Max-width centering is
   handled by grandparent.no-images .header__dropdown__inner in
   theme.css — no padding/grid needed on menu__items itself.
   ================================================================= */

/* The single grandparent hover-disclosure spans full width of menu__items */
.menu__items[data-takes-space][data-two-tier='true'] hover-disclosure.grandparent {
  width: 100%;
}

/* Hide the top-level nav link — the group name is shown in the nav bar above */
.menu__items[data-takes-space][data-two-tier='true'] hover-disclosure.grandparent > a[data-top-link] {
  display: none;
}

/* Inner container: constrains content width while menu__items stays full-width */
.menu__items-container {
  display: flex;
  flex-wrap: wrap;
  width: calc(var(--wrapper-width) + var(--gutter) / 2);
  margin: 0 auto;
  box-sizing: border-box;
}

/* All columns fit in a single row with no wrapping */
.menu__items[data-takes-space][data-two-tier='true'] .header__grandparent__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px 16px;
}

/* Mobile Navigation Swatches */
.mobile-navlink__text {
  display: inline-flex;
  align-items: center;
}

.mobile-navlink .navlink__color-swatch {
  margin-right: 8px;
}

.mobile-navlink--level-2 .navlink__color-swatch,
.mobile-navlink--level-3 .navlink__color-swatch {
  margin-right: 8px;
}

/*Styling Hub: 4-column portrait image grid - desktop only
   Mirrors the Palo Alto theme's square-image mega-menu layout but uses a portrait aspect ratio, limited to exactly 4 items
 */

@media only screen and (min-width: 1024px) {
  /* Override the default no-images dropdown inner width for the image-mode variant */
  .grandparent--image-mode .header__dropdown__inner {
    width: calc(var(--wrapper-width) + var(--gutter) / 2);
    max-width: 100%;
  }

  .styling-hub-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    padding: 20px 0;
  }

  .styling-hub-images__card {
    display: block;
    position: relative;
    overflow: hidden;
    /* border-radius: var(--RADIUS, 2); */
    text-decoration: none;
  }

  /* Image container with portrait aspect ratio */
  .styling-hub-images__media {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* make sure image-fill container uses aspect ratio */
  .styling-hub-images__media .image-fill {
    margin: 0;
  }

  /* Hover scale effect on the image */
  .no-touch .styling-hub-images__card img {
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .no-touch .styling-hub-images__card:hover img {
    transform: scale(1.05);
  }

  /* Placeholder SVG styling */
  .styling-hub-images__media .placeholder-svg-filled {
    background: var(--COLOR-MENU-BG-LIGHTEN-DARKEN-FOREGROUND, #f5f5f5);
  }
}
