/** Shopify CDN: Minification failed

Line 1135:20 Unexpected "{"
Line 1135:29 Expected ":"
Line 1149:20 Unexpected "{"
Line 1149:29 Expected ":"
Line 1151:20 Unexpected "{"
Line 1151:29 Expected ":"
Line 1152:20 Unexpected "{"
Line 1152:29 Expected ":"
Line 1154:20 Unexpected "{"
Line 1154:29 Expected ":"
... and 10 more hidden warnings

**/
/* ==== SimplyControlled — Simplified CSS (Condensed Topbar, Header, Search, Menus, Heroes, Cards, Collections) ==== */

/* ---------------- Variables ---------------- */
:root {
  --sc-logo-h-d: 128px;                  /* Desktop default logo height */
  --sc-logo-h-d-scrolled: 40px;          /* Desktop scrolled logo height */
  --sc-logo-h-m: 104px;                  /* Mobile default logo height */
  --sc-logo-h-m-scrolled: 34px;          /* Mobile scrolled logo height */
  --logo-width: 220px !important;        /* Desktop logo width override */
  --logo-width-mobile: 170px !important; /* Mobile logo width override */
  --sc-header-offset: 7.2rem;            /* Header height offset for sticky elements */
}

/* ---------------- Global/Base ---------------- */
.card__media, .card-media, .sc-cat img, .collection-card__image, .brand-card__image {
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
}
.card__media img, .card-media img, .collection-card__image img, .brand-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accessibility: skip link */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-to-content:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}

/* ---------------- Topbar & Header ---------------- */
.topbar.section--padding {
  padding: 4px 0 !important;
  line-height: 1.2;
  font-size: .9rem;
  background: #000;
  color: #fff !important;
}
.topbar.section--padding a {
  color: #fff !important;
}
.topbar.section--padding .sc-claim, .topbar.section--padding p, .topbar.section--padding span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: .95rem;
  text-align: center;
}
.header__top.section--padding {
  padding: 6px 0 !important;
}
.header__bottom.section--padding {
  padding: 6px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 990px) {
  .header__inline-menu {
    gap: 16px;
  }
  .header__menu-item {
    padding: 6px 10px;
    border-radius: 10px;
  }
  .header__menu-item:hover {
    background: rgba(255,255,255,.06);
  }
  .header__quote-link {
    display: inline-flex !important;
  }
}
@media (max-width: 989px) {
  .header__quote-link {
    display: none !important;
  }
}

/* Scrolled state */
body.is-scrolled .topbar.section--padding {
  padding: 0 !important;
  height: 0;
  overflow: hidden;
  border: 0;
}
body.is-scrolled .header__top.section--padding {
  padding: 4px 0 !important;
}
body.is-scrolled .header__bottom.section--padding {
  padding: 0 !important;
}
body.is-scrolled .shopify-section-header-sticky, body.is-scrolled .section-header {
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}

/* Logo handling */
.header .header__logo, .header .header__heading-logo, .header .header__heading-logo-wrapper {
  flex: 0 0 auto !important;
  min-width: 150px;
  width: auto !important;
  max-width: none !important;
}
.header .header__logo--desktop {
  display: none !important;
}
.header .header__logo--mobile {
  display: block !important;
}
.header .header__logo img, .header .header__heading-logo-wrapper img {
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
  max-height: var(--sc-logo-h-d) !important;
}
body.is-scrolled .header .header__logo img, body.is-scrolled .header .header__heading-logo-wrapper img {
  max-height: var(--sc-logo-h-d-scrolled) !important;
}
@media (min-width: 1024px) {
  .header .header__logo--desktop {
    display: block !important;
  }
  .header .header__logo--mobile {
    display: none !important;
  }
  .header__bottom [class*="logo"] {
    display: none !important;
  }
}
@media (max-width: 1023.98px) {
  .header .header__logo {
    min-width: 120px;
  }
  .header .header__logo img, .header .header__heading-logo-wrapper img {
    max-height: var(--sc-logo-h-m) !important;
  }
  body.is-scrolled .header .header__logo img, body.is-scrolled .header .header__heading-logo-wrapper img {
    max-height: var(--sc-logo-h-m-scrolled) !important;
  }
  .header__top .cusstom-button {
    margin-left: 8px;
  }
}

/* Dealer CTA button */
.header .cusstom-button {
  background: linear-gradient(135deg, #22c1f1 0%, #0ea5e9 60%, #0284c7 100%);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(14,165,233,.28);
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}
.header .cusstom-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(14,165,233,.35);
}
.header .cusstom-button:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(14,165,233,.28);
}
.header .cusstom-button .reversed-link__text {
  display: inline !important;
}
.header .cusstom-button :is(.icon, img, svg) {
  display: none !important;
}
.header .cusstom-button::after {
  content: "→";
  font-weight: 800;
  margin-left: 2px;
  transform: translateX(0);
  transition: transform .14s ease;
}
.header .cusstom-button:hover::after {
  transform: translateX(4px);
}
@media (max-width: 360px) {
  .header .cusstom-button {
    padding: 8px 12px;
    gap: 8px;
  }
}

/* Account button */
.header .account-button {
  color: rgba(255,255,255,.85);
  padding: 6px 8px;
}
.header .account-button svg {
  opacity: .9;
}
.header__top .account-button {
  color: #111 !important;
}
.header__top .account-button:hover {
  color: #0ea5e9 !important;
}
.header__top .account-button svg, .header__top .account-button svg * {
  stroke: currentColor !important;
  fill: currentColor !important;
  opacity: 1 !important;
}
@media (min-width: 1024px) {
  .header__top .account-button .reversed-link__text {
    display: inline-block !important;
  }
}

/* ---------------- Search Forms ---------------- */
form[action="/search"] select, form[action="/search"] .search__category, form[action="/search"] .predictive-search__category, form[action="/search"] .category-select, form[action="/search"] [data-category], form[action="/search"] .search__filters {
  display: none !important;
}
form[action="/search"] .field, form[action="/search"] .search__input-wrapper {
  display: flex;
  align-items: center;
}
form[action="/search"] input[type="search"], form[action="/search"] input[name="q"] {
  width: 100%;
  border-radius: 999px !important;
  padding-left: 16px !important;
}
@media (max-width: 480px) {
  form[action="/search"] {
    max-width: 92vw;
    margin-inline: auto;
  }
  form[action="/search"] input[type="search"], form[action="/search"] input[name="q"] {
    font-size: 16px;
  }
}
.header form[action="/search"] :is(select, [data-category], [data-category-select], .select--categories, .predictive-search__category, .search__category, .category-select, .select__button) {
  display: none !important;
}
.header form[action="/search"] .field {
  padding-left: 12px !important;
}
.header__search .predictive-search__form, .header__search .field {
  min-height: 42px;
  border-radius: 999px !important;
}
.header__search input[type="search"] {
  padding-block: 10px !important;
}
.header__search .search__input, .header__search .search__input.field__input, .search-modal__form .field__input {
  height: 44px !important;
  font-size: 16px !important;
}
.header .search-modal__form, .header .sc-search-wrapper {
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}
.hide-hero-search .sc-hero-search, .template-search .sc-hero-search {
  display: none !important;
}
@media (max-width: 989px) {
  .hide-hero-search .sc-hero-search {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ---------------- Menus/Dropdowns ---------------- */
.header__submenu, .mega-menu__content, .mega-menu, .menu-dropdown, .menu-flyout {
  max-height: calc(100vh - 140px);
  overflow: auto;
  overscroll-behavior: contain;
}
.header__submenu .mega-menu__list, .mega-menu__content > .grid, .menu-dropdown .list-menu {
  max-height: inherit;
  overflow: auto;
}
.header__submenu, .mega-menu__content {
  scrollbar-width: thin;
}
.header__submenu::-webkit-scrollbar, .mega-menu__content::-webkit-scrollbar {
  width: 8px;
}
.header__submenu::-webkit-scrollbar-thumb, .mega-menu__content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.25);
  border-radius: 8px;
}

/* ---------------- Heroes/Banners/Slideshows ---------------- */
.slideshow-with-product__bg::after, .slideshow__image::after, .banner .media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.24) 40%, rgba(0,0,0,0) 70%);
}
.slideshow-with-product__buttons .button, .banner .button {
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  font-weight: 700;
}
@media (max-width: 768px) {
  .slideshow, .banner, .hero, .slideshow__slide {
    max-height: 56vh;
  }
  .slideshow__text-wrapper, .banner__content {
    padding: 12px 16px !important;
  }
}
@media (min-width: 990px) {
  .template-collection .collection-hero .hero__media, .template-collection .collection-hero .collection-hero__image {
    max-height: 56vh;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .collection-hero .hero__media, .collection-hero .collection-hero__image {
    max-height: 46vh;
    object-fit: cover;
  }
}

/* ---------------- Brand Strip ---------------- */
.sc-brands {
  margin-top: 10px;
}
.sc-brands__track {
  gap: 18px;
  padding: 6px 4px 2px;
}
.sc-brands__logo {
  height: 52px;
  max-width: 150px;
  filter: none !important;
  opacity: 1 !important;
}
.sc-brands__link:hover .sc-brands__logo {
  filter: none;
  transform: translateY(-1px);
}
.sc-brands__link:focus-visible .sc-brands__logo {
  outline: 2px solid #0ea5e9;
  outline-offset: 3px;
  filter: none;
}
.sc-brands__viewport {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
}
@media (min-width: 990px) {
  .sc-brands__name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .sc-brands__logo {
    height: 46px;
  }
  .sc-brands__track {
    gap: 14px;
  }
}
/* Stretch mode if ≤10 logos */
.sc-brands__track:not(:has(> :nth-child(11))) {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 22px;
  overflow: visible;
}
.sc-brands__viewport:has(.sc-brands__track:not(:has(> :nth-child(11)))) {
  -webkit-mask-image: none;
  mask-image: none;
}
.sc-brands__viewport:has(.sc-brands__track:not(:has(> :nth-child(11)))) .sc-brands__btn {
  display: none !important;
}
.sc-brands__track:not(:has(> :nth-child(11))) .sc-brands__logo {
  height: var(--sc-logo-h, 56px);
  width: auto;
  max-width: 180px;
}
@media (max-width: 768px) {
  .sc-brands__track:not(:has(> :nth-child(11))) .sc-brands__logo {
    height: var(--sc-logo-h-m, 48px);
    max-width: 150px;
  }
}

/* ---------------- Product Highlights ---------------- */
.sc-ph__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sc-ph__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}
.sc-ph__viewall {
  white-space: nowrap;
}
.sc-ph__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(12px, 2vw, 24px);
}
.sc-ph__item {
  list-style: none;
}
.sc-ph__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.sc-ph__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
@media (prefers-reduced-motion: reduce) {
  .sc-ph__card, .sc-ph__card:hover {
    transition: none;
    transform: none;
  }
}
.sc-ph__media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 12px;
}
.sc-ph__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sc-ph__content {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 12px;
}
.sc-ph__name {
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc-ph__note {
  margin: 0;
  font-size: .9rem;
  color: rgba(0,0,0,.65);
}
.sc-ph__cta {
  align-self: flex-start;
  margin-top: .25rem;
}
@media (max-width: 989px) {
  .sc-ph__list {
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 10px 2px;
  }
  .sc-ph__item {
    scroll-snap-align: start;
  }
}

/* ---------------- Template: Search ---------------- */
body.template-search [is="sticky-header"], body.template-search .sticky-element {
  position: static !important;
  top: auto !important;
  transition: none !important;
}
body.template-search {
  overflow-anchor: none;
  scroll-behavior: auto !important;
}
body.template-search html {
  scroll-behavior: auto !important;
}
body.template-search .header__top .logo, body.template-search .header__top .logo img, body.template-search .header__top .header__heading-logo, body.template-search .header__top .header__heading-logo-wrapper img {
  max-height: var(--sc-logo-h-d-scrolled) !important;
}
@media (max-width: 1023.98px) {
  body.template-search .header__top .logo, body.template-search .header__top .logo img, body.template-search .header__top .header__heading-logo, body.template-search .header__top .header__heading-logo-wrapper img {
    max-height: var(--sc-logo-h-m-scrolled) !important;
  }
}
@media (min-width: 1024px) {
  body.search-template #FacetFiltersContainer .sticky-element {
    position: sticky;
    top: 8rem;
  }
}

/* ---------------- Template: Collection ---------------- */
.template-collection .collection-hero, .template-collection .collection-hero__description {
  display: flow-root;
}
.template-collection .collection-hero::after {
  content: "";
  display: block;
  clear: both;
}
.template-collection .collection-hero + * {
  clear: both;
  margin-top: 16px;
}
.template-collection .collection-hero__title {
  overflow: visible !important;
  white-space: normal !important;
  text-wrap: balance;
}
.template-collection .collection-hero__title [data-motion] {
  display: inline !important;
}
.template-collection .collection-hero__info {
  position: relative;
  z-index: 3;
}
.template-collection .collection-hero__info [data-motion] {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}
.template-collection .collection-hero {
  margin-bottom: .25rem !important;
  padding-bottom: .5rem !important;
}
.template-collection .collection.section--padding {
  padding-top: .75rem !important;
}
.template-collection .collection__toolbar, .template-collection .facets-container {
  position: relative;
  z-index: 10;
  margin-top: .75rem;
}
.template-collection .collection > .sticky-element {
  top: var(--sc-header-offset) !important;
}
@media (max-width: 768px) {
  .template-collection .collection-hero__description {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 6;
    overflow: hidden !important;
    position: relative;
    margin-bottom: .5rem;
  }
  .template-collection .collection-hero__info {
    padding-bottom: 16px;
  }
  .template-collection #MainContent > .shopify-section:first-of-type {
    margin-top: 12px;
    clear: both;
  }
  .template-collection .collection-hero__description::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 2.5rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
  }
  .template-collection .collection-hero__readmore, .template-collection .read-more, .template-collection .read-more__toggle {
    display: inline-flex !important;
    margin-top: .4rem;
    gap: .4rem;
    align-items: center;
    padding: .45rem .7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    background: #eef2ff;
  }
  .template-collection .collection-hero__description.is-expanded {
    max-height: none;
  }
  .template-collection .collection-hero__description.is-expanded::after {
    display: none;
  }
}

/* Collection Categories Slider */
.section-collection-list-slider {
  --sc-card-w: 13rem;         /* desktop slide width */
  --sc-card-w-m: 10.75rem;    /* mobile slide width */
  --sc-thumb: 164px;          /* circle image */
  --sc-title-lines: 2;        /* clamp lines */
  --sc-title-lh: 1.25;
  --sc-card-bg: rgba(8,10,16,.9);  /* dark tile */
  --sc-title-color: #fff;
  --sc-gap: 14px;             /* slide gap */
}
.section-collection-list-slider .swiper-slide, .section-collection-list-slider .slide {
  width: var(--sc-card-w) !important;
}
@media (max-width: 767px) {
  .section-collection-list-slider .swiper-slide, .section-collection-list-slider .slide {
    width: var(--sc-card-w-m) !important;
  }
}
.section-collection-list-slider .collection-list__items, .section-collection-list-slider .swiper-wrapper {
  justify-content: center !important;
  gap: var(--sc-gap) !important;
  align-items: stretch !important;
}
.section-collection-list-slider .swiper-slide {
  margin-right: 0 !important;
}
.section-collection-list-slider .swiper-wrapper {
  align-items: stretch;
}
.section-collection-list-slider .swiper-slide > * {
  height: 100%;
}
.section-collection-list-slider .collection-card {
  background: var(--sc-card-bg) !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
  height: 100%;
  padding: 1rem .95rem !important;
}
.section-collection-list-slider .collection-card__wrapper {
  display: grid !important;
  grid-template-rows: calc(var(--sc-thumb) + 14px) minmax(calc(1em * var(--sc-title-lh) * var(--sc-title-lines)), auto) auto;
  justify-items: center;
  align-content: start;
  gap: .65rem;
}
.section-collection-list-slider .collection-card__image {
  width: var(--sc-thumb) !important;
  height: var(--sc-thumb) !important;
  padding: 7px;
  border-radius: 999px !important;
  background: #0e1117;
  overflow: hidden;
  place-self: center;
}
.section-collection-list-slider .collection-card__image > * {
  width: 100%;
  height: 100%;
  display: block;
}
.section-collection-list-slider .collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-collection-list-slider .collection-card__inner {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: start;
  width: 100%;
  pointer-events: none;
}
.section-collection-list-slider .collection-card__title {
  color: var(--sc-title-color) !important;
  font-weight: 700 !important;
  text-align: center;
  line-height: var(--sc-title-lh);
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: manual;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--sc-title-lines);
  overflow: hidden;
  margin: 0 auto;
}
.section-collection-list-slider .collection-card__btn {
  justify-self: end;
  align-self: end;
  margin-top: auto !important;
}
.section-collection-list-slider .collection-card *:where(.underline, .link) {
  text-decoration: none !important;
}
.section-collection-list-slider .btn-hover-wrapper::before, .section-collection-list-slider .btn-hover-wrapper::after, .section-collection-list-slider .collection-card::before, .section-collection-list-slider .collection-card::after, .section-collection-list-slider .collection-card__btn::before, .section-collection-list-slider .collection-card__btn::after {
  content: none !important;
  display: none !important;
}
.section-collection-list-slider .collection-card__btn {
  box-shadow: none !important;
}
.section-collection-list-slider .section-header h2, .section-collection-list-slider .title-wrapper .h2, .section-collection-list-slider h2 {
  font-size: clamp(1.35rem, 2.2vw + 0.75rem, 2.05rem) !important;
  font-weight: 800 !important;
  letter-spacing: .015em !important;
}
.section-collection-list-slider .section-header::after {
  width: clamp(90px, 12vw, 140px);
  height: 2px;
}
@media (max-width: 767px) {
  .section-collection-list-slider .collection-title:nth-child(2) {
    font-size: .90rem !important;
    line-height: 1.22 !important;
    white-space: normal !important;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(2 * 1.22 * 1em) !important;
  }
}

/* Collections Index (List-Collections) */
.list-collections-template .grid-list, .list-collections-template .grid, .list-collections-template .f-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 28px !important;
}
.list-collections-template .grid-list .card, .list-collections-template .grid-list .collection-card, .list-collections-template .grid-list .grid-item {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  border-radius: 14px;
  padding: 0 !important;
}
.list-collections-template .card__media, .list-collections-template .collection-card__media, .list-collections-template .media, .list-collections-template .card .media--adapt {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}
.list-collections-template .card__media img, .list-collections-template .collection-card__media img, .list-collections-template .media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.list-collections-template .card__content, .list-collections-template .collection-card__content, .list-collections-template .grid-item .card__information {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 4px 0 !important;
  margin-top: 8px !important;
}
.list-collections-template .card__heading, .list-collections-template .collection-card__title, .list-collections-template .grid-item .card__heading {
  flex: 1 1 auto !important;
  margin: 0 !important;
  line-height: 1.25 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  min-height: 2.6em;
}
.list-collections-template .card__content .icon-button, .list-collections-template .collection-card__button, .list-collections-template .grid-item .card__badge, .list-collections-template .grid-item .card__link--arrow {
  flex: 0 0 auto !important;
  margin-left: auto !important;
}
.list-collections-template [style*="writing-mode"], .list-collections-template .vertical, .list-collections-template .rotate-90 {
  writing-mode: horizontal-tb !important;
  transform: none !important;
}
.list-collections-template .grid-list .block {
  padding: 0 !important;
}

/* Facet Drawer (Mobile Filters) */
@media (max-width: 989px) {
  .collection-template .z-9 {
    z-index: 1 !important;
  }
  .collection-template .collection__toolbar {
    position: static !important;
    z-index: 1 !important;
  }
  .collection-template .facets-drawer, .collection-template .drawer, .collection-template [data-drawer] {
    z-index: 1000 !important;
  }
  body.drawer-open .collection__toolbar, body.facets-open .collection__toolbar, body.modal-open .collection__toolbar {
    display: none !important;
  }
}
.facet-drawer .reversed-link, .drawer .reversed-link {
  color: var(--color-foreground, #111) !important;
  text-decoration: none !important;
}
.facet-drawer .reversed-link__text, .drawer .reversed-link__text {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  color: inherit !important;
  display: inline !important;
  white-space: normal !important;
  overflow: visible !important;
}
.facet-drawer .count, .drawer .count {
  color: var(--color-foreground, #111) !important;
  opacity: .7;
}
.facet-drawer .flex.items-center.gap-2, .drawer .flex.items-center.gap-2 {
  align-items: center !important;
}
.facet-drawer .accordion-details__content .grid.gap-3 li, .drawer .accordion-details__content .grid.gap-3 li {
  display: flex !important;
}
.drawer__inner[class^="color-scheme-"] .reversed-link__text, .drawer__inner[class*=" color-scheme-"] .reversed-link__text, .facet-drawer .reversed-link__text, .drawer .reversed-link__text {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--color-foreground, #111) !important;
  display: inline !important;
  white-space: normal !important;
  overflow: visible !important;
}
.drawer__inner label.reversed-link, .drawer__inner .text-subtext {
  color: var(--color-foreground, #111) !important;
  -webkit-text-fill-color: var(--color-foreground, #111) !important;
  text-decoration: none !important;
}
.drawer__inner[class^="color-scheme-"] .count, .drawer__inner[class*=" color-scheme-"] .count {
  color: var(--color-foreground, #111) !important;
  opacity: .7;
}
.facet-drawer .drawer__inner, .drawer .drawer__inner {
  position: relative;
  z-index: 1001 !important;
}
.fixed-overlay {
  z-index: 1000 !important;
}
/* ===== SC header: force single-row grid + inline search icon (phones) ===== */
@media (max-width: 749px){
  /* 1) Replace Dawn’s 2-row template with a single row */
  .header__top{
    /* areas: [hamburger] [logo] [icons] — no "search" row */
    --header-grid-template: "icons-left logo icons" / 44px 1fr auto !important;
  }
  .header__top.page-width{
    display: grid !important;
    align-items: center !important;
    gap: .5rem !important;
  }

  /* 2) Keep logo centered and visible */
  .header__logo{
    justify-self: center !important;
    min-width: 120px !important;
  }

  /* 3) Un-pin the search from the named grid area and make it an icon */
  .header__search{
    grid-area: auto !important;       /* <— breaks the link to "search" row */
    order: 3 !important;              /* sits with right icons */
    display: inline-flex !important;
    margin: 0 !important; padding: 0 !important;
    width: auto !important; height: auto !important;
    opacity: 1 !important; visibility: visible !important;
  }

  /* icon container sizing */
  .header__search .search__field{
    position: relative !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 32px !important; height: 32px !important; min-height: 32px !important;
    margin: 0 !important; padding: 0 !important; background: transparent !important; border: 0 !important;
  }

  /* hide the text field until the overlay is opened */
  .header__search .search__input,
  .header__search .search__reset,
  .header__search label{ display: none !important; }

  /* make the magnifier a normal inline button (Dawn makes it absolute) */
  .header__search .search__field .search__icon-search,
  .header__search .search__field .btn--inherit.search__field-icon{
    position: static !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    width: 100% !important; height: 100% !important; margin: 0 !important; padding: 0 !important;
    inset: auto !important; transform: none !important;
  }
  .header__search .search__icon-search svg{ width: 24px !important; height: 24px !important; }

  /* 4) When search is opened (theme toggles a class), show the full input as an overlay */
  body.is-search-open .header__search{
    position: fixed !important; left: 0; right: 0; top: 56px !important; /* adjust if your top bar is taller */
    z-index: 60 !important; display: flex !important; justify-content: center !important;
    padding: 12px !important; background: #fff !important; box-shadow: 0 4px 12px rgba(0,0,0,.1) !important;
  }
  body.is-search-open .header__search .search__field{ width: 100% !important; max-width: 400px !important; height: auto !important; }
  body.is-search-open .header__search .search__input{
    display: block !important; width: 100% !important;
    padding: 12px 48px 12px 16px !important; border-radius: 24px !important; font-size: 16px !important;
    border: 1px solid #ddd !important;
  }
  body.is-search-open .header__search .search__icon-search{
    position: absolute !important; right: 16px !important; top: 50% !important; transform: translateY(-50%) !important;
  }
}
/* ——— SC header: pin search icon into the right cluster (phones) ——— */
@media (max-width: 749px){
  /* Force the header into a single row (you already have this; keep it) */
  .header__top{
    --header-grid-template: "icons-left logo icons" / 44px 1fr auto !important;
  }

  /* Hard-place the search block in col 3 / row 1 and align it right */
  .header__search{
    grid-area: auto !important;         /* cancel named area */
    grid-column: 3 !important;          /* ← column with account/cart */
    grid-row: 1 !important;             /* ← first row with logo/icons */
    justify-self: end !important;       /* hug the right edge */
    align-self: center !important;
    display: inline-flex !important;
    width: auto !important; height: auto !important;
    margin: 0 !important; padding: 0 !important;
  }

  /* Keep it looking/behaving like a simple icon */
  .header__search .search__input,
  .header__search .search__reset,
  .header__search label{ display:none !important; }

  .header__search .search__field{
    display:flex !important; align-items:center !important; justify-content:center !important;
    width:32px !important; height:32px !important; min-height:32px !important;
    margin:0 !important; padding:0 !important; background:transparent !important; border:0 !important;
  }
  .header__search .search__field .search__icon-search{
    position:static !important; width:100% !important; height:100% !important;
  }
  .header__search .search__icon-search svg{ width:24px !important; height:24px !important; }
}
/* --- SC: make the search icon visible, sized, and inline with right icons (phones) --- */
@media (max-width: 749px){
  /* keep the header in one row (you already do this, keep it) */
  .header__top{
    --header-grid-template: "icons-left logo icons" / 44px 1fr auto !important;
  }

  /* put the search block into col 3 / row 1 with account/cart */
  .header__search{
    grid-area: auto !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: inline-flex !important;
    width: auto !important; height: auto !important;
    margin: 0 !important; padding: 0 !important;
    color: rgba(var(--color-foreground), 1) !important; /* ensures 'currentColor' is visible */
  }

  /* ensure the icon has a box and is not clipped */
  .header__search .search__field{
    position: relative !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 32px !important; height: 32px !important; min-height: 32px !important;
    margin: 0 !important; padding: 0 !important;
    background: transparent !important; border: 0 !important;
    overflow: visible !important;
  }

  /* make the magnifier button a simple square; guarantee visibility */
  .header__search .search__field .search__icon-search,
  .header__search .search__field .btn--inherit.search__field-icon{
    position: static !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    width: 100% !important; height: 100% !important;
    margin: 0 !important; padding: 0 !important; line-height: 1 !important;
    opacity: 1 !important; visibility: visible !important;
    inset: auto !important; transform: none !important;
  }

  /* explicitly size the SVG and make sure it draws using the current text color */
  .header__search .search__icon-search svg{
    display: block !important;
    width: 22px !important; height: 22px !important;
    stroke: currentColor !important; /* your SVG uses stroke; ensure it isn’t transparent */
    fill: none !important;
  }

  /* hide the input & extras until opened (prevents layout steal) */
  .header__search .search__input,
  .header__search .search__reset,
  .header__search label{ display: none !important; }
}
/* === SC mobile header: make search its own column === */
@media (max-width: 749px){

  /* One-row grid with FOUR columns:
     [hamburger] [logo] [search] [icons-right] */
  .header__top{
    --header-grid-template: "icons-left logo search icons" / 44px 1fr 32px auto !important;
    display: grid !important;
    align-items: center !important;
    column-gap: .6rem !important;
  }

  /* place the groups explicitly */
  .header__icons--left  { grid-area: icons-left !important; }
  .header__logo         { grid-area: logo !important; justify-self: center !important; }
  .header__search       { grid-area: search !important; justify-self: start !important; align-self: center !important; }
  .header__icons--right { grid-area: icons !important;  justify-self: end !important; display: flex !important; gap: 8px !important; }

  /* make the search behave like a simple icon until opened */
  .header__search{ display: inline-flex !important; width: auto !important; height: auto !important; margin: 0 !important; padding: 0 !important; }
  .header__search .search__field{
    position: relative !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 32px !important; height: 32px !important; min-height: 32px !important;
    margin: 0 !important; padding: 0 !important; overflow: visible !important; border: 0 !important; background: transparent !important;
  }
  .header__search .search__icon-search{ position: static !important; width: 100% !important; height: 100% !important; display: inline-flex !important; }
  .header__search .search__icon-search svg{ width: 22px !important; height: 22px !important; display: block !important; }
  .header__search .search__input,
  .header__search .search__reset,
  .header__search label{ display: none !important; } /* keep field collapsed */

  /* overlay when opened (keep what you already had if this duplicates it) */
  body.is-search-open .header__search{
    position: fixed !important; left: 0; right: 0; top: 56px; z-index: 60 !important;
    display: flex !important; justify-content: center !important; padding: 12px !important;
    background: #fff !important; box-shadow: 0 4px 12px rgba(0,0,0,.1) !important;
  }
  body.is-search-open .header__search .search__field{ width: 100% !important; max-width: 400px !important; height: auto !important; }
  body.is-search-open .header__search .search__input{
    display: block !important; width: 100% !important;
    padding: 12px 48px 12px 16px !important; border-radius: 24px !important; font-size: 16px !important; border: 1px solid #ddd !important;
  }
  body.is-search-open .header__search .search__icon-search{
    position: absolute !important; right: 16px !important; top: 50% !important; transform: translateY(-50%) !important;
  }
}
/* Collapse search input until tapped */
@media (max-width: 1023px) {
  .header__top {
    --section-padding-top: .6rem !important;
    --section-padding-bottom: .6rem !important;
    gap: .5rem;
  }
  .header__logo .logo { max-height: 26px; height: 26px; width: auto; }

  .header__search .search__form,
  .header__search .search__field { width: 100%; }

  .header__search .search__input {
    width: 0;
    opacity: 0;
    padding: 0 !important;
    border: 0 !important;
    pointer-events: none;
    transition: width .18s ease, opacity .18s ease;
  }

  .header__search .search__icon-search {
    position: static !important;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .header__search .search__reset { display: none !important; }

  body.is-search-open .header__search .search__input {
    width: 100%;
    opacity: 1;
    padding: 10px 44px 10px 12px !important;
    border: var(--input-border, 1px solid rgba(0,0,0,.12)) !important;
    pointer-events: auto;
  }

  body.is-search-open .header__search .header__search-close {
    display: inline-flex !important;
  }

  .header__icon--search { display: none !important; }

  header.header { position: relative; z-index: 100; }
}

/* Position magnifying glass on top row; expand search on open (section-scoped for specificity) */
@media (max-width: 1023px) {
  #shopify-section-{{ section.id }} .header__top {
    --section-padding-top: .6rem !important;
    --section-padding-bottom: .6rem !important;
    display: grid !important;
    grid-template-columns: 44px 1fr 32px auto !important; /* Menu (44px), logo (flex), search icon (32px), right icons (auto) */
    grid-template-rows: auto !important;
    grid-template-areas:
      "icons-left logo search-trigger icons"
      "search search search search" !important;
    align-items: center;
    column-gap: .8rem;
    row-gap: .5rem;
  }

  #shopify-section-{{ section.id }} .header__icons--left { grid-area: icons-left; } /* Menu icon */

  #shopify-section-{{ section.id }} .header__logo { grid-area: logo; }
  #shopify-section-{{ section.id }} .header__logo .logo { max-height: 26px; height: 26px; width: auto; }

  #shopify-section-{{ section.id }} .header__icons--right { grid-area: icons; } /* Account and cart */
  #shopify-section-{{ section.id }} .header__icons--right .reversed-link__text { display: none !important; } /* Hide text labels on mobile */

  #shopify-section-{{ section.id }} .header__search { grid-area: search-trigger; justify-self: center; } /* Icon in top row; adjust justify-self to start/center/end if needed */

  body.is-search-open #shopify-section-{{ section.id }} .header__search { grid-area: search; } /* Expand to full second row when open */

  #shopify-section-{{ section.id }} .header__search .search__icon-search {
    position: static !important;
    display: inline-flex !important;
    width: 32px; height: 32px; /* Tap target size */
    opacity: 1 !important; visibility: visible !important;
    pointer-events: auto !important;
  }

  #shopify-section-{{ section.id }} .header__search { margin-left: .25rem; } /* Fine-tune positioning if needed */
}
/* --- Slideshow: keep it compact on phones --- */
@media (max-width: 749px) {
  /* 1) Force the whole slider stack to a fixed viewport height */
  .slideshow,
  .slideshow .swiper,
  .slideshow .swiper-wrapper,
  .slideshow .swiper-slide,
  .slideshow .banner,
  .slideshow .banner__media,
  .slideshow .media,
  .banner--slideshow,
  .banner--slideshow .banner__media {
    height: 28vh !important;          /* try 28–34vh to taste */
    min-height: 28vh !important;
    max-height: 28vh !important;
  }

  /* 2) Make the image/video actually fill that box */
  .slideshow .banner__media img,
  .slideshow .banner__media video,
  .slideshow .media img,
  .slideshow .media video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* 3) Trim section padding around the slideshow (often what makes it “feel” huge) */
  .shopify-section:has(.slideshow) .section--padding,
  .slideshow.section--padding,
  .banner--slideshow.section--padding {
    --section-padding-top: 8px !important;
    --section-padding-bottom: 8px !important;
    padding-block: 8px !important;
  }

  /* 4) Keep captions and CTA inside without adding height */
  .slideshow .banner__content,
  .slideshow .slideshow__text,
  .banner--slideshow .banner__content {
    max-height: 100% !important;
    padding: 0 1rem !important;
  }

  /* 5) Pagination bullets / arrows shouldn’t push the height */
  .slideshow .swiper-pagination,
  .slideshow .swiper-button-next,
  .slideshow .swiper-button-prev {
    bottom: 8px !important;
    top: auto !important;
  }

  /* 6) Kill stray margins that can add up */
  .slideshow,
  .banner--slideshow {
    margin: 0 !important;
  }
}
/* Collection banner: always show description on desktop */
@media (min-width: 990px){
  .collection-hero__description,
  .sc-desc .sc-desc__content{
    display:block !important;
    max-height:none !important;
    overflow:visible !important;
    -webkit-line-clamp:unset !important;
    opacity:1 !important;
    visibility:visible !important;
  }
  .sc-desc .sc-desc__toggle{ display:none !important; }
}/* Show collection description on desktop if the in-banner version isn't printed */
@media (min-width: 769px){
  /* allow the mobile fallback block to render on desktop */
  .sc-desc-mobile-only{
    display:block;
    max-width: min(1700px, 100vw);
    margin: .5rem auto 1.25rem;
  }
  .sc-desc-mobile-only .sc-desc__content{
    display:block;            /* not clamped on desktop */
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .sc-desc-mobile-only .sc-desc__toggle{ display:none; }
}
/* --- MOBILE BLEED / OVERLAP HOTFIX --- */
.hero{ overflow:hidden; }                      /* clamp the glow so it can’t widen the page */

.hero-panel{ position:relative; z-index:1; }   /* keep hero above following sections */
section.page-section{ position:relative; z-index:0; }

/* Mobile tweaks */
@media (max-width:960px){
  /* the CTA is no longer absolute on mobile, so reduce the extra bottom padding */
  .hero-panel{ padding-bottom:28px; }

  /* trim the large blurred background glows on small screens */
  .hero::before,
  .hero::after{ display:none; }

  /* Safari/iOS paints can jump with content-visibility; disable it on small screens */
  section.page-section{
    content-visibility:visible;
    contain-intrinsic-size:auto;
  }
}
