html.wc-lpop-open {
  overflow: hidden;
}

.wc-lpop {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  z-index: 9995;
  width: min(520px, 100vw - 32px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--wc-charcoal);
  border-radius: 20px;
  background: var(--wc-cream);
  color: var(--wc-charcoal);
  font-family: var(--wc-font-body);
  box-shadow: 8px 10px 0 0 color-mix(in srgb, var(--wc-charcoal) 35%, transparent);
}
.wc-lpop *,
.wc-lpop *::before,
.wc-lpop *::after {
  box-sizing: border-box;
}
.wc-lpop[open] {
  display: flex;
}
.wc-lpop:has(.wc-lpop__media) {
  width: min(780px, 100vw - 32px);
}
.wc-lpop::backdrop {
  background: rgba(26, 26, 24, 0.62);
  backdrop-filter: blur(2px);
}
@media (prefers-reduced-motion: no-preference) {
  .wc-lpop[open] {
    animation: wc-lpop-in 0.22s ease-out both;
  }
}

@keyframes wc-lpop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.wc-lpop__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.wc-lpop__close {
  display: inline-flex;
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--wc-cream);
  border-radius: 999px;
  background: var(--wc-charcoal);
  color: var(--wc-cream);
  cursor: var(--wc-cursor-action, pointer);
  transition: transform 0.12s ease;
}

.wc-lpop__close:hover {
  transform: scale(1.08);
}

.wc-lpop__close:focus-visible {
  outline: 3px solid var(--wc-charcoal);
  outline-offset: 3px;
}

.wc-lpop__close svg {
  display: block;
}

.wc-lpop__media {
  margin: 0;
  overflow: hidden;
  background: var(--wc-charcoal);
}

.wc-lpop__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wc-lpop__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(22px, 4vw, 32px);
  padding-block-start: 60px;
}

.wc-lpop__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wc-lpop__heading {
  margin: 0;
  font-family: var(--wc-font-display);
  font-weight: 400;
  font-size: clamp(30px, 5.2vw, 46px);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.wc-lpop__hl {
  color: var(--wc-red);
}

.wc-lpop__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.wc-lpop__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.wc-lpop__store {
  margin: 0;
}

.wc-lpop__store-link {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.12s ease;
}

.wc-lpop__store-link:hover {
  transform: translateY(-2px);
}

.wc-lpop__store-link:focus-visible {
  outline: 3px solid var(--wc-charcoal);
  outline-offset: 3px;
}

.wc-lpop__store-badge {
  display: block;
  width: auto;
  height: 3em;
  max-width: 100%;
  object-fit: contain;
}

.wc-lpop__close-label,
.wc-lpop__store-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip-path: inset(50%);
  white-space: nowrap;
}

html[data-wc-images=hide] .wc-lpop__store-label {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip-path: none !important;
  white-space: normal !important;
}
html[data-wc-images=hide] .wc-lpop__store-link {
  padding: 10px 24px 8px;
  border: 1px solid var(--wc-charcoal);
  border-radius: 100px;
  background: var(--wc-charcoal);
  color: var(--wc-cream);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
html[data-wc-images=hide] .wc-lpop__media {
  display: none;
}
html[data-wc-images=hide] .wc-lpop:has(.wc-lpop__media) {
  width: min(520px, 100vw - 32px);
}
html[data-wc-images=hide] .wc-lpop__card:has(.wc-lpop__media) {
  grid-template-columns: minmax(0, 1fr);
}
html[data-wc-images=hide] .wc-lpop__card:has(.wc-lpop__media) .wc-lpop__body {
  padding-block-start: 60px;
}

.wc-lpop__more {
  margin: 4px 0 0;
}

.wc-lpop__link {
  display: inline-block;
  padding: 4px 2px;
  color: inherit;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 0.12s ease;
}

.wc-lpop__link:hover {
  text-decoration-thickness: 3px;
}

.wc-lpop__link:focus-visible {
  outline: 3px solid var(--wc-charcoal);
  outline-offset: 2px;
  border-radius: 3px;
}

@media (max-width: 699px) {
  .wc-lpop__card:has(.wc-lpop__media) .wc-lpop__body {
    padding-block-start: clamp(22px, 4vw, 32px);
  }
}
@media (min-width: 700px) {
  .wc-lpop__card:has(.wc-lpop__media) {
    grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
    align-content: stretch;
  }
  .wc-lpop__media img {
    height: 100%;
    min-height: 300px;
  }
}
@media (max-height: 620px) {
  .wc-lpop__media {
    display: none;
  }
  .wc-lpop__card:has(.wc-lpop__media) {
    grid-template-columns: minmax(0, 1fr);
  }
  .wc-lpop__card:has(.wc-lpop__media) .wc-lpop__body {
    padding-block-start: 60px;
  }
  .wc-lpop__heading {
    font-size: clamp(26px, 4.4vw, 34px);
  }
}
