/** Shopify CDN: Minification failed

Line 939:11 Unexpected ".1\\/2--phone"
Line 940:11 Unexpected ".1\\/1--phone"
Line 941:11 Unexpected ".1\\/2--tablet"
Line 942:11 Unexpected ".1\\/2--tablet-and-up"
Line 946:13 Unexpected ".1\\/2--phone"
Line 947:13 Unexpected ".1\\/1--phone"
Line 951:13 Unexpected ".1\\/2--tablet-and-up"
Line 952:13 Unexpected ".1\\/3--tablet-and-up"
Line 953:13 Unexpected ".1\\/4--tablet-and-up"
Line 957:13 Unexpected ".1\\/2--lap-and-up"
... and 2 more hidden warnings

**/
/*********************** Custom CSS for Boost AI Search & Discovery (Turbo) ************************/
/**
 * SeamsFriendly - Boost Turbo Custom Styles
 * Ported from boost-pfs-custom.css and custom.css for Horizon theme compatibility.
 * Provides product card, filter, swatch, sticker, and layout styling.
 */

/* ============================================================================
   1. PRODUCT CARD - BASE STYLES
   ============================================================================ */

/* Card wrapper */
.sf-product-card {
  position: relative;
  text-align: left;
}

.sf-product-card__wrapper {
  position: relative;
}

/* Image wrapper */
.sf-product-card__image-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.sf-product-card__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================================
   2. ASPECT RATIO (from Prestige)
   ============================================================================ */
.AspectRatio {
  position: relative;
  overflow: hidden;
}

.AspectRatio--withFallback {
  /* padding-bottom is set inline via Liquid for natural aspect ratio */
}

.AspectRatio--withFallback img:not(.ProductItem__Image--alternate) {
  position: relative;
  width: 100%;
  height: auto;
}

.AspectRatio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.AspectRatio .bc-sf-product-swatch-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ============================================================================
   3. PRODUCT ITEM CLASSES (Prestige compatibility for Horizon)
   ============================================================================ */
.ProductItem {
  position: relative;
}

.ProductItem__Wrapper {
  position: relative;
}

.ProductItem__ImageWrapper {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.ProductItem__ImageWrapper--withAlternateImage .ProductItem__Image--alternate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  object-fit: cover;
  z-index: 1;
}

.ProductItem__ImageWrapper--withAlternateImage:hover .ProductItem__Image--alternate {
  opacity: 1;
}

.ProductItem__Image {
  display: block;
  width: 100%;
  height: auto;
}

/* Native lazy loading - images are visible immediately (no lazySizes dependency) */
.ProductItem__Image {
  opacity: 1;
}

.Image__Loader {
  display: none;
}

/* ============================================================================
   4. PRODUCT LABELS
   ============================================================================ */
.ProductItem__LabelList {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ProductItem__Label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #fff;
  color: #1e352e;
  border-radius: 2px;
}

/* ============================================================================
   5. STICKER LABELS (garment/fabric stickers from tags)
   ============================================================================ */
.label_icon {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
  padding: 4px 6px;
  border-radius: 3px;
  max-width: 70px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  color: #1e352e;
}

.label_icon.quil { max-width: 50px; }
.label_icon.vown { height: 22px; }
.label_icon.orgc { max-width: 55px; }
.label_icon.revr { height: 18px; max-width: 60px; }
.label_icon.wpar { max-width: 50px; }
.label_icon.azfr { height: 20px; max-width: 55px; }
.label_icon.conv { height: 22px; }
.label_icon.ikt { max-width: 40px; }
.label_icon.veg { max-width: 55px; }

/* ============================================================================
   6. PRODUCT INFO
   ============================================================================ */
.ProductItem__Info {
  padding: 8px 0 0;
  text-align: left;
}

.ProductItem__Info--left {
  text-align: left;
}

.ProductItem__Info--center {
  text-align: center;
}

.ProductItem__Vendor {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6a6a6a;
  margin: 0 0 4px;
}

.ProductItem__Title {
  padding: 0;
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.ProductItem__Title a {
  color: #1e352e;
  text-decoration: none;
}

.ProductItem__Title a:hover {
  color: #00916e;
}

.info-title {
  display: block;
}

/* ============================================================================
   7. PRICE STYLES
   ============================================================================ */
.ProductItem__PriceList {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
}

.ProductItem__Price {
  font-size: 13px;
  font-weight: 600;
  color: #1e352e;
}

.Price--highlight {
  color: #d0021b !important;
}

.Price--compareAt {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 400;
}

.Text--subdued {
  color: inherit;
}

/* ============================================================================
   8. COLOR SWATCHES
   ============================================================================ */
.ProductItem__ColorSwatchList {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.ProductItem__ColorSwatchItem {
  position: relative;
}

.ColorSwatch__Radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ColorSwatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: box-shadow 0.15s;
}

.ColorSwatch--small {
  width: 16px;
  height: 16px;
}

.ColorSwatch:hover,
.ColorSwatch.active,
.ColorSwatch__Radio:checked + .ColorSwatch {
  box-shadow: 0 0 0 1.5px #1e352e;
}

/* ============================================================================
   9. CUSTOMIZABLE BADGE
   ============================================================================ */
.cust {
  font-size: 11px;
  color: #00916e;
  font-weight: 500;
  cursor: pointer;
  margin: 4px 0 0;
  padding: 0;
  white-space: nowrap;
}

.cust:hover {
  text-decoration: underline;
}

/* ============================================================================
   10. BOOST PFS CUSTOM CONTAINER (price + swatch + badge layout)
   ============================================================================ */
.boost-pfs-custom-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px 0 0 0;
}

/* ============================================================================
   11. JUDGEME REVIEW BADGE
   ============================================================================ */
.jdgm-widget.jdgm-preview-badge {
  margin: 2px 0;
}

/* ============================================================================
   12. SIZE RANGE BADGES (aspect ratio tags)
   ============================================================================ */
.ProductItem__ImageWrapper::before {
  display: none;
}

.ProductItem__ImageWrapper.upsz::before,
.ProductItem__ImageWrapper.losz::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px 4px;
  font-size: 9px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  color: #1e352e;
  z-index: 3;
  box-sizing: border-box;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.ProductItem__ImageWrapper.upsz::before {
  content: 'Bust: 26" - 70" | Petite - Tall';
}

.ProductItem__ImageWrapper.losz::before {
  content: 'Waist: 19" - 63" | Petite - Tall';
}

.ProductItem__ImageWrapper:hover::before {
  display: none;
}

/* ============================================================================
   13. FILTER STYLES (Boost Turbo overrides)
   ============================================================================ */

/* Mobile filter button */
.boost-pfs-filter-tree-mobile-button {
  background: white !important;
}

.template-collection .boost-pfs-filter-tree-mobile-button button {
  color: black !important;
}

.boost-pfs-filter-tree-mobile-button button,
.boost-pfs-filter-top-sorting-mobile button {
  background: white !important;
}

/* Filter option title */
.boost-pfs-filter-option-title-text {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #1e352e;
}

/* Filter clear buttons */
.boost-pfs-filter-option .boost-pfs-filter-option-title .boost-pfs-filter-clear {
  margin-right: 25px;
  z-index: 2;
  position: absolute;
  right: 0;
  top: 0;
}

/* Filter option content */
.boost-pfs-filter-option .boost-pfs-filter-option-content {
  color: #6a6a6a;
}

/* Hide relevance sort */
.boost-pfs-filter-top-sorting [data-value="relevance"] {
  display: none;
}

/* ============================================================================
   14. BOOST SD (TURBO) WIDGET STYLES
   ============================================================================ */

/* Turbo product grid — column count is handled by JS (adjustGridColumns)
   to work with Boost SD app's flex-based layout. Do NOT set display:grid
   here as it conflicts with the app's display:flex from main.css. */

/* Turbo product card overrides */
.boost-sd__product-item .sf-product-card {
  height: 100%;
}

/* ============================================================================
   15. GRID SYSTEM (Prestige compatibility)
   ============================================================================ */
.ProductList--grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ProductListWrapper {
  width: 100%;
}

.Grid__Cell {
  box-sizing: border-box;
  padding: 0 8px;
  margin-bottom: 24px;
}

/* ============================================================================
   16. PAGINATION
   ============================================================================ */
.Pagination {
  text-align: center;
  margin: 30px 0;
}

.Pagination__Nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.Pagination__NavItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  font-size: 14px;
  color: #1e352e;
  text-decoration: none;
}

.Pagination__NavItem.is-active {
  font-weight: 700;
  color: #00916e;
}

/* ============================================================================
   17. SEARCH STYLES
   ============================================================================ */
.boost-pfs-search-box {
  box-shadow: none !important;
}

.boost-pfs-search-result-toolbar {
  display: flex;
  align-items: center;
  margin: 35px 0 0;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  white-space: nowrap;
}

.boost-pfs-filter-total-product {
  font-size: 13px;
  color: #6a6a6a;
  padding: 10px 0;
}

/* ============================================================================
   18. LOADING INDICATOR
   ============================================================================ */
.boost-pfs-filter-loading-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loadlayerwrapper {
  text-align: center;
}

.loaderLayer {
  display: inline-block;
}

.loader-64 {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid #00916e;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================================
   19. MOBILE FILTER TOOLBAR
   ============================================================================ */
.boost-pfs-filter-mobile-toolbar {
  position: relative;
}

.boost-pfs-filter-mobile-toolbar-top-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.boost-pfs-filter-mobile-toolbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #e5e5e5;
}

/* Clear button mobile */
.boost-pfs-clear-button-mobile a {
  color: #00916e;
  text-decoration: underline;
  font-size: 13px;
}

/* Progress bar */
.bc-custom-progress-bar-inner {
  height: 3px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
  margin: 10px 0;
}

.bc-custom-progress-bar-active {
  height: 100%;
  background: #00916e;
  transition: width 0.3s;
}

/* Product count mobile */
#bc-sf-filter-number-styles {
  font-size: 12px;
  color: #6a6a6a;
  text-align: center;
  padding: 8px 0;
}

/* ============================================================================
   20. END-OF-LIST CTA
   ============================================================================ */
.new-arrivals-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #1e352e;
}

#bc-sf-filter-new-arrivals .storybar ul {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 0;
  margin: 15px 0;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}

#bc-sf-filter-new-arrivals .storybar li {
  flex: 0 0 auto;
  text-align: center;
  font-size: 12px;
}

#bc-sf-filter-new-arrivals .storybar img.storynav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 5px;
}

#bc-sf-filter-new-arrivals .new-arrivals {
  display: block;
  text-align: center;
  margin: 20px auto;
  max-width: 250px;
}

/* ============================================================================
   21. STICKY PAGINATION (mobile)
   ============================================================================ */
.bc-sf-filter-pagination-wrapper.bc-sf-filter-stick {
  position: fixed;
  top: 82px;
  z-index: 10;
  background: #fff;
  padding: 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   22. RESPONSIVE STYLES
   ============================================================================ */
@media only screen and (max-width: 767px) {
  .ProductItem__Title {
    font-size: 11px;
    letter-spacing: 0.3px;
    line-height: 1.5;
    margin-bottom: 3px;
  }

  .ProductItem__Info {
    font-size: 11px;
    margin-top: 5px;
    text-align: left;
  }

  .ProductItem__Price {
    font-size: 11px;
  }

  .cust {
    font-size: 10px;
  }

  .label_icon {
    height: 30px;
    max-width: 65px;
    font-size: 8px;
    top: 5px;
    left: 5px;
  }

  .boost-pfs-custom-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px 0px 0px 1px;
  }

  .boost-pfs-search-suggestion-wrapper,
  .boost-pfs-search-suggestion {
    left: 0 !important;
    width: 100vw !important;
  }

  .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item span {
    font-size: 12px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ProductItem__Title {
    font-size: 12px;
  }

  .ProductItem__Info {
    font-size: 12px !important;
  }
}

/* Desktop grid columns handled by JS adjustGridColumns() */

/* ============================================================================
   23. RATING FILTER (reverse order for star display)
   ============================================================================ */
.boost-pfs-filter-option-rating .boost-pfs-filter-option-item-list {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: column-reverse !important;
}

/* ============================================================================
   24. MISC OVERRIDES
   ============================================================================ */
.boost-pfs-body-no-scroll body {
  position: static;
}

.boost-pfs-search-suggestion-open-body:not(.boost-pfs-search-suggestion-mobile-open) {
  position: static;
}

/* PFS custom label */
.pfs-custom {
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #FF7400;
  font-weight: 500;
}

/* Heading helpers */
.Heading {
  font-family: inherit;
  margin: 0;
}

/* Link helpers */
.Link {
  text-decoration: none;
}

.Link--primary {
  color: inherit;
}

/* ============================================================================
   25. PRESTIGE LAYOUT CLASSES (Section, Container, Tabs, Grid, Carousel)
   ============================================================================ */

/* Section */
.Section {
  position: relative;
}

.Section--spacingNormal {
  padding: 40px 0;
}

/* Container */
.Container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.SectionHeader {
  margin-bottom: 24px;
}

.SectionHeader--center {
  text-align: center;
}

.SectionHeader__SubHeading {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a6a6a;
}

.SectionHeader__Heading {
  font-size: 28px;
  font-weight: 600;
  color: #1e352e;
  line-height: 1.3;
}

.SectionHeader__TabList {
  margin-top: 8px;
}

/* Heading size utilities */
.u-h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.u-h6 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.u-h7 {
  font-size: 11px;
}

/* Tab list */
.TabList {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.TabList__Item {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  color: #b0b0b0;
  transition: color 0.2s;
  font-family: inherit;
}

.TabList__Item.is-active {
  color: #1e352e;
}

.TabList__Item:hover {
  color: #1e352e;
}

/* Tab panels */
.TabPanel {
  display: none;
}

.TabPanel[aria-hidden="false"] {
  display: block;
}

/* Section footer */
.SectionFooter {
  text-align: center;
  margin-top: 24px;
}

/* Buttons */
.Button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid currentColor;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.Button--primary {
  background: #00916e;
  color: #fff;
  border-color: #00916e;
}

.Button--primary:hover {
  background: #29705a;
  border-color: #29705a;
}

.Button--secondary {
  background: transparent;
  color: #1e352e;
  border-color: #1e352e;
}

.Button--secondary:hover {
  background: #1e352e;
  color: #fff;
}

/* Grid system (Prestige responsive) */
.Grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 -8px;
}

.Grid__Cell {
  box-sizing: border-box;
  padding: 0 8px;
  margin-bottom: 24px;
}

/* Responsive grid fractions */
.Grid__Cell.1\/2--phone { width: 50%; }
.Grid__Cell.1\/1--phone { width: 100%; }
.Grid__Cell.1\/2--tablet { width: 50%; }
.Grid__Cell.1\/2--tablet-and-up { width: 50%; }

@media screen and (max-width: 749px) {
  [class*="--phone"] { }
  .Grid__Cell.1\/2--phone { width: 50%; }
  .Grid__Cell.1\/1--phone { width: 100%; }
}

@media screen and (min-width: 750px) {
  .Grid__Cell.1\/2--tablet-and-up { width: 50%; }
  .Grid__Cell.1\/3--tablet-and-up { width: 33.333%; }
  .Grid__Cell.1\/4--tablet-and-up { width: 25%; }
}

@media screen and (min-width: 1000px) {
  .Grid__Cell.1\/2--lap-and-up { width: 50%; }
  .Grid__Cell.1\/3--lap-and-up { width: 33.333%; }
  .Grid__Cell.1\/4--lap-and-up { width: 25%; }
}

/* ProductList--removeMargin removes default grid margins */
.ProductList--removeMargin {
  margin: 0 -8px;
}

/* ============================================================================
   26. CAROUSEL (CSS scroll-snap fallback for Flickity)
   ============================================================================ */
.ProductList--carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 0 20px;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
}

.ProductList--carousel::-webkit-scrollbar {
  display: none;
}

.Carousel__Cell {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(25% - 12px);
  min-width: 0;
}

@media screen and (max-width: 749px) {
  .Carousel__Cell {
    width: calc(50% - 8px);
  }
}

@media screen and (min-width: 750px) and (max-width: 999px) {
  .Carousel__Cell {
    width: calc(33.333% - 11px);
  }
}

/* Flickity overrides for when Flickity is loaded */
.flickity-viewport {
  overflow: hidden;
  position: relative;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-prev-next-button svg {
  width: 20px;
  height: 20px;
}

/* ============================================================================
   27. PRODUCT LIST WRAPPER
   ============================================================================ */
.ProductListWrapper {
  width: 100%;
  overflow: hidden;
}

/* hidden-pocket: hide on mobile */
.hidden-pocket {
  display: none;
}

@media screen and (min-width: 750px) {
  .hidden-pocket {
    display: inline-block;
  }
}

/* PlaceholderSvg */
.PlaceholderSvg {
  width: 100%;
  height: auto;
  fill: #e0e0e0;
}

.PlaceholderSvg--dark {
  fill: #c0c0c0;
}

/* shopify-section--bordered */
.shopify-section--bordered {
  border-top: 1px solid #e5e5e5;
}
