/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   Cart drawer — Cartier-inspired luxury aesthetic
   Clean white, generous whitespace, thin hairlines,
   wide letter-spaced uppercase, elegant transitions.
============================================================ */

.pgi-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10000;
  pointer-events: none;
}

.pgi-cart.is-open { pointer-events: auto; }

.pgi-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pgi-cart.is-open .pgi-cart__overlay {
  opacity: 1;
  pointer-events: auto;
}

.pgi-cart__panel {
  position: fixed;
  top: 0;
  right: -480px;
  width: 460px;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: right 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pgi-cart.is-open .pgi-cart__panel { right: 0; }

@media (max-width: 600px) {
  .pgi-cart__panel {
    width: 85%;
    right: -90%;
  }
}

/* ---------- Header ---------- */
.pgi-cart__header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pgi-cart__title {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #111;
}

.pgi-cart__close {
  background: none;
  border: 0;
  padding: 0;
  width: 28px;
  height: 28px;
  font-size: 22px;
  line-height: 1;
  color: #111;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.pgi-cart__close:hover { opacity: 1; }

/* ---------- Body ---------- */
.pgi-cart__body { position: relative; }

.pgi-cart__footer-slot {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.pgi-cart__loading {
  padding: 40px 18px;
  text-align: center;
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Free shipping bar ---------- */
.pgi-cart__shipping {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.pgi-cart__shipping-msg {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pgi-cart__shipping-msg strong { color: #111; font-weight: 600; }

.pgi-cart__shipping-check {
  flex: 0 0 auto;
  color: #A60B00;
}

.pgi-cart__shipping.is-unlocked .pgi-cart__shipping-msg { color: #A60B00; }

.pgi-cart__shipping-track {
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.pgi-cart__shipping-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: #A60B00;
  transition: width 0.4s ease;
  border-radius: 2px;
}

.pgi-cart__shipping.is-unlocked .pgi-cart__shipping-fill { background: #A60B00; }

/* ---------- Bundle tiers progress ---------- */
.pgi-cart__bundle {
  padding: 12px 20px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.pgi-cart__bundle-msg {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  margin-bottom: 13px;
  line-height: 1.4;
}
.pgi-cart__bundle-msg strong { color: #A60B00; font-weight: 600; }
.pgi-cart__bundle-track-wrap {
  position: relative;
  padding-bottom: 18px;
}
.pgi-cart__bundle-track {
  height: 3px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  position: relative;
}
.pgi-cart__bundle-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: #A60B00;
  border-radius: 2px;
  max-width: 100%;
  transition: width 0.4s ease;
}
.pgi-cart__bundle-marker {
  position: absolute;
  top: -3.5px;
  transform: translateX(-50%);
}
.pgi-cart__bundle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.15);
  transition: background 0.3s, border-color 0.3s;
}
.pgi-cart__bundle-marker.is-reached .pgi-cart__bundle-dot {
  background: #A60B00;
  border-color: #A60B00;
}
.pgi-cart__bundle-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  white-space: nowrap;
  text-transform: uppercase;
}
.pgi-cart__bundle-marker.is-reached .pgi-cart__bundle-label { color: #A60B00; }

/* Welcome-back banner */
.pgi-cart__welcome {
  padding: 10px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: opacity 0.4s ease;
}

/* ---------- Empty state ---------- */
.pgi-cart__empty {
  padding: 60px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pgi-cart__empty-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  opacity: 0.15;
}

.pgi-cart__empty p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ---------- Item list ---------- */
.pgi-cart__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pgi-cart__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  padding: 16px 20px;
  align-items: flex-start;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pgi-cart__item + .pgi-cart__item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pgi-cart__item.is-loading { opacity: 0.4; pointer-events: none; }
.pgi-cart__item.is-removing { opacity: 0; transform: translateX(16px); }

.pgi-cart__item-img {
  width: 80px;
  height: 106px;
  background: #f8f8f8;
  overflow: hidden;
  display: block;
}

.pgi-cart__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgi-cart__item-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pgi-cart__item-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: #111;
  text-decoration: none;
  display: block;
}

.pgi-cart__item-title:hover { text-decoration: underline; text-underline-offset: 2px; }

.pgi-cart__item-title-first {
  font-weight: 700;
  color: #111;
}

.pgi-cart__item-title-rest {
  font-weight: 400;
  color: #888;
}

.pgi-cart__item-variant {
  font-size: 11px;
  color: #999;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.pgi-cart__item-bottom {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pgi-cart__item-price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.02em;
}

/* ---------- Quantity stepper ---------- */
.pgi-cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  height: 30px;
}

.pgi-cart__qty-btn {
  background: none;
  border: 0;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #111;
  padding: 0;
  transition: background 0.15s ease;
}

.pgi-cart__qty-btn:hover { background: rgba(0, 0, 0, 0.04); }

.pgi-cart__qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Remove ---------- */
.pgi-cart__item-remove {
  background: none;
  border: 0;
  padding: 4px;
  font-size: 14px;
  line-height: 1;
  color: #bbb;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.15s ease;
}

.pgi-cart__item-remove:hover { color: #111; }

/* ---------- Recommendations ---------- */
.pgi-cart__recs {
  padding: 0 0 8px;
  border-top: none;
}

.pgi-cart__recs-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 12px;
  color: #111;
}

.pgi-cart__recs-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  touch-action: pan-x;
}

.pgi-cart__recs-row::-webkit-scrollbar { display: none; }

.pgi-cart__rec {
  flex: 0 0 calc((100% - 12px) / 2.2);
  min-width: 120px;
  scroll-snap-align: start;
  color: #111;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0.1);
  outline: none;
}
.pgi-cart__rec:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.pgi-cart__rec-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f8f8f8;
  overflow: hidden;
  margin-bottom: 6px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0.1);
  cursor: pointer;
}
.pgi-cart__rec-img::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pgi-cart__rec-info {
  touch-action: manipulation;
}

.pgi-cart__rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pgi-cart__rec:hover .pgi-cart__rec-img img { transform: scale(1.04); }

.pgi-cart__rec-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #111;
  margin: 0 0 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pgi-cart__rec-info {
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: opacity 0.2s ease;
}
.pgi-cart__rec-info:hover,
.pgi-cart__rec-info:focus-visible {
  opacity: 0.7;
}
.pgi-cart__rec-info.is-loading { opacity: 0.4; pointer-events: none; }

.pgi-cart__rec-price {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.02em;
}

/* Inline size pills */
.pgi-cart__rec-sizes {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
}
.pgi-cart__rec-sizes.is-open {
  display: flex;
}
.pgi-cart__rec-size {
  min-width: 38px;
  padding: 9px 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: #fff;
  color: #111;
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.pgi-cart__rec-size:hover,
.pgi-cart__rec-size:focus-visible {
  border-color: #111;
  outline: none;
}
.pgi-cart__rec-size.is-unavailable {
  background: rgba(17, 17, 17, 0.04);
  border-color: rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.3);
  cursor: default;
  text-decoration: line-through;
}
.pgi-cart__rec-sold-out {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  padding-top: 4px;
}
.pgi-cart__rec.is-adding {
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.pgi-cart__footer {
  background: #fff;
  padding: 16px 20px 24px;
  border-top: none;
}

/* ─── Discount code — Cartier-esque luxe treatment ───
   Trigger: thin uppercase micro-caps, chevron that rotates open.
   Input + Apply: hairline framed row, seamless, focus darkens.
   Status: small italic message in brand red / green.
   Applied code: ink-on-ivory pill with tag icon + signed amount.        */

.pgi-cart__discount {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  margin-top: 10px !important;
  margin-bottom: 14px !important; /* space from the checkout button below */
  width: 100%;
  border: 1px solid #d9d9d9; /* soft grey, not black */
  background: #fff;
  transition: border-color 0.2s ease;
}
.pgi-cart__discount:focus-within {
  border-color: #b0b0b0; /* slightly darker grey on focus, still soft */
}

.pgi-cart__discount-input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  height: 44px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  /* 16px prevents iOS Safari auto-zoom on focus */
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: #111 !important;
  background: transparent !important;
  outline: none !important;
  text-transform: uppercase;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.15s ease;
}
@media (min-width: 750px) {
  .pgi-cart__discount-input { font-size: 13px !important; }
}
.pgi-cart__discount-input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
/* Placeholder smaller to match the Apply button (10px / 0.2em) while
   the actual typed text stays 16px on mobile (required to stop iOS
   zoom on focus). */
.pgi-cart__discount-input::placeholder {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 10px;
}
.pgi-cart__discount-input::-webkit-input-placeholder {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.pgi-cart__discount-input::-moz-placeholder {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  opacity: 1;
}

.pgi-cart__discount-btn {
  flex: 0 0 auto !important;
  height: 44px !important;
  padding: 0 22px !important;
  margin: 0 !important;
  border: 0 !important;
  border-left: 1px solid #d9d9d9 !important;
  border-radius: 0 !important;
  background: #fff !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #111 !important;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.15s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  line-height: 44px !important;
  min-width: 90px;
}
.pgi-cart__discount-btn:hover {
  background: #111 !important;
  color: #fff !important;
  border-left-color: #111 !important;
}
.pgi-cart__discount:focus-within .pgi-cart__discount-btn {
  border-left-color: #111 !important;
}
.pgi-cart__discount-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Status message below the input */
.pgi-cart__discount-status {
  display: block;
  min-height: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  transition: color 0.2s ease, padding 0.2s ease, min-height 0.2s ease;
}
.pgi-cart__discount-status:empty { padding: 0; }
.pgi-cart__discount-status--error {
  color: #a60b00;
  padding: 8px 2px 0;
  min-height: 18px;
}
.pgi-cart__discount-status--success {
  color: #2a7a2a;
  padding: 8px 2px 0;
  min-height: 18px;
}
.pgi-cart__discount-status--loading {
  padding: 8px 2px 0;
  min-height: 18px;
  color: #888;
}
.pgi-cart__discount-status--loading::before {
  content: "Applying";
  margin-right: 6px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
}
.pgi-cart__discount-status--loading::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-top-color: #111;
  border-radius: 50%;
  animation: pgi-cart-spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes pgi-cart-spin { to { transform: rotate(360deg); } }

/* Applied discount pill — ink-on-ivory */
.pgi-cart__applied-discounts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0 4px;
}
.pgi-cart__applied-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #faf8f4;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #111;
}
.pgi-cart__applied-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.pgi-cart__applied-discount-tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.6;
  color: #111;
}
.pgi-cart__applied-discount-amount {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2a7a2a;
}

/* Discount code — collapsible panel */
.pgi-cart__discount-toggle {
  margin: 0 0 14px;
  padding: 10px 0;
}

.pgi-cart__discount-trigger {
  background: none;
  border: 0;
  padding: 8px 0;
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: #111;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  transition: color 0.2s ease;
}
.pgi-cart__discount-trigger:hover { color: #a60b00; }

.pgi-cart__discount-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 2px;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  flex-shrink: 0;
  opacity: 0.7;
}
.pgi-cart__discount-trigger.is-open::after {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}

.pgi-cart__discount--hidden {
  display: none !important;
}

/* Rewards prompt */
.pgi-cart__rewards {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  color: #666;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.pgi-cart__rewards:hover {
  color: #A60B00;
}
.pgi-cart__rewards strong { color: inherit; font-weight: 700; }
.pgi-cart__rewards strong {
  color: #A60B00;
}
/* Returns text below checkout */
.pgi-cart__returns {
  margin: 8px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-align: center;
  color: #999;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* Empty state — bestsellers recs */
.pgi-cart__empty-recs {
  width: 100%;
  margin-top: 30px;
}

.pgi-cart__empty-recs-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111;
  text-align: center;
  margin: 0 0 14px;
}

/* Variant display — more prominent */
.pgi-cart__item-variant {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* Hide "View cart" button */
.pgi-cart__btn--ghost {
  display: none !important;
}

.pgi-cart__subtotal {
  display: flex;
  justify-content: space-between;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  color: #111;
}

.pgi-cart__tax-note {
  font-size: 10px;
  color: #bbb;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.pgi-cart__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 1px solid #111;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.pgi-cart__btn--primary {
  background: #A60B00;
  color: #fff;
  margin-bottom: 0;
}

.pgi-cart__btn--primary:hover {
  background: #8a0900;
  color: #fff;
}

.pgi-cart__btn--ghost {
  background: transparent;
  color: #111;
}

.pgi-cart__btn--ghost:hover {
  background: #111;
  color: #fff;
}

/* ---------- Subtotal & savings ---------- */
.pgi-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 8px;
}

.pgi-cart__savings {
  font-size: 11px;
  color: #A60B00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-align: center;
}

/* ---------- Sale pricing ---------- */
.pgi-cart__item-price--sale {
  color: #A60B00;
  font-weight: 700;
}

.pgi-cart__item-price--was {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 0.85em;
}

/* ---------- View Cart secondary button ---------- */
.pgi-cart__btn--secondary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 4px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-underline-offset: 3px;
  border: 0;
  background: transparent;
  color: #666;
  cursor: pointer;
  margin-bottom: 0;
  transition: color 0.25s ease;
}

.pgi-cart__btn--secondary:hover {
  background: transparent;
  color: #111;
}

/* ---------- Empty state ---------- */
.pgi-cart__empty {
  padding: 50px 24px 24px;
  text-align: center;
}
.pgi-cart__empty-msg {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #999;
  margin: 0 0 28px;
}
.pgi-cart__empty .pgi-cart__btn--primary {
  max-width: 260px;
  margin: 0 auto 40px;
}

/* Collection links */
.pgi-cart__empty-collections {
  text-align: left;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pgi-cart__empty-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #bbb;
  margin: 0 0 16px;
}
.pgi-cart__empty-link {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #111;
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.pgi-cart__empty-link:last-child {
  border-bottom: none;
}
.pgi-cart__empty-link:hover {
  color: #A60B00;
  letter-spacing: 0.16em;
}

/* Benefits — inline row */
.pgi-cart__empty-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pgi-cart__empty-benefit {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pgi-cart__empty-benefit svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: #bbb;
}
.pgi-cart__empty-benefit div {
  display: inline;
}
.pgi-cart__empty-benefit strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
}
.pgi-cart__empty-benefit span {
  display: none;
}

/* Empty recs section */
.pgi-cart__empty-recs-section {
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}

/* ---------- Swipe to remove ---------- */
.pgi-cart__swipe-wrap {
  position: relative;
  overflow: hidden;
  list-style: none;
}
.pgi-cart__swipe-bg {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 24px;
  background: #A60B00;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  visibility: hidden;
}
.pgi-cart__swipe-wrap.is-swiping .pgi-cart__swipe-bg {
  visibility: visible;
}
.pgi-cart__swipe-wrap [data-pgi-swipe-inner] {
  position: relative;
  z-index: 1;
  background: #fff;
  will-change: transform;
}

/* ---------- Undo toast ---------- */
.pgi-cart__undo {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: #111;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.pgi-cart__undo.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.pgi-cart__undo button {
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.pgi-cart__undo button:hover {
  opacity: 1;
}

/* ---------- Just-added highlight ---------- */
.pgi-cart__item.is-just-added {
  animation: pgi-just-added 2s ease;
}
@keyframes pgi-just-added {
  0%   { background: rgba(0,0,0,0.06); }
  40%  { background: rgba(0,0,0,0.06); }
  100% { background: transparent; }
}

/* Lock body scroll when drawer open */
html.pgi-cart-open,
html.pgi-cart-open body { overflow: hidden; }

/* Vertical rhythm: 12 / 14 / 16 / 24 scale */
/* Recs now live in scrollable body (above footer) */
.pgi-cart__recs-slot--in-body {
  padding: 24px 20px 16px;
}
.pgi-cart__recs-slot--in-body .pgi-cart__recs {
  padding: 0;
}

/* Footer: CHECKOUT at the bottom (primary CTA, thumb-reachable) */
.pgi-cart__footer > .pgi-cart__secondary-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
}
.pgi-cart__secondary-sep {
  color: #bbb;
  font-size: 11px;
  user-select: none;
}
.pgi-cart__footer .pgi-cart__secondary-row .pgi-cart__btn--secondary {
  width: auto;
  display: inline-block;
  padding: 4px 0;
  margin: 0;
}
.pgi-cart__footer .pgi-cart__secondary-row .pgi-cart__rewards {
  margin: 0;
}
.pgi-cart__footer > .pgi-cart__btn--primary {
  margin-top: 12px;
  margin-bottom: 0;
}
.pgi-cart__footer > .pgi-cart__returns {
  margin-top: 10px;
  margin-bottom: 0;
}
.pgi-search {
  position: fixed;
  inset: 0;
  z-index: 11000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pgi-search.is-open {
  pointer-events: auto;
  opacity: 1;
}

.pgi-search__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.pgi-search__panel {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 660px;
  max-width: 96%;
  max-height: 80vh;
  max-height: 80dvh;
  margin-top: 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.pgi-search.is-open .pgi-search__panel {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .pgi-search__panel {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    margin-top: 0;
    top: 0;
    left: 0;
    transform: translateY(-10px);
  }
  .pgi-search.is-open .pgi-search__panel {
    transform: translateY(0);
  }
}

/* Header / input */
.pgi-search__header {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 12px;
  flex-shrink: 0;
}

.pgi-search__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pgi-search__icon {
  flex-shrink: 0;
  color: #bbb;
}

.pgi-search__input {
  flex: 1;
  border: 0;
  outline: 0;
  background: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #111;
  padding: 0;
  -webkit-appearance: none;
}
@media (min-width: 750px) {
  .pgi-search__input {
    font-size: 15px;
  }
}

.pgi-search__input::placeholder {
  color: #bbb;
  letter-spacing: 0.06em;
}

/* View toggle */
.pgi-search__view-toggle {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.pgi-search__view-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px 7px;
  cursor: pointer;
  color: #bbb;
  transition: color 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pgi-search__view-btn:first-child {
  border-right: 0;
}

.pgi-search__view-btn.is-active {
  color: #111;
  border-color: #111;
}

.pgi-search__view-btn:hover {
  color: #111;
}

.pgi-search__close {
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 4px 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #888;
  cursor: pointer;
  text-transform: uppercase;
}

.pgi-search__close:hover {
  color: #111;
  border-color: #111;
}

/* Body */
.pgi-search__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
}

/* Section title */
.pgi-search__section-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin: 0 0 12px;
}

/* Popular pills */
.pgi-search__popular {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pgi-search__pill {
  padding: 8px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.14);
  transition: background 0.15s, color 0.15s;
}

.pgi-search__pill:hover {
  background: #111;
  color: #fff;
}

/* ============ Collection pills in results ============ */
.pgi-search__collections-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.pgi-search__collection-pill {
  padding: 7px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
  border: 1px solid #111;
  transition: background 0.15s, color 0.15s;
}

.pgi-search__collection-pill:hover {
  background: #111;
  color: #fff;
}

/* ============ List view (default) ============ */
.pgi-search__products-list .pgi-search__result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: #111;
  transition: opacity 0.15s;
}

.pgi-search__products-list .pgi-search__result-item:hover {
  opacity: 0.7;
}

.pgi-search__products-list .pgi-search__result-img {
  width: 56px;
  height: 72px;
  background: #f4f4f4;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.pgi-search__products-list .pgi-search__result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgi-search__products-list .pgi-search__result-info {
  flex: 1;
  min-width: 0;
}

/* ============ Grid view ============ */
.pgi-search__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 600px) {
  .pgi-search__products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.pgi-search__products-grid .pgi-search__result-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #111;
  transition: opacity 0.15s;
}

.pgi-search__products-grid .pgi-search__result-item:hover {
  opacity: 0.7;
}

.pgi-search__products-grid .pgi-search__result-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f4f4f4;
  overflow: hidden;
  position: relative;
}

.pgi-search__products-grid .pgi-search__result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgi-search__products-grid .pgi-search__result-info {
  padding: 8px 0 0;
}

/* ============ Title / Price (shared) ============ */
.pgi-search__result-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
  line-height: 1.3;
  margin: 0;
}

.pgi-search__result-title-first {
  font-weight: 700;
  color: #111;
}

.pgi-search__result-price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #111;
  margin: 3px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pgi-search__result-price--sale .pgi-search__price-current {
  color: #A60B00;
}

.pgi-search__price-compare {
  text-decoration: line-through;
  color: #888;
  opacity: 0.6;
}

/* ============ Badges ============ */
.pgi-search__badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  line-height: 1.4;
  z-index: 1;
}

.pgi-search__badge--sale {
  background: #A60B00;
  color: #fff;
}

.pgi-search__badge--sold-out {
  background: #111;
  color: #fff;
}

.pgi-search__badge--new {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* ============ Skeleton loading ============ */
@keyframes pgi-shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 400px 0; }
}

.pgi-search__skel-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: pgi-shimmer 1.4s ease infinite;
}

/* List skeleton */
.pgi-search__skel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pgi-search__skel-thumb {
  width: 56px;
  height: 72px;
  flex-shrink: 0;
}

.pgi-search__skel-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pgi-search__skel-line {
  height: 10px;
}

/* Grid skeleton */
.pgi-search__grid-skeleton {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 600px) {
  .pgi-search__grid-skeleton {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.pgi-search__skel-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pgi-search__skel-img {
  width: 100%;
  aspect-ratio: 3 / 4;
}

/* ============ No results ============ */
.pgi-search__no-results {
  text-align: center;
  padding: 40px 0;
}

.pgi-search__no-results p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

/* ============ View all link ============ */
.pgi-search__view-all {
  display: block;
  text-align: center;
  padding: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111;
  text-decoration: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 8px;
}

.pgi-search__view-all:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ Recent searches ============ */
.pgi-search__recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pgi-search__recent-clear {
  background: none;
  border: none;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: #bbb;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pgi-search__recent-clear:hover {
  color: #111;
}

.pgi-search__pill--recent {
  background: none;
  cursor: pointer;
}

[data-pgi-search-recent] {
  margin-bottom: 16px;
}

/* ============ Keyboard selection ============ */
[data-pgi-search-item].is-selected {
  background: #f4f4f4 !important;
  outline: none;
}

.pgi-search__collection-pill.is-selected {
  background: #111 !important;
  color: #fff !important;
}
/* ============================================
   PgiMobileMenu — Cartier-style luxury mobile menu
   Generous whitespace, thin elegant typography,
   hairline dividers, minimal chrome.
   Brand: Inter/Arial · #111 ink · #888 secondary · #A60B00 accent
   ============================================ */

.pgi-menu {
  position: fixed;
  inset: 0;
  z-index: 10500; /* below PgiSearch (11000) */
  visibility: hidden;
  pointer-events: none;
}
.pgi-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.pgi-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.3);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pgi-menu.is-open .pgi-menu__overlay { opacity: 1; }

.pgi-menu__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 90%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.06);
}
.pgi-menu.is-open .pgi-menu__panel { transform: translateX(0); }

/* ─── Top bar ─────────────────────────────────
   Logo centered, CLOSE as small grey text on the right.           */
.pgi-menu__top {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px 18px;
  min-height: 64px;
}

.pgi-menu__logo {
  display: inline-flex;
  align-items: center;
  max-width: 180px;
  text-decoration: none;
  color: #111;
  line-height: 1;
}
.pgi-menu__logo-img {
  max-height: 24px;
  width: auto;
  display: block;
}

.pgi-menu__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: none;
  border: 0;
  padding: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
  line-height: 0;
}
.pgi-menu__close:hover { color: #a60b00; }
.pgi-menu__close svg { display: block; }

/* Hairline under top bar */
.pgi-menu__top::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: rgba(17, 17, 17, 0.08);
}

/* ─── Sliding panels ─── */
.pgi-menu__panels {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}

.pgi-menu__pane {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.pgi-menu__pane[data-pgi-menu-depth="0"] {
  transform: translateX(0);
}
.pgi-menu__pane.is-active {
  transform: translateX(0);
}
/* Root pane drifts slightly left when sub-pane is open */
.pgi-menu__pane[data-pgi-menu-depth="0"].is-parent {
  transform: translateX(-18%);
  opacity: 0.3;
  pointer-events: none;
}

/* ─── Back button (sub-pane header) ─── */
.pgi-menu__back {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  padding: 22px 28px 18px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  text-align: left;
  line-height: 1;
  transition: color 0.2s ease;
}
.pgi-menu__back span {
  color: #111;
  font-weight: 500;
  letter-spacing: 0.22em;
}
.pgi-menu__back:hover { color: #111; }
.pgi-menu__chev--back { opacity: 0.6; }

/* Hairline under back button */
.pgi-menu__back {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  margin: 0 0 4px;
}

/* ─── Menu list ─────────────────────────────
   Generous vertical rhythm, no item backgrounds,
   hairline dividers between items.                 */
.pgi-menu__list {
  list-style: none;
  margin: 0;
  padding: 14px 0 24px;
  flex: 1 1 auto;
}

.pgi-menu__item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.pgi-menu__item:last-child {
  border-bottom: 0;
}

.pgi-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 28px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  line-height: 1.2;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.pgi-menu__link > span {
  display: block;
}
.pgi-menu__link:hover,
.pgi-menu__link:focus,
.pgi-menu__link:active {
  color: #a60b00;
  background: transparent;
  outline: none;
}

.pgi-menu__link--has-sub .pgi-menu__chev {
  flex-shrink: 0;
  color: #bbb;
  transition: color 0.2s ease, transform 0.2s ease;
}
.pgi-menu__link--has-sub:hover .pgi-menu__chev {
  color: #a60b00;
  transform: translateX(2px);
}

/* ("View all" parent link removed per request) */

/* ─── Footer ─────────────────────────────────
   Very understated — account link + locale picker.
   No background fill, just subtle hairline top.         */
.pgi-menu__footer {
  flex: 0 0 auto;
  padding: 22px 28px 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
}

.pgi-menu__footer-link {
  display: block;
  padding: 10px 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pgi-menu__footer-link:hover { color: #a60b00; }

/* Localization — force visible inside menu, style minimal */
.pgi-menu__locale {
  margin-top: 6px;
}
.pgi-menu__locale .popout,
.pgi-menu__locale .localization,
.pgi-menu__locale [data-popout],
.pgi-menu__locale form {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.pgi-menu__locale .popout__toggle,
.pgi-menu__locale button.popout__toggle,
.pgi-menu__locale form button {
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #111 !important;
  padding: 10px 0 !important;
  background: none !important;
  border: 0 !important;
  text-align: left !important;
  width: 100% !important;
  min-height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.pgi-menu__locale .popout__toggle:hover,
.pgi-menu__locale form button:hover {
  color: #a60b00 !important;
}
.pgi-menu__locale .popout__toggle svg,
.pgi-menu__locale form button svg {
  width: 10px !important;
  height: 10px !important;
  stroke: currentColor !important;
  stroke-width: 1.5 !important;
  fill: none !important;
  opacity: 0.7;
}

/* Body scroll-lock when menu is open (no position:fixed gymnastics) */
html.pgi-menu-open,
body.pgi-menu-open {
  overflow: hidden !important;
  touch-action: none !important;
}

/* Hide on desktop */
@media (min-width: 750px) {
  .pgi-menu {
    display: none !important;
  }
}
/* ============================================
   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: rgba(120,110,100,0.10);
}

.pgi-swiper__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(120,110,100,0.45);
  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;
  }
}

@media (min-width: 750px) {
  .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;
}

/* Clearfix on main when floated SEO sections are the last children */
main:has(.seo-inline-block)::after {
  content: "";
  display: block;
  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;
}
/* PGI overrides — loaded unconditionally via theme.liquid.
   Holds layout tweaks that must apply across all templates,
   previously stranded in new-product-styles.css which only loads
   on product.new-design template. */

/* Upsell ATC button — show price inline (Add · $XX) */
.btn--upsell-custom {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.btn--upsell-custom__price {
    font-weight: 500;
    opacity: 0.95;
    white-space: nowrap;
}

/* Upsell title-row: title + heart on same line via flex */
.product-upsell .product-upsell__content .product-upsell__title-row,
.template-product .product-upsell .product-upsell__content .product-upsell__title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px !important;
    margin-bottom: 8px;
}
.product-upsell .product-upsell__content .product-upsell__title-row .product-upsell__title-link {
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-upsell .product-upsell__content .product-upsell__title-row .product-upsell__title {
    margin: 0;
    padding-right: 0;
}
.product-upsell .product-upsell__content .product-upsell__title-row .favorite-button-wrapper {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    float: none !important;
    flex: 0 0 auto;
    width: 28px !important;
    height: 28px !important;
    margin: 2px 0 0 !important;
    z-index: auto;
}
@media only screen and (max-width: 749px) {
    .product-upsell .product-upsell__content .product-upsell__title-row .favorite-button-wrapper {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Sizeguide block above ADD button (moved out of <legend>) */
.product-upsell__sizeguide-above-btn {
    margin: 12px 0 8px;
}
.product-upsell__sizeguide-above-btn .size-guid {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    display: inline-block;
    padding: 0;
}

/* Extra breathing room below ADD button */
.product-upsell .product-upsell__content .btn--upsell-custom,
.template-product .product-upsell .form-upsel-desc .btn--upsell-custom,
.template-product .product-upsell .product-upsell__content .btn--upsell-custom {
    margin-bottom: 28px !important;
}

/* Desktop footer: force blocks to span full width, not collapse to right.
   Original grid auto-fit minmax(160,1fr) + items with --desktop-width:25%
   caused 4 blocks of 200px to hug right edge (680px total content).
   Override: equal flex row, fill full container. */
@media only screen and (min-width: 750px) {
    .site-footer .footer__blocks {
        display: flex !important;
        flex-flow: row wrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        grid-template-columns: none !important;
        gap: 30px 40px !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .site-footer .footer__blocks > .footer__block {
        flex: 1 1 0 !important;
        min-width: 160px !important;
        width: auto !important;
        max-width: none !important;
    }
}

@media only screen and (max-width: 749px) {
    html body.template-product .product__images .product__slide img,
    html body.template-product .product__images .product__slide .image-wrapper img,
    html body.template-product .product__images .product__slide picture img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        max-width: 100% !important;
        object-fit: unset !important;
        display: block !important;
    }
}

/* Cart page Complete Your Look — under checkout, always visible */
.cart__cross-sells.cart__cross-sells--below-checkout {
    display: block;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.cart__cross-sells--below-checkout .cart__cross-sells__title {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 16px;
    text-align: center;
}
.cart__cross-sells--below-checkout .cart__cross-sells__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.cart__cross-sells--below-checkout .cart__cross-sells__item {
    text-decoration: none;
    color: inherit;
    display: block;
}
.cart__cross-sells--below-checkout .cart__cross-sells__img {
    overflow: hidden;
    margin-bottom: 8px;
}
.cart__cross-sells--below-checkout .cart__cross-sells__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.cart__cross-sells--below-checkout .cart__cross-sells__item:hover .cart__cross-sells__img img {
    transform: scale(1.04);
}
.cart__cross-sells--below-checkout .cart__cross-sells__name {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 4px;
}
.cart__cross-sells--below-checkout .cart__cross-sells__price {
    font-size: 12px;
    font-weight: 500;
}
.cart__cross-sells--below-checkout .cart__cross-sells__compare {
    text-decoration: line-through;
    opacity: 0.5;
    margin-left: 6px;
}
/* size guide inner popup start */

.size-guides-wrapper p{
  text-align: center;
  width: 100%;
max-width: 503px;
  margin: auto;

}

.size-guides-wrapper h2:first-child{
    font-size: 3rem;
      font-weight: bold;
      text-transform: uppercase;
      margin: 15px;
}

.size-guides-wrapper .size-guides__selector{
  margin-top: 30px;
}

.size-guides-wrapper h2{
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.size-guides-wrapper h3{
  text-align: center;
  font-size: 1.2rem;
}

.custom-size-guides__wrap{
  margin-bottom: 60px;
}

.custom-size-guides__wrap thead th, .custom-size-guides__wrap tbody td{
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.custom-size-guides__wrap thead th:last-child, .custom-size-guides__wrap tbody tr td:last-child, .custom-size-guides__wrap tbody tr:last-child td:last-child{
  border-right: 0px solid;
}

.custom-size-guides__wrap tbody tr:last-child td{
  border-bottom: 0px solid;
}


.custom-size-guides__wrap main {display: flex;}
.custom-size-guides__wrap main > * {border: 1px solid;}

.custom-size-guides__wrap table {
  border-collapse: collapse; 
  font-family: helvetica;
  margin: auto;
}
.custom-size-guides__wrap td, .custom-size-guides__wrap th {
/*      border:  1px solid;*/
      padding: 10px;
      min-width: 170px;
      box-sizing: border-box;
      text-align: center;
      font-size: 14px;
}

.custom-size-guides__wrap.hidden{
  display: none!important;
}
.size-guides-wrapper form, .size-guides-wrapper{
  font-family: Arial;
}

.size-guides-wrapper{
  width: 100%;
  max-width: 601px;
}

.custom-size-guides__wrap {
  width: 100%;
}
.custom-size-guides__wrap .table-container {
  position: relative;
  max-height:  500px;
  width: 100%;
  overflow: scroll;
}

.custom-size-guides__wrap thead th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

.custom-size-guides__wrap thead th:first-child {
  left: 0;
  z-index: 3;
}

.custom-size-guides__wrap tbody {
  overflow: scroll;
/*  height: 200px;*/
}

/* MAKE LEFT COLUMN FIXEZ */
.custom-size-guides__wrap tr > :first-child {
  position: -webkit-sticky;
  position: sticky; 
  left: 0; 
  font-weight: bold;
  color: #fff;
  background: #000;
  /* min-width: 80px; */
/*  position: relative;*/
}

.custom-size-guides__wrap tr > :first-child::after{
  content: '';
  width: 102%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -1px;
  left: -1px;
}
/* don't do this */
.custom-size-guides__wrap tr > :first-child {
/*  box-shadow: inset 0px 1px black;*/
}

.size-guides-wrapper .size-guides__selector, .size-guides__selector form{
  width: 100%;
}

.size-guides-wrapper .size-guides__selector form{
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-guides-wrapper .size-guides__selector form label{
  margin: 20px;
}


/* remove standard-styles */
.size-guides-wrapper .size-guides__selector input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:none;
  border-radius: 0;
  font-size: 1em;
  width: 100%
} 

/* graceful degradation for ie8 */
.size-guides-wrapper .size-guides__selector input[type='checkbox'],
.size-guides-wrapper .size-guides__selector input[type='radio'] {
  width:auto;
  float:left;
  margin-right: .75em;
  background:transparent;
  border:none;
}

.size-guides-wrapper .size-guides__selector input[type='checkbox']:checked,
.size-guides-wrapper .size-guides__selector input[type='checkbox']:not(:checked),
.size-guides-wrapper .size-guides__selector input[type='radio']:checked,
.size-guides-wrapper .size-guides__selector input[type='radio']:not(:checked) {
  background: transparent;
  position: relative;
  visibility: hidden;
  margin:0;
  padding:0;
}

.size-guides-wrapper .size-guides__selector input[type='checkbox'] + label,
.size-guides-wrapper .size-guides__selector input[type='radio'] + label {
  cursor: pointer;
}

.size-guides-wrapper .size-guides__selector input[type='checkbox']:checked + label::before,
.size-guides-wrapper .size-guides__selector input[type='checkbox']:not(:checked) + label::before,
.size-guides-wrapper .size-guides__selector input[type='radio']:checked + label::before,
.size-guides-wrapper .size-guides__selector input[type='radio']:not(:checked) + label::before {
    content:' ';
    display:inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    top:4px;
    border: 1px solid #bbb;
    background: white;
    margin-right: 1em;
    box-shadow: inset 0 1px 1px 0 rgba(0,0,0,.1);
}

.size-guides-wrapper .size-guides__selector input[type=radio]:checked + label::before,
.size-guides-wrapper .size-guides__selector input[type=radio]:not(:checked) + label::before {
  border-radius: 30px;
}

.size-guides-wrapper .size-guides__selector input[type='checkbox']:hover  + label::before,
.size-guides-wrapper .size-guides__selector input[type='radio']:hover  + label::before {
  background:#ddd;
  box-shadow: inset 0 0 0 2px white;
}

.size-guides-wrapper .size-guides__selector input[type='checkbox']:checked  + label::before,
.size-guides-wrapper .size-guides__selector input[type='radio']:checked  + label::before {
  background:black;
  box-shadow: inset 0 0 0 2px white;
}

/* .size-guides-wrapper .row-measure p { */
  /* max-width: 334px; */
  /* margin: auto;
} */
/* size guide inner popup end */

/* ── Set group in cart drawer ── */
.pgi-cart__set-pieces {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.pgi-cart__set-piece {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.pgi-cart__set-group .pgi-cart__item-img {
  align-self: flex-start;
}