/* Promo strip — product sheet (price visible). Equal-height cards for Ver alignment. */
.promo-product {
  --pp-bg: #fff;
  --pp-ink: #1a1a1a;
  --pp-muted: #8a8078;
  --pp-accent: #b8956c;
  --pp-espresso: #3d2e24;
  --pp-time: 0.3s;
  --pp-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --pp-title-lines: 2;
  --pp-title-lh: 1.25;
  --pp-title-size: 14px;
  --pp-btn-space: 44px;

  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 28px 18px var(--pp-btn-space);
  border-radius: 8px;
  background-color: var(--pp-bg);
  color: var(--pp-muted);
  line-height: 1.45;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: box-shadow var(--pp-time) var(--pp-ease);
  box-shadow: 0 22px 20px -16px rgba(0, 0, 0, 0.14);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  overflow: visible;
  box-sizing: border-box;
}

.promo-product:hover,
.promo-product:focus-visible {
  box-shadow: 0 28px 24px -16px rgba(0, 0, 0, 0.2);
}

.promo-product:focus-visible {
  outline: 2px solid var(--pp-accent);
  outline-offset: 3px;
}

.promo-product__price {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  top: -18px;
  left: -14px;
  width: 72px;
  height: 72px;
  padding: 6px;
  background-color: rgba(26, 26, 26, 0.95);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

.promo-product__price-off {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.78);
  line-height: 1;
}

.promo-product__price-now {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  max-width: 100%;
  word-break: break-word;
  color: #f7f3ec;
}

.promo-product__image {
  display: block;
  flex-shrink: 0;
  width: 132%;
  max-width: none;
  height: auto;
  margin: 4px -16% 18px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  background: #f0f0f0;
  vertical-align: top;
}

.promo-product__image--empty {
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(26, 26, 26, 0.35);
}

.promo-product__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
  text-align: center;
}

.promo-product__title {
  margin: 0;
  width: 100%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--pp-title-size);
  font-weight: 400;
  color: var(--pp-ink);
  line-height: var(--pp-title-lh);
  letter-spacing: 0.01em;
  text-align: center;
  /* Reserve 2 lines so 1-line titles don't shrink the card */
  min-height: calc(var(--pp-title-size) * var(--pp-title-lh) * var(--pp-title-lines));
  height: calc(var(--pp-title-size) * var(--pp-title-lh) * var(--pp-title-lines));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-product__rule {
  border: 0;
  height: 2px;
  width: 28px;
  background-color: var(--pp-accent);
  margin: 12px auto 10px;
  flex-shrink: 0;
}

.promo-product__was {
  margin: 0;
  margin-top: auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--pp-muted);
  text-decoration: line-through;
  letter-spacing: 0.01em;
  text-align: center;
  flex-shrink: 0;
}

.promo-product__btn {
  position: absolute;
  bottom: -16px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.85em 1.35em;
  border-radius: 2px;
  background-color: rgba(61, 46, 36, 0.95);
  color: #f7f3ec;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68em;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 18px 16px -12px rgba(0, 0, 0, 0.2);
  transition:
    background-color var(--pp-time) var(--pp-ease),
    box-shadow var(--pp-time) var(--pp-ease);
  pointer-events: none;
}

.promo-product:hover .promo-product__btn,
.promo-product:focus-visible .promo-product__btn {
  background-color: #1a1a1a;
  box-shadow: 0 22px 18px -12px rgba(0, 0, 0, 0.28);
}

/* Promo strip: stretch siblings so Ver buttons share one baseline */
.promos-zone__card-wrap {
  flex: 0 0 168px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-top: 20px;
  padding-bottom: 28px;
  overflow: visible;
}

.promos-zone__grid-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 8px;
  padding-bottom: 16px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .promos-zone__card-wrap {
    flex: 0 0 210px;
  }
  .promo-product {
    --pp-title-size: 15px;
    --pp-btn-space: 48px;
    padding: 32px 22px var(--pp-btn-space);
  }
  .promo-product__price {
    width: 80px;
    height: 80px;
    top: -22px;
    left: -16px;
  }
  .promo-product__price-now {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .promos-zone__grid-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px 28px;
    overflow: visible;
    padding: 8px 0 20px;
    width: 100%;
  }
  .promos-zone__card-wrap {
    flex: none;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 100%;
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .promo-product {
    --pp-title-size: 16px;
    --pp-btn-space: 52px;
    padding: 36px 24px var(--pp-btn-space);
  }
  .promo-product__price {
    width: 88px;
    height: 88px;
    top: -24px;
    left: -18px;
  }
  .promo-product__price-off {
    font-size: 10px;
  }
  .promo-product__price-now {
    font-size: 13px;
  }
  .promo-product__btn {
    min-width: 72px;
    bottom: -18px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-product,
  .promo-product__btn {
    transition: none;
  }
}
