/* WarmRelief U.S. PDP-only polish. Keep every selector scoped to .wr-pdp. */
.wr-pdp {
  --wr-navy: #0a2b4c;
  --wr-navy-deep: #071b31;
  --wr-coral: #ff7a59;
  --wr-amber: #ffb547;
  --wr-ink-soft: #5a6978;
  --wr-line: #e4e9ee;
  --wr-paper: #ffffff;
  --wr-paper-soft: #f6f8fa;
  --wr-shadow: 0 18px 50px rgba(10, 43, 76, 0.1);
}

.wr-pdp main {
  overflow: clip;
}

.wr-pdp .hero {
  padding-block: clamp(30px, 5vw, 64px);
  background: linear-gradient(180deg, #fff 0%, #f0f5f9 100%);
}

.wr-pdp .hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.wr-pdp .wr-hero-media {
  position: sticky;
  top: 24px;
}

.wr-pdp .wr-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 43, 76, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--wr-shadow);
  isolation: isolate;
}

.wr-pdp .wr-gallery-stage::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  opacity: 0;
  transition: opacity 180ms ease;
  background:
    radial-gradient(58% 42% at 50% 66%, rgba(255, 181, 71, 0.7), rgba(255, 122, 89, 0.2) 47%, transparent 73%),
    radial-gradient(120% 92% at 50% 14%, #17456f 0%, var(--wr-navy) 58%, var(--wr-navy-deep) 100%);
}

.wr-pdp .wr-gallery-stage--heat::before {
  opacity: 1;
}

.wr-pdp .wr-gallery-stage img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.wr-pdp .wr-gallery-stage--heat img {
  mix-blend-mode: screen;
}

.wr-pdp .wr-gallery-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.32);
}

.wr-pdp .wr-gallery-stage:not(.wr-gallery-stage--heat) .wr-gallery-caption {
  color: var(--wr-navy);
  text-shadow: none;
}

.wr-pdp .wr-gallery-caption span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wr-pdp .wr-gallery-caption strong {
  font-size: 0.92rem;
}

.wr-pdp .wr-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.wr-pdp .wr-gallery-thumb {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--wr-line);
  border-radius: 14px;
  background: #fff;
  color: var(--wr-navy);
  cursor: pointer;
  aspect-ratio: 1 / 0.82;
}

.wr-pdp .wr-gallery-thumb.is-active {
  border-color: var(--wr-coral);
  box-shadow: 0 0 0 2px rgba(255, 122, 89, 0.16);
}

.wr-pdp .wr-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-pdp .wr-gallery-thumb span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(8px);
}

.wr-pdp .hero-copy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--wr-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--wr-shadow);
}

.wr-pdp .hero-copy h1 {
  max-width: 15ch;
  margin-top: 12px;
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.wr-pdp .hero-copy mark {
  padding-inline: 0.13em;
  border-radius: 0.18em;
  background: linear-gradient(180deg, rgba(255, 181, 71, 0.3), rgba(255, 122, 89, 0.22));
}

.wr-pdp .hero-copy .hero-lead {
  font-size: 1.01rem;
  line-height: 1.62;
}

.wr-pdp .wr-fact-strip {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wr-line);
}

.wr-pdp .wr-fact-strip span {
  background: var(--wr-paper-soft);
}

.wr-pdp .hero-copy .buybox {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wr-pdp .hero-copy .buybox-top {
  align-items: baseline;
  margin-bottom: 12px;
}

.wr-pdp .hero-copy .buybox-top > span:last-child {
  max-width: 34ch;
  font-size: 0.76rem;
  line-height: 1.35;
  text-align: right;
}

.wr-pdp .hero-copy .us-offer-card {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  padding: 13px 14px;
  border-width: 1px;
  border-color: var(--wr-line);
  border-radius: 14px;
}

.wr-pdp .hero-copy .us-offer-card.selected {
  border-color: var(--wr-coral);
  background: rgba(255, 122, 89, 0.045);
  box-shadow: 0 0 0 1px var(--wr-coral);
}

.wr-pdp .hero-copy .wr-package-radio {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid #c2ccd5;
  border-radius: 50%;
}

.wr-pdp .hero-copy .us-offer-card.selected .wr-package-radio {
  border-color: var(--wr-coral);
}

.wr-pdp .hero-copy .us-offer-card.selected .wr-package-radio::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wr-coral);
  content: '';
}

.wr-pdp .hero-copy .us-offer-card .package-badge {
  grid-column: 2 / -1;
}

.wr-pdp .hero-copy .us-offer-card .package-title,
.wr-pdp .hero-copy .us-offer-card .package-subtitle {
  grid-column: 2;
}

.wr-pdp .hero-copy .us-offer-card .package-price-block {
  grid-column: 3;
}

.wr-pdp .hero-copy .btn-atc {
  min-height: 54px;
  margin-top: 14px;
}

.wr-pdp .wr-hero-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--wr-line);
}

.wr-pdp .wr-hero-details .hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
}

.wr-pdp .wr-hero-details .hero-checks li {
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.45;
}

.wr-pdp .wr-placement-line {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 122, 89, 0.24);
  border-radius: 13px;
  background: rgba(255, 122, 89, 0.065);
}

.wr-pdp .section {
  padding-block: clamp(56px, 7vw, 88px);
}

.wr-pdp .mood-pain .narrow {
  max-width: 820px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(10, 43, 76, 0.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(10, 43, 76, 0.07);
}

.wr-pdp .mood-pain .section-head::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 20px auto 24px;
  border-radius: 999px;
  background: var(--wr-coral);
  content: '';
}

.wr-pdp .mood-use .split {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.wr-pdp .mood-use .rounded-media {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  box-shadow: var(--wr-shadow);
}

.wr-pdp .wr-use-cards .info-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 20px;
}

.wr-pdp .wr-icon-slot {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid rgba(255, 122, 89, 0.18);
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(255, 181, 71, 0.22), rgba(255, 122, 89, 0.14));
}

.wr-pdp .wr-icon-slot::before {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 122, 89, 0.65);
  border-radius: 4px;
  content: '';
}

.wr-pdp .wr-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.wr-pdp .wr-difference-grid li {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--wr-line);
  border-radius: 16px;
  background: var(--wr-paper-soft);
  color: var(--wr-navy);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.wr-pdp .mood-mechanism {
  background:
    radial-gradient(60% 90% at 50% 100%, rgba(255, 122, 89, 0.13), transparent 70%),
    var(--wr-navy);
}

.wr-pdp .mood-mechanism .wr-mechanism-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0;
}

.wr-pdp .wr-mechanism-flow span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.wr-pdp .wr-mechanism-flow i {
  color: var(--wr-coral);
  font-style: normal;
  font-weight: 900;
}

.wr-pdp .mood-mechanism .step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wr-pdp .mood-mechanism .step-row {
  display: block;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.wr-pdp .mood-mechanism .step-row > span {
  color: var(--wr-coral);
  font-size: 0.75rem;
}

.wr-pdp .mood-mechanism .step-row h3 {
  margin-top: 10px;
}

.wr-pdp .wr-fact-card {
  position: relative;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(10, 43, 76, 0.05);
}

.wr-pdp .wr-fact-card .wr-icon-slot {
  position: absolute;
  top: 22px;
  right: 22px;
}

.wr-pdp .wr-fact-tag {
  display: block;
  padding-right: 50px;
  color: var(--wr-coral);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wr-pdp .wr-fact-card h3 {
  max-width: 16ch;
  margin-top: 16px;
}

.wr-pdp .comparison-table {
  border: 1px solid var(--wr-line);
}

.wr-pdp .comparison-head strong:nth-child(2),
.wr-pdp .comparison-row span:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 181, 71, 0.14), rgba(255, 122, 89, 0.07));
}

.wr-pdp .comparison-head strong:nth-child(2) {
  color: var(--wr-navy);
  font-size: 1.06rem;
}

.wr-pdp .wr-bridge-callout {
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 122, 89, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, rgba(255, 181, 71, 0.12));
}

.wr-pdp .final-offer .wr-offer-grid {
  max-width: 620px;
}

.wr-pdp .faq-item button {
  min-height: 58px;
  padding-block: 16px;
}

.wr-pdp .faq-item button:focus-visible,
.wr-pdp .wr-gallery-thumb:focus-visible,
.wr-pdp .us-offer-card:focus-visible {
  outline: 3px solid rgba(255, 122, 89, 0.42);
  outline-offset: 3px;
}

.wr-pdp .wr-safety {
  padding-block: 42px;
}

.wr-pdp .sticky-cta strong,
.wr-pdp .sticky-cta span {
  transition: opacity 120ms ease;
}

@media (max-width: 1023px) {
  .wr-pdp .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
  }

  .wr-pdp .wr-gallery-stage {
    min-height: 420px;
  }

  .wr-pdp .wr-difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wr-pdp .hero {
    padding: 18px 0 46px;
  }

  .wr-pdp .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wr-pdp .wr-hero-media {
    position: static;
  }

  .wr-pdp .wr-gallery-stage {
    min-height: 290px;
    border-radius: 18px;
  }

  .wr-pdp .wr-gallery-stage img {
    max-height: 320px;
  }

  .wr-pdp .wr-gallery-caption {
    right: 14px;
    bottom: 13px;
    left: 14px;
  }

  .wr-pdp .wr-gallery-caption strong {
    max-width: 16ch;
    text-align: right;
  }

  .wr-pdp .wr-gallery-thumbs {
    gap: 8px;
    margin-top: 8px;
  }

  .wr-pdp .wr-gallery-thumb {
    border-radius: 11px;
    aspect-ratio: 1 / 0.76;
  }

  .wr-pdp .hero-copy {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .wr-pdp .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9.6vw, 2.65rem);
  }

  .wr-pdp .hero-copy .buybox-top {
    display: grid;
    gap: 4px;
  }

  .wr-pdp .hero-copy .buybox-top > span:last-child {
    max-width: none;
    text-align: left;
  }

  .wr-pdp .hero-copy .us-offer-card {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .wr-pdp .hero-copy .us-offer-card .package-price-block {
    grid-column: 2;
    text-align: left;
  }

  .wr-pdp .hero-copy .us-offer-card .package-shipping {
    grid-column: 1 / -1;
  }

  .wr-pdp .wr-hero-details .hero-checks {
    grid-template-columns: 1fr;
  }

  .wr-pdp .mood-use .split,
  .wr-pdp .mood-mechanism .step-list {
    grid-template-columns: 1fr;
  }

  .wr-pdp .mood-use .rounded-media {
    min-height: 0;
  }

  .wr-pdp .wr-difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wr-pdp .wr-difference-grid li {
    min-height: 150px;
    padding: 16px 12px;
    font-size: 0.87rem;
  }

  .wr-pdp .mood-mechanism .wr-mechanism-flow {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .wr-pdp .wr-mechanism-flow i {
    transform: rotate(90deg);
  }

  .wr-pdp .comparison-table {
    display: grid;
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .wr-pdp .comparison-head {
    display: none;
  }

  .wr-pdp .comparison-row {
    min-width: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--wr-line);
    border-radius: 14px;
    background: #fff;
  }

  .wr-pdp .comparison-row > * {
    padding: 12px 14px;
    border-bottom: 1px solid var(--wr-line);
  }

  .wr-pdp .comparison-row > *:last-child {
    border-bottom: 0;
  }

  .wr-pdp .comparison-row strong {
    background: var(--wr-navy);
    color: #fff;
  }

  .wr-pdp .comparison-row span {
    display: grid;
    grid-template-columns: minmax(108px, 0.42fr) 1fr;
    align-items: start;
    gap: 10px;
  }

  .wr-pdp .comparison-row span::before {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--wr-ink-soft) !important;
    content: attr(data-option) !important;
    font-size: 0.68rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .wr-pdp .comparison-row span:nth-child(2)::before {
    color: var(--wr-coral) !important;
  }

  .wr-pdp .comparison-scroll-hint {
    display: none;
  }

  .wr-pdp .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 10px 10px 10px 14px;
  }
}

@media (max-width: 390px) {
  .wr-pdp .wr-difference-grid {
    grid-template-columns: 1fr;
  }

  .wr-pdp .wr-difference-grid li {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wr-pdp .wr-gallery-stage::before,
  .wr-pdp .sticky-cta strong,
  .wr-pdp .sticky-cta span {
    transition: none;
  }
}
