/*
 * Pro Garage Performance — v904 scoped page design
 * Scope: Cart, Saved/Liket, Following only.
 *
 * The selectors in this file are deliberately rooted in one of:
 *   .cart-wrap
 *   .pgp-saved-redesign
 *   .following-wrap
 *
 * No route, request, checkout, storage, OTP, header, search, menu, or bottom
 * navigation behaviour is changed here.
 */

/* ==========================================================================
   Shared tokens and page frame
   ========================================================================== */

html body .cart-wrap,
html body .pgp-saved-redesign,
html body .following-wrap {
  --pgp-page-accent: #ed174c;
  --pgp-page-accent-dark: #b90d36;
  --pgp-page-accent-soft: #fff0f4;
  --pgp-page-ink: #17181c;
  --pgp-page-muted: #686d76;
  --pgp-page-surface: #ffffff;
  --pgp-page-subtle: #f6f7f9;
  --pgp-page-line: #e2e4e8;
  --pgp-page-line-strong: #cfd2d8;
  --pgp-page-success: #16794c;
  --pgp-page-danger: #bb153f;
  --pgp-page-shadow:
    0 24px 60px rgba(22, 24, 29, 0.08),
    0 2px 10px rgba(22, 24, 29, 0.04);
  --pgp-page-shadow-soft:
    0 12px 30px rgba(22, 24, 29, 0.06),
    0 1px 4px rgba(22, 24, 29, 0.035);
  --pgp-page-focus: 0 0 0 4px rgba(237, 23, 76, 0.14);
  --pgp-page-radius-xl: 28px;
  --pgp-page-radius-lg: 22px;
  --pgp-page-radius-md: 16px;
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 28px auto 0 !important;
  padding: 0 0 128px !important;
  color: var(--pgp-page-ink) !important;
  background: transparent !important;
  box-sizing: border-box !important;
  isolation: isolate !important;
}

html body .cart-wrap *,
html body .cart-wrap *::before,
html body .cart-wrap *::after,
html body .pgp-saved-redesign *,
html body .pgp-saved-redesign *::before,
html body .pgp-saved-redesign *::after,
html body .following-wrap *,
html body .following-wrap *::before,
html body .following-wrap *::after {
  box-sizing: border-box !important;
}

html body .cart-wrap :is(.cart-hero, .cart-card, .summary-card, .empty-card),
html body .pgp-saved-redesign :is(.saved-hero, .saved-card, .wishlist-panel, .empty-card),
html body .following-wrap :is(.following-hero, .following-card, .empty-card) {
  color: var(--pgp-page-ink) !important;
  background-color: var(--pgp-page-surface) !important;
  background-image: none !important;
  border: 1px solid var(--pgp-page-line) !important;
  box-shadow: var(--pgp-page-shadow-soft) !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body .cart-wrap .cart-hero,
html body .pgp-saved-redesign .saved-hero,
html body .following-wrap .following-hero {
  position: relative !important;
  display: block !important;
  min-height: 0 !important;
  margin: 0 0 22px !important;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 5vw, 58px) !important;
  overflow: hidden !important;
  text-align: start !important;
  border-radius: var(--pgp-page-radius-xl) !important;
  box-shadow: var(--pgp-page-shadow) !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(237, 23, 76, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #fff8fa 100%) !important;
}

html body .cart-wrap .cart-hero::before,
html body .pgp-saved-redesign .saved-hero::before,
html body .following-wrap .following-hero::before {
  content: "" !important;
  position: absolute !important;
  inset-block: 0 !important;
  inset-inline-start: 0 !important;
  width: 6px !important;
  background: linear-gradient(
    180deg,
    var(--pgp-page-accent),
    var(--pgp-page-accent-dark)
  ) !important;
  pointer-events: none !important;
}

html body .cart-wrap .cart-hero::after,
html body .pgp-saved-redesign .saved-hero::after,
html body .following-wrap .following-hero::after {
  content: "" !important;
  position: absolute !important;
  inset-block-start: -70px !important;
  inset-inline-end: -70px !important;
  width: 190px !important;
  height: 190px !important;
  border: 28px solid rgba(237, 23, 76, 0.045) !important;
  border-radius: 999px !important;
  pointer-events: none !important;
}

html body .cart-wrap .cart-hero h1,
html body .pgp-saved-redesign .saved-hero h1,
html body .following-wrap .following-hero h1 {
  position: relative !important;
  z-index: 1 !important;
  max-width: 820px !important;
  margin: 0 !important;
  color: var(--pgp-page-ink) !important;
  font-size: clamp(31px, 4.2vw, 52px) !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

html body .cart-wrap .cart-hero p,
html body .pgp-saved-redesign .saved-hero p,
html body .following-wrap .following-hero p {
  position: relative !important;
  z-index: 1 !important;
  max-width: 730px !important;
  margin: 12px 0 0 !important;
  color: var(--pgp-page-muted) !important;
  font-size: clamp(14px, 1.5vw, 16px) !important;
  font-weight: 650 !important;
  line-height: 1.75 !important;
}

html body .cart-wrap :is(button, a, input, select, textarea):focus-visible,
html body .pgp-saved-redesign :is(button, a, input, select, textarea):focus-visible,
html body .following-wrap :is(button, a, input, select, textarea):focus-visible {
  outline: 2px solid var(--pgp-page-accent) !important;
  outline-offset: 2px !important;
  box-shadow: var(--pgp-page-focus) !important;
}

/* ==========================================================================
   Cart
   ========================================================================== */

html body .cart-wrap .cart-count {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  margin: 18px 0 0 !important;
  padding: 0 16px !important;
  color: var(--pgp-page-accent-dark) !important;
  background: var(--pgp-page-accent-soft) !important;
  border: 1px solid rgba(237, 23, 76, 0.2) !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body .cart-wrap .cart-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px) !important;
  gap: 22px !important;
  align-items: start !important;
}

html body .cart-wrap .cart-list {
  display: grid !important;
  gap: 14px !important;
  min-width: 0 !important;
}

html body .cart-wrap .cart-card {
  border-radius: var(--pgp-page-radius-lg) !important;
}

html body .cart-wrap .item-card {
  display: grid !important;
  grid-template-columns: 156px minmax(0, 1fr) 132px !important;
  gap: 18px !important;
  align-items: center !important;
  min-width: 0 !important;
  padding: 16px !important;
  overflow: hidden !important;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease !important;
}

html body .cart-wrap .item-media {
  display: block !important;
  width: 100% !important;
  height: 144px !important;
  overflow: hidden !important;
  background: linear-gradient(145deg, #ffffff, #f1f3f6) !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 18px !important;
}

html body .cart-wrap .item-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 8px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  transition: transform 180ms ease !important;
}

html body .cart-wrap .item-body {
  min-width: 0 !important;
  text-align: start !important;
}

html body .cart-wrap .item-body h3 {
  margin: 0 !important;
  overflow-wrap: anywhere !important;
  color: var(--pgp-page-ink) !important;
  font-size: clamp(18px, 2vw, 24px) !important;
  font-weight: 950 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
}

html body .cart-wrap .item-meta {
  margin: 7px 0 0 !important;
  color: var(--pgp-page-muted) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
}

html body .cart-wrap .item-options {
  display: grid !important;
  gap: 6px !important;
  margin: 11px 0 0 !important;
  color: #444951 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

html body .cart-wrap .item-option-line {
  padding: 8px 10px !important;
  color: #444951 !important;
  background: var(--pgp-page-subtle) !important;
  border: 1px solid #eaebee !important;
  border-radius: 11px !important;
}

html body .cart-wrap .item-option-line strong {
  color: var(--pgp-page-accent-dark) !important;
}

html body .cart-wrap .item-price {
  margin: 13px 0 0 !important;
  color: var(--pgp-page-ink) !important;
  font-size: clamp(21px, 2.4vw, 28px) !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
}

html body .cart-wrap .item-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-width: 0 !important;
}

html body .cart-wrap .btn,
html body .cart-wrap .checkout-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-height: 44px !important;
  padding: 0 15px !important;
  border-radius: 13px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transform: none !important;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease !important;
}

html body .cart-wrap .btn-primary,
html body .cart-wrap .checkout-btn {
  color: #ffffff !important;
  background: linear-gradient(
    180deg,
    var(--pgp-page-accent),
    var(--pgp-page-accent-dark)
  ) !important;
  border: 1px solid var(--pgp-page-accent-dark) !important;
}

html body .cart-wrap .btn-secondary {
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line-strong) !important;
}

html body .cart-wrap .btn-danger,
html body .cart-wrap .remove-btn {
  color: var(--pgp-page-danger) !important;
  background: #fff5f7 !important;
  border: 1px solid rgba(187, 21, 63, 0.22) !important;
}

html body .cart-wrap .summary-card {
  position: sticky !important;
  top: 18px !important;
  padding: 22px !important;
  overflow: hidden !important;
  border-radius: var(--pgp-page-radius-lg) !important;
  border-top: 4px solid var(--pgp-page-accent) !important;
}

html body .cart-wrap .summary-title {
  margin: 0 !important;
  color: var(--pgp-page-ink) !important;
  font-size: clamp(23px, 2.4vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.035em !important;
}

html body .cart-wrap .summary-list {
  display: grid !important;
  gap: 12px !important;
  margin: 18px 0 0 !important;
  padding: 16px 0 !important;
  border-block: 1px solid var(--pgp-page-line) !important;
}

html body .cart-wrap .summary-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  color: var(--pgp-page-ink) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
}

html body .cart-wrap .summary-row.sub {
  color: var(--pgp-page-muted) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

html body .cart-wrap .summary-divider {
  height: 1px !important;
  margin: 2px 0 !important;
  background: var(--pgp-page-line) !important;
}

html body .cart-wrap .pgp-coupon-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
  margin: 16px 0 0 !important;
}

html body .cart-wrap .pgp-checkout-form {
  display: grid !important;
  gap: 10px !important;
  margin: 18px 0 0 !important;
}

html body .cart-wrap .pgp-coupon-row input,
html body .cart-wrap .pgp-checkout-form input:not([type="hidden"]),
html body .cart-wrap .pgp-checkout-form select,
html body .cart-wrap .pgp-checkout-form textarea {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 46px !important;
  padding: 0 13px !important;
  color: var(--pgp-page-ink) !important;
  background: #fafafb !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 13px !important;
  outline: none !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

html body .cart-wrap .pgp-checkout-form textarea {
  min-height: 90px !important;
  padding-block: 12px !important;
  resize: vertical !important;
}

html body .cart-wrap .pgp-coupon-row input::placeholder,
html body .cart-wrap .pgp-checkout-form input::placeholder,
html body .cart-wrap .pgp-checkout-form textarea::placeholder {
  color: #8b9098 !important;
  opacity: 1 !important;
}

html body .cart-wrap .pgp-coupon-status,
html body .cart-wrap .pgp-order-status {
  min-height: 18px !important;
  margin: 8px 0 0 !important;
  color: var(--pgp-page-success) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1.55 !important;
}

html body .cart-wrap .pgp-account-checkout-card {
  display: grid !important;
  gap: 9px !important;
  margin: 16px 0 0 !important;
  padding: 14px !important;
  color: var(--pgp-page-ink) !important;
  background: var(--pgp-page-subtle) !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 15px !important;
}

html body .cart-wrap .pgp-account-checkout-card[hidden],
html body .cart-wrap .pgp-account-option[hidden] {
  display: none !important;
}

html body .cart-wrap .pgp-account-checkout-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

html body .cart-wrap .pgp-account-checkout-head strong,
html body .cart-wrap .pgp-account-checkout-line b,
html body .cart-wrap .pgp-account-option {
  color: var(--pgp-page-ink) !important;
}

html body .cart-wrap .pgp-account-checkout-head a {
  color: var(--pgp-page-accent-dark) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

html body .cart-wrap .pgp-account-checkout-line,
html body .cart-wrap .pgp-account-privacy {
  color: var(--pgp-page-muted) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

html body .cart-wrap .pgp-account-option {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  cursor: pointer !important;
}

html body .cart-wrap .pgp-account-option input {
  flex: 0 0 auto !important;
  width: 17px !important;
  height: 17px !important;
  min-height: 17px !important;
  margin: 1px 0 0 !important;
  accent-color: var(--pgp-page-accent) !important;
}

html body .cart-wrap .checkout-btn {
  width: 100% !important;
  margin: 13px 0 0 !important;
}

html body .cart-wrap .empty-card {
  padding: clamp(36px, 7vw, 72px) 22px !important;
  color: var(--pgp-page-muted) !important;
  background:
    radial-gradient(circle at 50% 0, rgba(237, 23, 76, 0.08), transparent 43%),
    #ffffff !important;
  border-style: dashed !important;
  border-radius: var(--pgp-page-radius-lg) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
  text-align: center !important;
}

/* ==========================================================================
   Saved / Liket
   ========================================================================== */

html body .pgp-saved-redesign .saved-shell {
  display: grid !important;
  gap: 20px !important;
  min-width: 0 !important;
}

html body .pgp-saved-redesign .saved-hero {
  margin-bottom: 0 !important;
}

html body .pgp-saved-redesign .saved-card,
html body .pgp-saved-redesign .wishlist-panel {
  border-radius: var(--pgp-page-radius-lg) !important;
}

html body .pgp-saved-redesign .wishlist-panel {
  padding: clamp(18px, 3vw, 28px) !important;
}

html body .pgp-saved-redesign .wishlist-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 0 0 18px !important;
  color: var(--pgp-page-ink) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pgp-page-line) !important;
}

html body .pgp-saved-redesign .wishlist-head h2 {
  margin: 0 !important;
  color: var(--pgp-page-ink) !important;
  font-size: clamp(22px, 2.5vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}

html body .pgp-saved-redesign .wishlist-head p {
  max-width: 680px !important;
  margin: 7px 0 0 !important;
  color: var(--pgp-page-muted) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.7 !important;
}

html body .pgp-saved-redesign .wishlist-new-btn,
html body .pgp-saved-redesign .wishlist-create button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 43px !important;
  padding: 0 17px !important;
  color: #ffffff !important;
  background: linear-gradient(
    180deg,
    var(--pgp-page-accent),
    var(--pgp-page-accent-dark)
  ) !important;
  border: 1px solid var(--pgp-page-accent-dark) !important;
  border-radius: 13px !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transform: none !important;
}

html body .pgp-saved-redesign .wishlist-create {
  display: none !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 9px !important;
  margin: 16px 0 0 !important;
  padding: 14px !important;
  background: var(--pgp-page-subtle) !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 15px !important;
}

html body .pgp-saved-redesign .wishlist-create.open {
  display: grid !important;
}

html body .pgp-saved-redesign .wishlist-create input,
html body .pgp-saved-redesign .saved-product-wishlist {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 43px !important;
  padding: 0 12px !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 12px !important;
  outline: none !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

html body .pgp-saved-redesign .wishlist-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

html body .pgp-saved-redesign .wishlist-tab {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  color: #4e535b !important;
  background: var(--pgp-page-subtle) !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

html body .pgp-saved-redesign .wishlist-tab.active {
  color: #ffffff !important;
  background: var(--pgp-page-ink) !important;
  border-color: var(--pgp-page-ink) !important;
}

html body .pgp-saved-redesign .wishlist-table-wrap {
  width: 100% !important;
  margin: 18px 0 0 !important;
  overflow-x: auto !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 15px !important;
  scrollbar-width: thin !important;
}

html body .pgp-saved-redesign .wishlist-table {
  display: table !important;
  width: 100% !important;
  min-width: 650px !important;
  border-collapse: collapse !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
}

html body .pgp-saved-redesign .wishlist-row-head,
html body .pgp-saved-redesign .wishlist-row {
  display: grid !important;
  grid-template-columns: minmax(210px, 1fr) 100px 110px minmax(150px, auto) !important;
  gap: 14px !important;
  align-items: center !important;
  min-width: 650px !important;
  padding: 13px 15px !important;
  border-bottom: 1px solid var(--pgp-page-line) !important;
}

html body .pgp-saved-redesign .wishlist-row-head {
  color: #555a63 !important;
  background: var(--pgp-page-subtle) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.035em !important;
}

html body .pgp-saved-redesign .wishlist-row:last-child {
  border-bottom: 0 !important;
}

html body .pgp-saved-redesign .wishlist-name-btn {
  min-width: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: var(--pgp-page-ink) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-align: start !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

html body .pgp-saved-redesign .wishlist-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 7px !important;
}

html body .pgp-saved-redesign .wishlist-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 11px !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  cursor: pointer !important;
}

html body .pgp-saved-redesign .wishlist-action-btn.delete {
  color: var(--pgp-page-danger) !important;
  background: #fff5f7 !important;
  border-color: rgba(187, 21, 63, 0.2) !important;
}

html body .pgp-saved-redesign #savedContent {
  min-width: 0 !important;
}

html body .pgp-saved-redesign .pgp-saved-products-grid,
html body .pgp-saved-redesign .saved-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

html body .pgp-saved-redesign .saved-product-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  min-height: 100% !important;
  overflow: hidden !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 22px rgba(22, 24, 29, 0.045) !important;
  text-shadow: none !important;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease !important;
}

html body .pgp-saved-redesign .saved-product-visual {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  background: linear-gradient(145deg, #ffffff, #f2f3f6) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pgp-page-line) !important;
}

html body .pgp-saved-redesign .saved-product-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 10px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  transition: transform 180ms ease !important;
}

html body .pgp-saved-redesign .price-tag {
  position: absolute !important;
  z-index: 3 !important;
  inset-block-start: 12px !important;
  inset-inline-start: 12px !important;
  inset-inline-end: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-height: 31px !important;
  margin: 0 !important;
  padding: 0 11px !important;
  color: #ffffff !important;
  background: rgba(23, 24, 28, 0.92) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 7px 18px rgba(22, 24, 29, 0.13) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body .pgp-saved-redesign .saved-product-card .heart,
html body .pgp-saved-redesign .saved-product-card .remove-btn {
  position: absolute !important;
  z-index: 4 !important;
  inset-block-start: 12px !important;
  inset-inline-end: 12px !important;
  inset-inline-start: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pgp-page-accent) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(237, 23, 76, 0.18) !important;
  border-radius: 999px !important;
  box-shadow: 0 7px 18px rgba(22, 24, 29, 0.1) !important;
  cursor: pointer !important;
}

html body .pgp-saved-redesign .product-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-width: 0 !important;
  padding: 16px !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  text-align: start !important;
}

html body .pgp-saved-redesign .garage-name {
  margin: 0 0 7px !important;
  overflow: hidden !important;
  color: var(--pgp-page-accent-dark) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body .pgp-saved-redesign .product-name {
  display: -webkit-box !important;
  min-height: 2.7em !important;
  margin: 0 !important;
  overflow: hidden !important;
  overflow-wrap: anywhere !important;
  color: var(--pgp-page-ink) !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

html body .pgp-saved-redesign .product-sub,
html body .pgp-saved-redesign .pgp-condition-line {
  margin: 8px 0 0 !important;
  color: var(--pgp-page-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

html body .pgp-saved-redesign .product-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: auto !important;
  padding-top: 15px !important;
}

html body .pgp-saved-redesign .product-actions :is(.buy-now-btn, .iq-open-btn, button, a) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 41px !important;
  padding: 0 12px !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line-strong) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

html body .pgp-saved-redesign .product-actions .buy-now-btn {
  color: #ffffff !important;
  background: var(--pgp-page-ink) !important;
  border-color: var(--pgp-page-ink) !important;
}

html body .pgp-saved-redesign .empty-card {
  padding: clamp(36px, 7vw, 72px) 22px !important;
  color: var(--pgp-page-muted) !important;
  background:
    radial-gradient(circle at 50% 0, rgba(237, 23, 76, 0.08), transparent 43%),
    #ffffff !important;
  border-style: dashed !important;
  border-radius: var(--pgp-page-radius-lg) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
  text-align: center !important;
}

html body .pgp-saved-redesign .pgp-confirm-backdrop {
  position: fixed !important;
  z-index: 2147483000 !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  padding: 20px !important;
  background: rgba(13, 15, 19, 0.58) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

html body .pgp-saved-redesign .pgp-confirm-backdrop[hidden] {
  display: none !important;
}

html body .pgp-saved-redesign .pgp-confirm-box {
  width: min(430px, 100%) !important;
  padding: 24px !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 20px !important;
  box-shadow: 0 26px 80px rgba(13, 15, 19, 0.28) !important;
  text-align: start !important;
}

html body .pgp-saved-redesign .pgp-confirm-title {
  margin: 0 !important;
  color: var(--pgp-page-ink) !important;
  font-size: 23px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

html body .pgp-saved-redesign .pgp-confirm-text {
  margin: 10px 0 0 !important;
  color: var(--pgp-page-muted) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.7 !important;
}

html body .pgp-saved-redesign .pgp-confirm-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
  margin: 20px 0 0 !important;
}

html body .pgp-saved-redesign .pgp-confirm-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 43px !important;
  padding: 0 14px !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line-strong) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

html body .pgp-saved-redesign .pgp-confirm-yes {
  color: #ffffff !important;
  background: var(--pgp-page-danger) !important;
  border-color: var(--pgp-page-danger) !important;
}

/* ==========================================================================
   Following
   ========================================================================== */

html body .following-wrap .following-shell {
  display: grid !important;
  gap: 20px !important;
  min-width: 0 !important;
}

html body .following-wrap .following-hero {
  margin-bottom: 0 !important;
}

html body .following-wrap .following-count {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  margin: 18px 0 0 !important;
  padding: 0 16px !important;
  color: #4c5159 !important;
  background: var(--pgp-page-accent-soft) !important;
  border: 1px solid rgba(237, 23, 76, 0.2) !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

html body .following-wrap .following-count strong {
  margin-inline: 4px !important;
  color: var(--pgp-page-accent-dark) !important;
  font-weight: 950 !important;
}

html body .following-wrap .following-list {
  display: grid !important;
  gap: 18px !important;
  min-width: 0 !important;
}

html body .following-wrap .following-card {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: var(--pgp-page-radius-xl) !important;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease !important;
}

html body .following-wrap .following-card .garage-top {
  position: relative !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  min-width: 0 !important;
  padding: 18px 20px !important;
  overflow: visible !important;
  direction: ltr !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pgp-page-line) !important;
}

html body .following-wrap .following-card .garage-brand {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 13px !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  direction: ltr !important;
  text-align: left !important;
}

html body .following-wrap .following-card .garage-logo {
  flex: 0 0 64px !important;
  display: block !important;
  width: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  height: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 22px rgba(22, 24, 29, 0.08) !important;
}

html body .following-wrap .following-card .garage-logo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 3px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: inherit !important;
}

html body .following-wrap .following-card .garage-name-link {
  display: inline-block !important;
  min-width: 0 !important;
  color: var(--pgp-page-ink) !important;
  text-decoration: none !important;
}

html body .following-wrap .following-card .garage-name {
  margin: 0 !important;
  overflow-wrap: anywhere !important;
  color: var(--pgp-page-ink) !important;
  font-size: clamp(19px, 2vw, 25px) !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  text-align: left !important;
}

html body .following-wrap .following-card .garage-meta {
  margin: 6px 0 0 !important;
  overflow: hidden !important;
  color: var(--pgp-page-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
  text-align: left !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body .following-wrap .following-card .garage-top > .pgp-standalone-follow-toggle,
html body .following-wrap .following-card .garage-top > .pgp-more-button,
html body .following-wrap .following-card .garage-top > button.dots {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: pointer !important;
}

html body .following-wrap .following-card .garage-top > .pgp-standalone-follow-toggle {
  color: var(--pgp-page-accent-dark) !important;
  background: var(--pgp-page-accent-soft) !important;
  border-color: rgba(237, 23, 76, 0.2) !important;
}

html body .following-wrap .following-card .garage-top > .pgp-section-view-tools {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  margin: 0 !important;
  padding: 0 3px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body .following-wrap .following-card .product-scroll-wrap {
  position: relative !important;
  min-width: 0 !important;
  padding: 16px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 0 !important;
}

html body .following-wrap .following-card .product-row {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 0 5px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  direction: ltr !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  overscroll-behavior-inline: contain !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}

html body .following-wrap .following-card .product-row::-webkit-scrollbar {
  display: none !important;
}

html body .following-wrap .following-card .product-row > .product-card {
  position: relative !important;
  flex: 0 0 calc((100% - 16px) / 2) !important;
  width: calc((100% - 16px) / 2) !important;
  min-width: calc((100% - 16px) / 2) !important;
  max-width: calc((100% - 16px) / 2) !important;
  height: auto !important;
  min-height: 330px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  direction: initial !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  border: 1px solid var(--pgp-page-line) !important;
  border-radius: 19px !important;
  box-shadow: 0 8px 22px rgba(22, 24, 29, 0.045) !important;
  scroll-snap-align: start !important;
  scroll-snap-stop: normal !important;
  text-shadow: none !important;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease !important;
}

html body .following-wrap .following-card .product-link {
  display: block !important;
  color: var(--pgp-page-ink) !important;
  text-decoration: none !important;
}

html body .following-wrap .following-card .product-media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 228px !important;
  overflow: hidden !important;
  background: linear-gradient(145deg, #ffffff, #f1f3f6) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pgp-page-line) !important;
}

html body .following-wrap .following-card .product-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 10px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  transition: transform 180ms ease !important;
}

html body .following-wrap .following-card .price-tag,
html body .following-wrap .following-card .view-tag {
  position: absolute !important;
  z-index: 4 !important;
  inset-block-start: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 31px !important;
  margin: 0 !important;
  padding: 0 11px !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 7px 18px rgba(22, 24, 29, 0.13) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body .following-wrap .following-card .price-tag {
  inset-inline-start: 12px !important;
  inset-inline-end: auto !important;
  background: rgba(23, 24, 28, 0.92) !important;
}

html body .following-wrap .following-card .view-tag {
  inset-inline-end: 12px !important;
  inset-inline-start: auto !important;
  background: rgba(237, 23, 76, 0.93) !important;
}

html body .following-wrap .following-card .product-body {
  padding: 15px 15px 18px !important;
  color: var(--pgp-page-ink) !important;
  background: #ffffff !important;
  text-align: start !important;
}

html body .following-wrap .following-card .product-name {
  display: -webkit-box !important;
  min-height: 2.65em !important;
  margin: 0 !important;
  overflow: hidden !important;
  overflow-wrap: anywhere !important;
  color: var(--pgp-page-ink) !important;
  font-size: clamp(15px, 1.45vw, 18px) !important;
  font-weight: 950 !important;
  line-height: 1.32 !important;
  text-align: start !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

html body .following-wrap .following-card .product-card > .heart {
  position: absolute !important;
  z-index: 8 !important;
  inset-block-start: auto !important;
  inset-block-end: 12px !important;
  inset-inline-end: 12px !important;
  inset-inline-start: auto !important;
  margin: 0 !important;
}

html body .following-wrap .following-card .shop-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 20px 18px !important;
  background: #ffffff !important;
}

html body .following-wrap .following-card .shop-row a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  color: #ffffff !important;
  background: var(--pgp-page-ink) !important;
  border: 1px solid var(--pgp-page-ink) !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

html body .following-wrap .following-card .shop-row h3 {
  margin: 0 !important;
  color: inherit !important;
  font: inherit !important;
}

html body .following-wrap .empty-card {
  padding: clamp(36px, 7vw, 72px) 22px !important;
  color: var(--pgp-page-muted) !important;
  background:
    radial-gradient(circle at 50% 0, rgba(237, 23, 76, 0.08), transparent 43%),
    #ffffff !important;
  border-style: dashed !important;
  border-radius: var(--pgp-page-radius-lg) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
  text-align: center !important;
}

/* ==========================================================================
   Fine-pointer interaction — never changes geometry
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
  html body .cart-wrap .item-card:hover,
  html body .pgp-saved-redesign .saved-product-card:hover,
  html body .following-wrap .following-card:hover {
    border-color: var(--pgp-page-line-strong) !important;
    box-shadow: 0 16px 38px rgba(22, 24, 29, 0.09) !important;
  }

  html body .cart-wrap .item-card:hover .item-media img,
  html body .pgp-saved-redesign .saved-product-card:hover .saved-product-visual img,
  html body .following-wrap .following-card .product-card:hover .product-media img {
    transform: scale(1.025) !important;
  }

  html body .cart-wrap :is(.btn-primary, .checkout-btn):hover,
  html body .pgp-saved-redesign :is(.wishlist-new-btn, .wishlist-create button):hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, #f4265a, #a90b31) !important;
    border-color: #a90b31 !important;
    transform: translateY(-1px) !important;
  }

  html body .cart-wrap .btn-secondary:hover,
  html body .pgp-saved-redesign .product-actions :is(.buy-now-btn, .iq-open-btn, button, a):hover,
  html body .following-wrap .following-card .shop-row a:hover {
    color: #ffffff !important;
    background: var(--pgp-page-accent-dark) !important;
    border-color: var(--pgp-page-accent-dark) !important;
  }

  html body .cart-wrap :is(.btn-danger, .remove-btn):hover,
  html body .pgp-saved-redesign .wishlist-action-btn.delete:hover {
    color: #ffffff !important;
    background: var(--pgp-page-danger) !important;
    border-color: var(--pgp-page-danger) !important;
  }

  html body .following-wrap .following-card .product-row > .product-card:hover {
    border-color: var(--pgp-page-line-strong) !important;
    box-shadow: 0 13px 30px rgba(22, 24, 29, 0.085) !important;
  }
}

/* ==========================================================================
   Responsive layouts
   ========================================================================== */

@media (max-width: 1020px) {
  html body .cart-wrap .cart-shell {
    grid-template-columns: 1fr !important;
  }

  html body .cart-wrap .summary-card {
    position: static !important;
  }

  html body .pgp-saved-redesign .pgp-saved-products-grid,
  html body .pgp-saved-redesign .saved-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .following-wrap .following-card .product-row > .product-card {
    flex-basis: calc((100% - 16px) / 2) !important;
    width: calc((100% - 16px) / 2) !important;
    min-width: calc((100% - 16px) / 2) !important;
    max-width: calc((100% - 16px) / 2) !important;
  }
}

@media (max-width: 760px) {
  html body .cart-wrap,
  html body .pgp-saved-redesign,
  html body .following-wrap {
    width: calc(100% - 24px) !important;
    margin-top: 16px !important;
    padding-bottom: 114px !important;
  }

  html body .cart-wrap .cart-hero,
  html body .pgp-saved-redesign .saved-hero,
  html body .following-wrap .following-hero {
    margin-bottom: 16px !important;
    padding: 24px 20px !important;
    border-radius: 22px !important;
  }

  html body .pgp-saved-redesign .saved-hero,
  html body .following-wrap .following-hero {
    margin-bottom: 0 !important;
  }

  html body .cart-wrap .cart-hero::before,
  html body .pgp-saved-redesign .saved-hero::before,
  html body .following-wrap .following-hero::before {
    width: 5px !important;
  }

  html body .cart-wrap .cart-hero::after,
  html body .pgp-saved-redesign .saved-hero::after,
  html body .following-wrap .following-hero::after {
    width: 150px !important;
    height: 150px !important;
  }

  html body .cart-wrap .item-card {
    grid-template-columns: 124px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 13px !important;
  }

  html body .cart-wrap .item-media {
    height: 124px !important;
  }

  html body .cart-wrap .item-actions {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .pgp-saved-redesign .wishlist-head {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  html body .pgp-saved-redesign .wishlist-new-btn {
    align-self: flex-start !important;
  }

  html body .pgp-saved-redesign .saved-product-visual {
    height: 190px !important;
  }

  html body .following-wrap .following-card .garage-top {
    gap: 7px !important;
    padding: 15px !important;
  }

  html body .following-wrap .following-card .garage-brand {
    gap: 10px !important;
  }

  html body .following-wrap .following-card .garage-logo {
    flex-basis: 54px !important;
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
  }

  html body .following-wrap .following-card .garage-top > .pgp-standalone-follow-toggle,
  html body .following-wrap .following-card .garage-top > .pgp-more-button,
  html body .following-wrap .following-card .garage-top > button.dots {
    flex-basis: 34px !important;
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
  }

  html body .following-wrap .following-card .product-scroll-wrap {
    padding: 12px !important;
  }

  html body .following-wrap .following-card .product-row {
    gap: 10px !important;
  }

  html body .following-wrap .following-card .product-row > .product-card {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 310px !important;
    border-radius: 16px !important;
  }

  html body .following-wrap .following-card .product-media {
    height: 220px !important;
  }

  html body .following-wrap .following-card .shop-row {
    padding: 0 15px 15px !important;
  }
}

@media (max-width: 560px) {
  html body .cart-wrap .item-card {
    grid-template-columns: 1fr !important;
  }

  html body .cart-wrap .item-media {
    height: min(62vw, 220px) !important;
  }

  html body .cart-wrap .item-actions {
    grid-column: auto !important;
  }

  html body .cart-wrap .summary-card {
    padding: 18px !important;
  }

  html body .cart-wrap .pgp-coupon-row {
    grid-template-columns: 1fr !important;
  }

  html body .pgp-saved-redesign .pgp-saved-products-grid,
  html body .pgp-saved-redesign .saved-products-grid {
    grid-template-columns: 1fr !important;
  }

  html body .pgp-saved-redesign .saved-product-visual {
    height: min(66vw, 280px) !important;
  }

  html body .pgp-saved-redesign .wishlist-create {
    grid-template-columns: 1fr !important;
  }

  html body .following-wrap .following-card .garage-top {
    flex-wrap: wrap !important;
  }

  html body .following-wrap .following-card .garage-brand {
    flex-basis: calc(100% - 82px) !important;
  }

  html body .following-wrap .following-card .product-row > .product-card {
    min-height: 285px !important;
  }

  html body .following-wrap .following-card .product-media {
    height: min(61vw, 215px) !important;
  }
}

@media (max-width: 390px) {
  html body .cart-wrap,
  html body .pgp-saved-redesign,
  html body .following-wrap {
    width: calc(100% - 16px) !important;
  }

  html body .cart-wrap .item-actions,
  html body .pgp-saved-redesign .product-actions,
  html body .pgp-saved-redesign .pgp-confirm-actions {
    grid-template-columns: 1fr !important;
  }

  html body .following-wrap .following-card .garage-name {
    font-size: 18px !important;
  }

  html body .following-wrap .following-card .garage-meta {
    font-size: 11px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .cart-wrap *,
  html body .pgp-saved-redesign *,
  html body .following-wrap * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
