/** Shopify CDN: Minification failed

Line 1277:14 Expected identifier but found whitespace
Line 1277:43 Unexpected ";"

**/
/* ============================================
   Swipeable product image gallery — COLLECTION + PRODUCT
   pages only. Homepage and other templates keep the theme's
   default hover-swap behaviour.
   ============================================ */

/* Applies on collection, homepage (index), and product page (recs) */
.has-pgi-swiper .product-item__bg,
.has-pgi-swiper .product-item__bg__under {
  display: none;
}

.pgi-swiper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.pgi-swiper__track {
  flex: 1;
  min-height: 0;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.pgi-swiper__track::-webkit-scrollbar {
  display: none;
}

.pgi-swiper__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  height: 100%;
}

.pgi-swiper__slide .image-wrapper {
  height: 100% !important;
  padding-top: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.pgi-swiper__slide .image-wrapper img,
.pgi-swiper__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Desktop-only arrow buttons ---------- */
.pgi-swiper__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  color: #000;
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 3;
  box-shadow: none;
}

.pgi-swiper__arrow:hover {
  color: #555;
}

.pgi-swiper__arrow--prev { left: 10px; }
.pgi-swiper__arrow--next { right: 10px; }

.product-item:hover .pgi-swiper__arrow,
.pgi-swiper:hover .pgi-swiper__arrow {
  opacity: 1;
}

@media (max-width: 767px) {
  .pgi-swiper__arrow { display: none; }
}

/* Progress line — pinned to the very bottom edge of the image */
.pgi-swiper__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  padding: 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.pgi-swiper__progress-track {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
}

.pgi-swiper__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1a1a1a;
  transition: left 0.15s ease-out;
  will-change: left;
}

/* Title and price both left-aligned everywhere product cards render */
.product-item__title-link,
.product-item__title,
.product-item__price,
.product-item__price__holder,
[data-product-information],
.product-information {
  text-align: left !important;
}

/* ============================================
   Product card title split — first word bold black, rest gray.
   Applies everywhere the split spans render (collection,
   homepage featured collections, recommendations, search).
   ============================================ */

/* ============================================
   Search popdown — luxury restyle
   ============================================ */
.search-popdown {
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
}

.search-popdown__header {
  background: #fff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.search-popdown__form input {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #111 !important;
}

.search-popdown__form input::placeholder {
  color: #bbb !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

.search-popdown__form__button {
  color: #111 !important;
  opacity: 0.4;
}

.search-popdown__close__button {
  color: #111 !important;
  opacity: 0.4;
}

.search-popdown__close__button:hover {
  opacity: 1;
}

/* Results area */
.search__results__heading {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #888 !important;
  margin-bottom: 12px !important;
}

.search__results__link {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #111 !important;
  text-decoration: none !important;
  padding: 8px 0 !important;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.search__results__link:hover {
  color: #888 !important;
}

/* Product results in search */
.search__results .product-item__title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.search__results .product-item__price {
  font-size: 11px !important;
}

/* Search results column layout */
.search__results__column {
  padding: 20px 0 !important;
}

.search__results__products__list {
  gap: 12px !important;
}

@media (max-width: 749px) {
  .search-popdown.is-visible {
    max-height: 100vh !important;
    max-height: 100dvh !important;
  }

  .search-popdown__form input {
    font-size: 13px !important;
  }

  .search__results__column {
    padding: 16px 0 !important;
  }
}

/* ============================================
   Search results page — luxury restyle
   ============================================ */
.search-page {
  --PT: 20px !important;
}

.search-outer {
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.search-form {
  display: flex;
  gap: 0;
  width: 100%;
}

.search-box {
  flex: 1;
  height: 48px !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  padding: 0 16px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #111 !important;
  background: #fff !important;
  -webkit-appearance: none;
}

.search-box::placeholder {
  color: #bbb !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.search-box:focus {
  border-color: #111 !important;
  outline: none !important;
}

.search-submit {
  flex: 0 0 auto;
  height: 48px !important;
  padding: 0 24px !important;
  border-radius: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
}

.search-submit:hover {
  background: #333 !important;
}

.search__caption {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #888 !important;
  margin-bottom: 24px !important;
}

.search__caption .strong {
  color: #111 !important;
  font-weight: 600 !important;
}

/* Search results grid matches collection grid */
.search-page .product-grid-outer {
  padding: 0 20px;
}

.search-page .product-grid {
  gap: 2px !important;
}

.search-page .product-item__image {
  border-bottom: none;
}

/* Filters on search page */
.search-page .collection__nav {
  padding: 0 20px;
  margin-bottom: 16px;
}

.search-page .popout__toggle {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

/* Non-product results (pages, articles) */
.search-page .search-result {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.search-page .search-result__title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #111;
}

.search-page .search-result__description {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

@media (max-width: 749px) {
  .search-outer {
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .search-box {
    height: 44px !important;
    font-size: 12px !important;
  }

  .search-submit {
    height: 44px !important;
    padding: 0 16px !important;
    font-size: 10px !important;
  }

  .search-page .product-grid-outer {
    padding: 0 4px;
  }
}

/* ============================================
   Footer — Figma redesign
   White bg, 6-col grid, luxury typography
   ============================================ */
.site-footer-wrapper {
  background: #fff !important;
  --text: #111 !important;
  --text-a35: rgba(0,0,0,0.35) !important;
  --text-a75: rgba(0,0,0,0.75) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 40px 0 !important;
}

/* Footer blocks grid */
.footer__blocks {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px 40px;
  align-items: start;
}

/* Block headings */
.footer__block__title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #111 !important;
  margin: 0 0 18px !important;
}
@media (max-width: 749px) {
  .footer__block__title {
    font-size: 14px !important;
    margin: 0 0 14px !important;
  }
}

/* Link lists */
.footer__quicklinks {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer__quicklinks li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer__quicklinks a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #111 !important;
  text-decoration: none !important;
  line-height: 2 !important;
  display: block;
  transition: color 0.15s ease;
}

.footer__quicklinks a:hover {
  color: #888 !important;
}

/* Social block — hide the title since logo replaces it */
.footer__block--social > .footer__block__title {
  display: none !important;
}

.footer__block--social .social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0 !important;
  margin: 8px 0 20px !important;
}

.footer__block--social .social a {
  color: #111 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__block--social .social .icon {
  width: 20px !important;
  height: 20px !important;
}

.footer__block--social .social a:hover {
  opacity: 0.6;
}

/* Social text (support emails) */
.footer__social__text,
.footer__block--text .rte {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  line-height: 1.8 !important;
  color: #111 !important;
}

.footer__social__text a,
.footer__block--text .rte a {
  font-weight: 600 !important;
  color: #111 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em;
}

.footer__social__text a:hover,
.footer__block--text .rte a:hover {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

/* ============================================
   Newsletter block — matches Figma exactly
   Key: .input-group is flex ROW by default (input + button side-by-side).
   We force it to flex COLUMN so input is on top, button below.
   ============================================ */
.footer__block--newsletter {
  min-width: 260px;
}

.footer__newsletter__wrapper {
  max-width: 100% !important;
}

/* Heading — same as other footer column headings */
.footer__block--newsletter .footer__block__title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #111 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  line-height: 1.25 !important;
}
@media (max-width: 749px) {
  .footer__block--newsletter .footer__block__title {
    font-size: 14px !important;
    margin: 0 0 14px !important;
  }
}

/* Description text */
.footer__block--newsletter .footer__newsletter__text {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  color: #888 !important;
  line-height: 1.5 !important;
  margin: 0 0 12px !important;
}

/* Input group — force vertical stack */
.footer__block--newsletter .newsletter-form .input-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Email input — full width with visible border */
.footer__block--newsletter .input-group .input-group__field {
  flex: none !important;
  width: 100% !important;
  height: 48px !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 0 !important;
  padding: 0 14px !important;
  margin: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  color: #111 !important;
  background: #fff !important;
  outline: none !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
}

.footer__block--newsletter .input-group__field::placeholder {
  color: #bbb !important;
  -webkit-text-fill-color: #bbb !important;
}

.footer__block--newsletter .input-group__field:focus {
  border-color: #111 !important;
}

/* JOIN button — full width red below input */
.footer__block--newsletter .input-group .input-group__btn,
.footer__block--newsletter .input-group .newsletter__submit {
  flex: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  height: 48px !important;
  background: #A60B00 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 8px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  cursor: pointer !important;
  transition: background 0.15s ease;
  box-sizing: border-box !important;
}

.footer__block--newsletter .input-group .input-group__btn:hover,
.footer__block--newsletter .input-group .newsletter__submit:hover {
  background: #8a0900 !important;
}

/* Form legal / hCaptcha text */
.footer__block--newsletter .form__legal {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 9px !important;
  color: #999 !important;
  line-height: 1.4 !important;
  margin: 8px 0 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

/* Success/error messages */
.footer__block--newsletter .newsletter__message {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  margin: 0 0 8px !important;
}

/* Additional RTE text below form (SMS opt-in etc) */
.footer__newsletter__wrapper > .rte:last-child,
.footer__block--newsletter .footer__newsletter__wrapper > div:last-child .rte {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 10px !important;
  color: #666 !important;
  line-height: 1.5 !important;
  margin-top: 16px !important;
}

.footer__newsletter__wrapper .rte strong {
  font-weight: 700;
  color: #111;
}

.footer__newsletter__wrapper .rte a {
  color: #111 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hide the separate logo wrapper — logo is inside social block */
.footer__logo__wrapper {
  display: none !important;
}

/* Footer logo inside social block */
.footer__brand-logo {
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__brand-logo .image-wrapper {
  height: auto !important;
  padding: 0 !important;
}

.footer__brand-logo img {
  width: auto !important;
  height: auto !important;
  max-width: 180px;
  position: static !important;
}

/* Footer bottom bar */
.footer__bottom {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 !important;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.footer__bottom__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Copyright links */
.footer__copyright {
  display: flex !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer__copyright a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #111 !important;
  text-decoration: none !important;
}

.footer__copyright a:hover {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

/* Payment icons */
.footer__payment {
  display: flex !important;
  gap: 6px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: center;
}

.footer__payment .payment-icon {
  height: 24px !important;
  width: auto !important;
}

/* Localization / currency selector */
.footer__bottom .popout__toggle {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #111 !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  padding: 8px 14px !important;
  border-radius: 0 !important;
}

/* Mobile footer */
@media (max-width: 749px) {
  .site-footer {
    padding: 30px 16px 0 !important;
  }

  .footer__blocks {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .footer__block--newsletter {
    grid-column: 1 / -1;
  }

  .footer__block--social {
    grid-column: 1 / -1;
  }

  .footer__block__title {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }

  .footer__quicklinks a {
    font-size: 11px !important;
    line-height: 1.8 !important;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0 !important;
    margin-top: 24px;
  }

  .footer__copyright {
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .footer__payment {
    flex-wrap: wrap;
  }
}

/* Hide variant swatches/sizes below product cards */
.product-item__sizes-mob,
.product-item__swatched__holder {
  display: none !important;
}

.product-item__title-first {
  display: inline;
  font-weight: 500;
  color: #111;
  text-transform: uppercase;
}

.product-item__title-rest {
  display: inline;
  font-weight: 500;
  font-size: 1em;
  color: #111;
  text-transform: uppercase;
}

/* Desktop: single line, one color, lighter weight, bigger */
@media (min-width: 750px) {
  .product-item__title {
    font-family: Inter, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111 !important;
  }

  .product-item__title-first {
    display: inline;
    font-weight: 500;
    color: #111;
  }

  .product-item__title-rest {
    display: inline;
    font-weight: 500;
    font-size: 1em;
    color: #111;
  }
}

/* ============================================
   Reels video slide (injected as 2nd slide in product gallery).
   Fills the slide area with same aspect ratio as other media.
   ============================================ */
.product__slide--reels {
  position: relative;
  width: 100%;
  aspect-ratio: var(--featured-media-aspect-ratio, 1);
  background: #000;
  overflow: hidden;
}
.product__slide--reels > .product__slide-reels-video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ============================================
   Product detail page — MOBILE: full-bleed image + progress line ON image
   ============================================ */
@media (max-width: 749px) {
  /* Full-screen-width images on mobile — escape the wrapper's side margin */
  .template-product .product__wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .template-product .product__wrapper .product__page,
  .template-product .product__wrapper__inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .template-product .product__content {
    padding-left: var(--outer) !important;
    padding-right: var(--outer) !important;
  }
  .template-product .product__images {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .product__images {
    position: relative;
  }

  /* Kill the "peek next slide" gap — each slide fills the full viewport */
  .template-product .product__images--no-thumbs .product__slides {
    margin: 0 !important;
    padding-left: 0 !important;
    scroll-padding: 0 !important;
    gap: 0 !important;
  }
  .template-product .product__images--no-thumbs .product__slide {
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    scroll-snap-align: start;
  }
  .template-product .product__images--no-thumbs .product__slides:after {
    display: none !important;
  }

  /* OPTION 2 — Cap image height at 72vh so product fits on screen with
     title + price visible above the fold. object-fit: cover keeps the
     visual impact; object-position: center top keeps the garment's
     subject (usually upper body) in frame. Horizontally centered.
     Broad selectors to catch both product__images--no-thumbs and
     --has-thumbs, plus any image wrapper class the media snippet uses. */
  html body.template-product .product__images,
  html body.template-product .product__images .product__slides,
  html body.template-product .product__images .product__slide,
  html body.template-product .product__images .product-single__photos,
  html body.template-product .product__images .flickity-viewport {
    max-height: 72vh !important;
    height: 72vh !important;
    min-height: 0 !important;
  }
  html body.template-product .product__images .product__slide,
  html body.template-product .product__images .product__slide > *,
  html body.template-product .product__images .product__slide .image-wrapper,
  html body.template-product .product__images .product__slide .image-wrapper img,
  html body.template-product .product__images .product__slide picture,
  html body.template-product .product__images .product__slide picture img,
  html body.template-product .product__images .product__slide img {
    width: 100% !important;
    height: 72vh !important;
    max-height: 72vh !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 auto !important;
    display: block !important;
  }
  /* Reels video slide also obeys the cap */
  html body.template-product .product__slide--reels,
  html body.template-product .product__slide--reels .product__slide-reels-video {
    height: 72vh !important;
    max-height: 72vh !important;
    aspect-ratio: auto !important;
  }

  /* Hide siblings inside .product__images that add height below the image,
     so .pdp-progress' bottom: 12px anchors to the image bottom, not below it */
  .template-product .product__images .product__thumbs,
  .template-product .product__images .product__thumbs-mobile,
  .template-product .product__images .product-single__view-in-space {
    display: none !important;
  }

  /* Progress line flush on the image bottom edge — BLACK */
  .pdp-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0;
    margin: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
  }

  .pdp-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #111;
    border-radius: 2px;
    transition: left 0.15s ease-out;
    will-change: left;
  }

  .product__images--has-thumbs .flickity-page-dots {
    display: none;
  }
}

@media (min-width: 750px) {
  .pdp-progress { display: none; }
}

/* ============================================
   Mobile product card layout — compact info, tight spacing
   Applies everywhere (collection, homepage, recommendations).
   Edge-to-edge grid is collection-only.
   ============================================ */
@media (max-width: 749px) {
  /* Edge-to-edge grid — collection page only */
  .template-collection .product-grid-outer {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .template-collection .product-grid {
    column-gap: 4px !important;
    row-gap: 14px !important;
    padding-top: 0;
    padding-left: 0;
  }

  .template-collection .product-item__image {
    border-bottom: none;
  }

  /* Compact info block — applies on all pages with product cards */
  [data-product-information],
  .product-information {
    padding: 6px 6px 6px !important;
    text-align: left !important;
  }

  .product-item__title-link,
  .product-item__title,
  .product-item__price,
  .product-item__price__holder {
    text-align: left !important;
  }

  .product-item__title {
    font-size: 11px;
    font-weight: 500 !important;
    color: #111 !important;
    line-height: 1.3 !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    letter-spacing: 0.02em;
  }

  .product-item__price__holder {
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-item__price {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
  }

  .product-item__price .new-price,
  .product-item__price .old-price,
  .product-item__price .sold-out {
    font-size: 11px;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-item__sizes-mob {
    display: none !important;
  }

  .product-item__swatched__holder {
    display: none !important;
  }

  .product-item__swatched__holder {
    margin-top: 4px;
  }

  .my-sale-banner {
    font-size: 0.75em;
    padding: 5px 6px;
  }
}

/* ============================================
   Anti-blink: hide elements that JS will relocate.
   They start invisible, JS moves them, then reveals.
   ============================================ */
.template-product .title-pd .favorite-button-wrapper {
  opacity: 0 !important;
  pointer-events: none;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.template-product .product__block.product__price__wrap {
  opacity: 0;
  transition: opacity 0.1s ease;
}

.template-product .title-pd .product__block.product__price__wrap {
  opacity: 1;
}

.template-product .product-upsell__title {
  opacity: 0;
  transition: opacity 0.1s ease;
}

.template-product .product-upsell__title[data-pgi-split-done] {
  opacity: 1;
}

.template-product .title-pd h1,
.template-product .title-pd h2 {
  transition: color 0.1s ease;
}

/* ============================================
   Product page — wishlist heart on the product image
   ============================================ */
.template-product .product__images {
  position: relative;
}

.template-product .favorite-button-wrapper.pgi-heart-on-image {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 5;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  margin: 0 !important;
  cursor: pointer;
}

.template-product .favorite-button-wrapper.pgi-heart-on-image rivo-favorite-button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-product .favorite-button-wrapper.pgi-heart-on-image rivo-favorite-button svg {
  width: 20px !important;
  height: 20px !important;
}

/* ============================================
   Product page — title first word bold, rest gray.
   JS (initPdpTitleSplit) wraps the first word in
   .pdp-title-first. The h2 inherits gray/light; the
   span overrides to bold/black. SEO unaffected — the
   <h2> still contains the full product title text.
   ============================================ */
.template-product .title-pd h1,
.template-product .title-pd h2 {
  color: #111 !important;
  font-weight: 500 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
}

@media (max-width: 460px) {
  .template-product .title-pd h1,
  .template-product .title-pd h2 {
    font-size: 20px !important;
  }
}

.template-product .title-pd .pdp-title-first {
  display: inline !important;
  color: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  margin-bottom: 0;
}

@media (max-width: 460px) {
  .template-product .title-pd .pdp-title-first {
    font-size: inherit !important;
  }
}

/* ============================================
   Product page — title row: [TITLE] ........ [$PRICE]
   JS (initProductTitlePriceRow) moves .product__block.product__price__wrap
   into .title-pd; CSS makes .title-pd a flex row so the title
   takes the left and the price hugs the right.
   ============================================ */
.template-product .title-pd {
  display: block !important;
  position: relative;
}

.template-product .title-pd > h1,
.template-product .title-pd > h2,
.template-product .title-pd > p {
  padding-right: 40px;
  margin: 0 !important;
}

/* Heart: absolute top-right of title area, vertically aligned with the
   FIRST LINE of the title (not the whole block). 0.6em ≈ half of the
   default line-height (1.2), so with translateY(-50%) the heart sits
   on the first line regardless of whether the title wraps to 2 rows. */
.template-product .title-pd .favorite-button-wrapper,
.template-product .product__icon__text .favorite-button-wrapper {
  position: absolute !important;
  top: 0.9em !important;
  transform: translateY(-50%) !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 50 !important;
  background: transparent !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.template-product .title-pd .favorite-button-wrapper *,
.template-product .product__icon__text .favorite-button-wrapper * {
  pointer-events: auto !important;
  cursor: pointer !important;
}
.template-product .title-pd rivo-favorite-button,
.template-product .product__icon__text rivo-favorite-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.template-product .title-pd rivo-favorite-button svg,
.template-product .product__icon__text rivo-favorite-button svg {
  pointer-events: none !important;
  width: 22px !important;
  height: 22px !important;
}
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  color: #111;
}

.template-product .title-pd .product__price * {
  font-family: Arial, Helvetica, sans-serif !important;
  text-transform: none !important;
}

/* The original (empty) price block slot left behind — hide it so
   there's no blank 16px gap where the price used to live. */
.template-product .product__block.product__features + .product__block:empty {
  display: none !important;
}

/* ============================================
   Product page — tight gap between title block and price.
   Title is rendered via a feature block (lookDescriptoin) containing
   .title-pd. Uses :has() to find that block and zero the margins
   on it, the next sibling, and the price block itself.
   ============================================ */
.template-product .product__block:has(.title-pd) {
  --block-padding-top: 0px !important;
  --block-padding-bottom: 0px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.template-product .product__block:has(.title-pd) + .product__block {
  --block-padding-top: 0px !important;
  margin-top: 0 !important;
}

.template-product .title-pd,
.template-product .title-pd h1,
.template-product .title-pd h2,
.template-product .title-pd p {
  margin-bottom: 0 !important;
}

.template-product .product__block.product__price__wrap {
  --block-padding-top: 0px !important;
  margin-top: 0 !important;
}

.template-product .product__price__wrap .product__price {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ============================================
   Product page — tighter margins around the product images.
   Reduce the outer padding so images hug the left edge of the page
   on desktop, and remove the bottom margin/gap that sits under
   the image stack on mobile.
   ============================================ */
.template-product .product__images {
  --gap: 6px;
}

@media (max-width: 749px) {
  .template-product .product__images {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 750px) {
  /* Narrow the outer gutter only inside the product wrapper so the
     image column sits closer to the viewport edge. */
  .template-product .product__wrapper .product__page {
    --outer: 12px;
  }
}

/* Kill the top spacing between breadcrumbs and the product image */
.template-product .section-breadcrumbs + .template-product-page,
.template-product .template-product-page {
  padding-top: 0 !important;
}

.template-product .section-breadcrumbs .breadcrumbs {
  margin-bottom: 2px !important;
}

.template-product .back-pd-btn {
  margin-top: 4px !important;
  margin-bottom: 8px !important;
}

/* ============================================
   "You might also like" cards — 2.2 cards per viewport on mobile
   (2 full cards + sliver of 3rd) so user can see there's more to swipe.
   ============================================ */
@media (max-width: 767px) {
  .template-product #product-recommendations.product-grid--mobile-slider .product-item,
  .template-product #product-recommendations .product-item,
  #product-recommendations.product-grid--mobile-slider .product-item {
    width: calc(100% / 2.5 - 6px) !important;
    min-width: calc(100% / 2.5 - 6px) !important;
    flex: 0 0 calc(100% / 2.5 - 6px) !important;
  }
}

/* Collapse all sources of top/bottom space around "YOU MIGHT ALSO LIKE".
   Hardcoded values beat any --PB variable weirdness. */
@media (max-width: 749px) {
  html body .related__wrapper,
  html body .related__wrapper.section-padding {
    padding-top: 4px !important;
    padding-bottom: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  html body .related__wrapper .related__products,
  html body .related__wrapper .tabs-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  html body .related__wrapper .tabs__head {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  html body .template-product-page.section-padding {
    padding-bottom: 8px !important;
  }
}
@media (min-width: 750px) {
  html body .related__wrapper,
  html body .related__wrapper.section-padding {
    padding-bottom: 40px !important;
    margin-bottom: 0 !important;
  }
  html body .related__wrapper .related__products,
  html body .related__wrapper .tabs-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Halve the gap between the "YOU MIGHT ALSO LIKE" tabs head and the
   product grid below it. Theme default is margin-bottom: 30px. */
.related__wrapper .related__products .tabs__head {
  margin-bottom: 10px !important;
}

/* Desktop PDP main image — Option C: cap max-width & center in its column.
   Keeps natural aspect ratio with generous whitespace gutters on both
   sides of the image (editorial / luxury). Only applies on desktop so the
   mobile full-bleed 65–72vh treatment remains untouched.                */
@media (min-width: 750px) {
  .template-product .product__slides,
  .template-product .product-single__photos {
    display: block !important;
  }
  .template-product .product__slide {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .template-product .product__slide > *,
  .template-product .product__slide .image-wrapper,
  .template-product .product__slide picture,
  .template-product .product__slide picture img,
  .template-product .product__slide .image-wrapper img,
  .template-product .product__slide img {
    max-width: 660px !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

/* ============================================
   Icon-features block — Cartier-style luxurious minimal.
   No card backgrounds, hairline dividers between items,
   thin serif titles in generous letter-spaced uppercase,
   italic gray subtitle. Hairline rules top & bottom of block.
   ============================================ */
.icon-features.icon-features--v2 {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  /* Desktop: more breathing room from the ATC button above */
  margin: 28px 0 10px !important;
  padding: 4px 0 !important;
  background: transparent !important;
  border: 0 !important;
  text-align: left !important;
  overflow: hidden;
}

@media (max-width: 749px) {
  .icon-features.icon-features--v2 {
    /* Mobile stays tight */
    margin: 5px 0 5px !important;
    gap: 6px;
  }
}

/* Equal-width items — shrink to fit row, no scroll */
.icon-features.icon-features--v2 .icon-feature-item {
  flex: 1 1 0;
  min-width: 0;
}

/* Clickable club link */
.icon-feature-item--link {
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}

.icon-feature-item--link:hover .icon-feature-item__title {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Kill the gap between Add to Cart and the icon features block */
.template-product .product__block.product__block--buttons {
  --block-padding-bottom: 6px !important;
  margin-bottom: 6px !important;
}

.icon-features.icon-features--v2 .icon-feature-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 8px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  gap: 0 !important;
  min-width: 0;
  position: relative;
}

/* Hairline vertical divider between columns */
.icon-features.icon-features--v2 .icon-feature-item + .icon-feature-item::before {
  content: "" !important;
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: -4px;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
}

/* Hide icons — text-only columns */
.icon-features.icon-features--v2 .icon-feature-item__icon {
  display: none !important;
}

.icon-features.icon-features--v2 .icon-feature-item__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-features.icon-features--v2 .icon-feature-item__icon .icon {
  width: 20px !important;
  height: 20px !important;
  display: block;
  opacity: 0.85;
}

.icon-features.icon-features--v2 .icon-feature-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.icon-features.icon-features--v2 .icon-feature-item__title {
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #111 !important;
  margin: 0 !important;
  text-align: center !important;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.icon-features.icon-features--v2 .icon-feature-item__sub {
  font-family: inherit !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.02em;
  color: #888 !important;
  margin: 0 !important;
  text-transform: none !important;
  text-align: center !important;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 480px) {
  .icon-features.icon-features--v2 {
    margin: 16px 0 !important;
    padding: 6px 0 !important;
    gap: 4px;
  }
  .icon-features.icon-features--v2 .icon-feature-item {
    padding: 0 4px !important;
    gap: 4px !important;
    align-items: center !important;
  }
  .icon-features.icon-features--v2 .icon-feature-item__icon {
    width: 18px;
    height: 18px;
    margin-top: 0;
  }
  .icon-features.icon-features--v2 .icon-feature-item__icon .icon {
    width: 16px !important;
    height: 16px !important;
  }
  .icon-features.icon-features--v2 .icon-feature-item__title {
    font-size: 10px !important;
    letter-spacing: 0.02em !important;
  }
  .icon-features.icon-features--v2 .icon-feature-item__sub {
    font-size: 9px !important;
  }
}

/* ============================================
   Mobile sticky "Add to cart" bar — appears on all product
   templates (was previously gated to product.new-design).
   Shows below the fold when the main Add-to-cart button is
   not visible; tapping it scrolls back to the buy area.
   ============================================ */
@media (max-width: 749px) {
  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    transform: translateY(120%);
    transition: transform .25s ease;
    z-index: 999;
    pointer-events: none;
  }

  .mobile-sticky-bar.is-visible {
    transform: translateY(0);
  }

  .mobile-sticky-bar .msb__add,
  .mobile-sticky-bar .msb__wishlist {
    pointer-events: auto;
  }

  .mobile-sticky-bar .msb__add {
    flex: 1 1 auto;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A60B00;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    padding: 0 20px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }

  .mobile-sticky-bar .msb__wishlist {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    background: #fff !important;
    border-radius: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }

  .mobile-sticky-bar .msb__wishlist .button-wishlist {
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .mobile-sticky-bar .msb__wishlist .icon-heart {
    fill: transparent !important;
    stroke: #111 !important;
    width: 22px;
    height: 22px;
  }

  .mobile-sticky-bar .msb__wishlist .button-wishlist.active .icon-heart {
    fill: #A60B00 !important;
    stroke: #A60B00 !important;
  }
}

.mobile-sticky-bar { display: none !important; }

/* ============================================
   Shop Pay / Klarna installment terms — smaller & gray
   (the "Pay in 4 interest-free installments..." copy)
   ============================================ */
/* Center "Pay in 4" text vertically between price (4px pad-bottom)
   and size block (16px pad-top + border) → needs 28px top, 16px bottom */
.template-product .product__content .shop-pay-terms,
.template-product .shop-pay-terms {
  margin-top: 28px !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
}

.template-product .shop-pay-terms,
.template-product .shop-pay-terms * {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #888 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.template-product .shop-pay-terms a {
  color: #888 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.template-product .shop-pay-terms a:hover {
  color: #111 !important;
}

.template-product .shop-pay-terms svg,
.template-product .shop-pay-terms img {
  height: 12px !important;
  width: auto !important;
  opacity: 0.7;
  vertical-align: middle;
}

/* ============================================
   "Style it with" upsell — sizes + ATC inline with image,
   title + price on one row, smaller size buttons,
   full-width ATC button.
   ============================================ */

/* Keep desktop form visible, hide mobile duplicate */
.template-product .product-upsell__content .form-upsel-desc {
  display: block !important;
}
.template-product .btn--upsell-mobile {
  display: none !important;
}

/* Content column stretches to image height, flex column so ATC docks bottom */
.template-product .product-upsell {
  align-items: stretch !important;
}

.template-product .product-upsell__content {
  display: flex !important;
  flex-direction: column !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Title left-aligned */
.template-product .product-upsell__content > a {
  display: block !important;
  text-align: left !important;
}

/* Upsell title + heart: two separate blocks side by side, no overlap.
   align-items: flex-start so when title wraps to 2 rows the heart stays
   aligned with the FIRST row of text, not vertically centered on the block.
   Adds breathing room above the title so it doesn't hug the image top. */
.template-product .product-upsell__title-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 14px !important;
  margin-bottom: 6px !important;
  position: relative !important;
}
@media (max-width: 749px) {
  .template-product .product-upsell__title-row {
    margin-top: 10px !important;
    margin-bottom: 4px !important;
  }
}

.template-product .product-upsell__title-link {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  text-decoration: none !important;
  display: block !important;
}

.template-product .product-upsell__heart {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  position: relative !important;
  width: auto !important;
  min-width: 38px !important;
}

/* Override Rivo heart's default absolute positioning inside the upsell row
   — keep it inline as a proper flex block. Vertical offset aligns the heart's
   center with the first line of the title (title font 14px * 1.2 line-height
   ≈ 16.8px first-line mid = 8.4px). With a 32px heart we want its mid at 8.4px,
   so shift it up by (32/2 - 8.4) = 7.6px via negative margin-top. */
.template-product .product-upsell__heart .favorite-button-wrapper {
  position: static !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  margin: -4px 0 0 0 !important;
  width: 32px !important;
  height: 32px !important;
}

/* Title: uppercase like main PDP title, NOT bold, allowed to wrap */
.template-product .product-upsell__title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
  color: #111 !important;
  text-align: left !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: break-word !important;
}

.template-product .product-upsell__title .upsell-title-first {
  display: inline !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  margin: 0 !important;
}

.template-product .product-upsell__variant-title {
  display: none !important;
}

.template-product .product-upsell__price {
  display: none !important;
}

/* Size buttons — minimum size for short labels, stretch for long ones */
.template-product .form-upsel-desc .radio__button label {
  font-size: 11px !important;
  min-width: 34px !important;
  width: auto !important;
  height: 34px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.template-product .form-upsel-desc .radio__buttons {
  gap: 4px !important;
  margin: 4px 0 !important;
}

.template-product .form-upsel-desc .radio__fieldset {
  padding: 4px 0 !important;
  margin: 0 !important;
}

.template-product .form-upsel-desc legend {
  font-size: 11px !important;
  margin-bottom: 4px !important;
  width: 100%;
}

.template-product .form-upsel-desc .upsel-option--legend {
  display: flex !important;
  align-items: baseline;
  gap: 8px;
  font-size: 11px;
  color: #111;
}

/* "STYLE WITH" upsell section — heading styled identically to the
   "YOU MIGHT ALSO LIKE" related section heading. Generous top margin
   (2× prior value) so it has breathing room from the ATC button above. */
.pgi-upsell-section {
  margin-top: 64px !important;
}
@media (max-width: 749px) {
  .pgi-upsell-section {
    margin-top: 48px !important;
  }
}

.pgi-upsell-section__title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  color: #111 !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border-bottom: none;
}

@media (max-width: 749px) {
  .pgi-upsell-section__title {
    font-size: 20px !important;
    margin: 0 0 12px !important;
  }
}

/* Size guide link — pull out of absolute positioning into normal flow,
   smaller text, right below title */
.template-product .product-upsell__content .sizeChartButton-pd,
.template-product .product-upsell__content .size-guid {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  z-index: auto !important;
  font-size: 10px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  color: #888 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: block;
}

/* Form fills remaining space, sizes + ATC pushed to bottom */
.template-product .product-upsell__content .form-upsel-desc {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Push the size fieldset (and ATC after it) to the bottom */
.template-product .form-upsel-desc .radio__fieldset {
  margin-top: auto !important;
  padding: 0 !important;
}

.template-product .form-upsel-desc .radio__fieldset legend {
  font-size: 10px !important;
  margin-bottom: 4px !important;
  color: #666;
}

/* ATC button — docked to very bottom of content column */
.template-product .form-upsel-desc .btn--upsell-custom * {
  pointer-events: none;
}

.template-product .form-upsel-desc .btn--upsell-custom {
  width: 100% !important;
  min-width: 0 !important;
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  font-size: 11px !important;
  padding: 10px 12px !important;
  min-height: 36px !important;
}


/* Hide the "Added to cart" popup that slides up after upsell ATC */
.added-popup-top {
  display: none !important;
}

/* ============================================
   MARIEMUR CLUB banner — loyalty/rewards CTA link on
   product page. Pill-style hairline-bordered row with an
   icon, copy, and chevron. Full-width, subtle warm tone.
   ============================================ */
/* Mariemur Club banner — target by href since Shopify strips classes */
.mariemur-club-banner {
  margin: 8px 0 !important;
  padding: 0 !important;
}
.mariemur-club-banner__link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #faf7f2;
  border: 1px solid rgba(166, 11, 0, 0.18);
  border-radius: 999px;
  color: #A60B00 !important;
  text-decoration: none !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.25;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.mariemur-club-banner__link:hover {
  background: #f4ede1;
  border-color: rgba(166, 11, 0, 0.35);
}
.mariemur-club-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: transparent;
  color: #A60B00;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}
.mariemur-club-banner__text {
  flex: 1 1 auto;
  min-width: 0;
  color: #A60B00;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.mariemur-club-banner__text strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A60B00;
}
.mariemur-club-banner__arrow {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: #A60B00;
}
@media (max-width: 460px) {
  .mariemur-club-banner__link {
    padding: 10px 14px;
    gap: 10px;
    font-size: 12px;
  }
  .mariemur-club-banner__icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
}

/* Fallback: target by href="#rivo" in case Shopify strips classes */
.rte a[href="#rivo"],
.product__block a[href="#rivo"] {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #faf7f2;
  border: 1px solid rgba(166, 11, 0, 0.18);
  border-radius: 999px;
  color: #A60B00 !important;
  text-decoration: none !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.25;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.rte a[href="#rivo"]:hover,
.product__block a[href="#rivo"]:hover {
  background: #f4ede1;
  border-color: rgba(166, 11, 0, 0.35);
}
.rte a[href="#rivo"] span,
.product__block a[href="#rivo"] span {
  color: #A60B00;
}
.rte a[href="#rivo"] strong,
.product__block a[href="#rivo"] strong {
  color: #A60B00;
  font-weight: 700;
}

/* ============================================
   Accordion rows — visible lines between items,
   titles styled to match the product title but smaller.
   ============================================ */
.template-product .product-accordion .accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.template-product .product-accordion .accordion-toggle {
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em;
  color: #111 !important;
  padding: 14px 30px 14px 0 !important;
}

@media (max-width: 460px) {
  .template-product .product-accordion .accordion-toggle {
    font-size: 14px !important;
    padding: 12px 28px 12px 0 !important;
  }
}

.template-product .product-accordion .accordion-row {
  position: relative;
}


/* ============================================
   SEO Text + SEO FAQ side by side on collection pages
   ============================================ */
.shopify-section:has(.seo-inline-block--text) {
  float: left;
  width: 50%;
}

.shopify-section:has(.seo-inline-block--faq) {
  float: left;
  width: 50%;
}

.seo-inline-block {
  padding: 40px 30px;
}

.seo-inline-block .seo-text {
  font-size: 12px;
  line-height: 1.6;
  color: #444;
}

.seo-inline-block .seo-text p {
  margin: 0 0 12px;
}

/* Clearfix after the two floated sections */
.shopify-section:has(.seo-inline-block--faq) + .shopify-section {
  clear: both;
}

@media (max-width: 749px) {
  .shopify-section:has(.seo-inline-block--text),
  .shopify-section:has(.seo-inline-block--faq) {
    float: none;
    width: 100%;
  }

  .seo-inline-block {
    padding: 24px 16px;
  }
}

/* ============================================
   Mobile navigation — luxury restyle
   ============================================ */
/* Panel — clean, no shadow */
.header__drawer .drawer__content {
  max-width: 85% !important;
  background: #fff !important;
  border-right: none !important;
  box-shadow: none !important;
}

/* Underlay darker */
.header__drawer .drawer__underlay {
  background: #000;
}

.drawer--visible .drawer__underlay {
  opacity: 0.45 !important;
}

/* Close button — minimal */
.header__drawer .drawer__close {
  color: #111 !important;
  opacity: 0.5;
}

.header__drawer .drawer__close:hover {
  opacity: 1;
}

/* Menu items — wide letter-spacing, uppercase, thin borders */
.header__drawer .sliderow {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-top: none !important;
}

.header__drawer .sliderow__title,
.header__drawer .sliderow a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #111 !important;
  padding: 16px 20px !important;
  text-decoration: none !important;
}

.header__drawer .sliderow__title:hover,
.header__drawer .sliderow a:hover {
  color: #888 !important;
}

/* Secondary menu items — slightly smaller */
.header__drawer .sliderule__wrapper--secondary .sliderow__title,
.header__drawer .sliderule__wrapper--secondary .sliderow a {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #666 !important;
  letter-spacing: 0.08em !important;
  padding: 12px 20px !important;
}

/* Sub-menu back button */
.header__drawer .sliderow--back .sliderow__title {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  color: #111 !important;
}

/* Sub-menu items */
.header__drawer .sliderow__links .sliderow__title,
.header__drawer .sliderow__links .sliderow a {
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  padding: 14px 20px !important;
}

/* Bottom section — currency/country */
.header__drawer .drawer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 16px 20px !important;
}

.header__drawer .drawer__bottom a,
.header__drawer .drawer__bottom span,
.header__drawer .drawer__bottom button {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #666 !important;
}

/* Arrow/chevron for sub-menus */
.header__drawer .sliderow__title svg,
.header__drawer .sliderow__title .icon {
  width: 14px !important;
  height: 14px !important;
  opacity: 0.4;
}

@media (min-width: 750px) {
  .header__drawer .drawer__content {
    max-width: 420px !important;
  }
}

/* ============================================
   Product label pills — unified top/left so SALE, NEW, preorder,
   generic badges all anchor at the same corner regardless of markup path.
   (Was top:4px before — caused SALE to sit higher than NEW which is
   inside .sale-box-wrap at 8/8.)
   ============================================ */
.product-item .sale-box,
.product-item .preorder-box,
.product-item .badge-box {
  line-height: 1.1 !important;
  letter-spacing: 0.04em;
  --left-spacing: 8px;
  top: 8px !important;
  left: 8px !important;
  text-transform: uppercase;
}

/* Hide sale badges only inside the product images area on PDP */
.template-product .product__images .sale-box-wrap,
.template-product .product__images .sale-box,
.template-product .product__images .badge-box,
.template-product .product__images .preorder-box {
  display: none !important;
}

.product-item .sale-box-wrap {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: calc(100% - 8px);
}

.product-item .sale-box-wrap .sale-box {
  position: relative;
  top: 0 !important;
  left: 0 !important;
}
