.promotions-public {
  background: #f8fafc;
  color: #1f2937;
}

.promotions-public .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 16px 48px;
}

.promotions-public__intro {
  margin-bottom: 24px;
}

.promotions-public__intro h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
}

.promotions-public__intro .lead {
  margin: 0;
  max-width: 860px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
}

.promotions-public__back {
  margin: 0 0 18px;
}

.promotions-public__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.promotions-public__back-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.promotions-public #promoList,
.promotions-public #promoDetail {
  display: grid;
  gap: 28px;
}

.promotions-public .card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.promotions-public .banner {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  background: #e5e7eb;
}

.promotions-public .content {
  padding: 24px;
}

.promotions-public .content h1,
.promotions-public .content h2 {
  margin: 0 0 12px;
  color: #0f172a;
  line-height: 1.15;
}

.promotions-public .content h1 {
  font-size: 34px;
}

.promotions-public .content h2 {
  font-size: 28px;
}

.promotions-public .content > p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.promotions-public .timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 24px;
}

.promotions-public .timer > div {
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid #dbe7ff;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  text-align: center;
}

.promotions-public .timer b {
  display: block;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.promotions-public .muted {
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.promotions-public .grid {
  display: grid;
  gap: 16px;
}

.promotions-public .promo-grid {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotions-public .promotions-public__more-mobile {
  display: none;
}

.promotions-public .promo-more-card {
  height: 100%;
  min-height: 100%;
  border: 1px dashed #d6dce7;
  border-radius: 20px;
  background: #fff;
}

.promotions-public .promo-more-card__link {
  display: flex;
  min-height: 100%;
  padding: 22px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #21283a;
  text-decoration: none;
  text-align: center;
}

.promotions-public .promo-more-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.promotions-public .promo-more-card__arrow {
  margin-top: 8px;
  color: #8dc63f;
  font-size: 20px;
  line-height: 1;
}

.promotions-public .promo-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.promotions-public .promo-product-card .product-card__image {
  display: block;
  padding: 14px;
  background: #fff;
}

.promotions-public .promo-product-card .product-card__image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.promotions-public .promo-product-card .product-card__info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px;
}

.promotions-public .promo-product-card .product-card__title {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promotions-public .promo-product-card .product-card__title:hover {
  color: #2563eb;
}

.promotions-public .promo-product-card .product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 14px;
}

.promotions-public .promo-product-card .product-card__price-old,
.promotions-public .old {
  color: #94a3b8;
  font-size: 13px;
  text-decoration: line-through;
}

.promotions-public .promo-product-card .product-card__price-current {
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
}

.promotions-public .btn,
.promotions-public .btn--primary,
.promotions-public .btn--block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 11px 16px;
  border: 1px solid #2563eb;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  box-sizing: border-box;
}

.promotions-public .btn:hover,
.promotions-public .btn--primary:hover,
.promotions-public .btn--block:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}

.promotions-public .content a:not(.btn):not(.product-card__title):not(.promotions-public__back-link) {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.promotions-public .content a:not(.btn):not(.product-card__title):not(.promotions-public__back-link):hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .promotions-public .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .promotions-public .promo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .promotions-public .wrap {
    padding: 20px 12px 36px;
  }

  .promotions-public__intro h1,
  .promotions-public .content h1 {
    font-size: 28px;
  }

  .promotions-public .content h2 {
    font-size: 24px;
  }

  .promotions-public .banner {
    aspect-ratio: 1 / 1;
  }

  .promotions-public .content {
    padding: 18px;
  }

  .promotions-public .timer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .promotions-public .timer b {
    font-size: 24px;
  }

  .promotions-public .promo-product-card .product-card__image img {
    height: 180px;
  }

  .promotions-public .promotions-public__more-mobile {
    display: block;
  }
}

.promotions-public .promo-product-card .product-card__buy,
.promotions-public .promo-product-card .btn.btn--primary,
.promotions-public .promo-product-card .btn.btn--block {
  background-color: var(--color-accent-500, #ef4444);
  border-color: var(--color-accent-500, #ef4444);
  color: var(--color-text-inverse, #fff);
}

.promotions-public .promo-product-card .product-card__buy:hover,
.promotions-public .promo-product-card .btn.btn--primary:hover,
.promotions-public .promo-product-card .btn.btn--block:hover {
  background-color: var(--color-accent-600, #dc2626);
  border-color: var(--color-accent-600, #dc2626);
  color: var(--color-text-inverse, #fff);
}

.promotions-public .promo-product-card .product-card__buy:active,
.promotions-public .promo-product-card .btn.btn--primary:active,
.promotions-public .promo-product-card .btn.btn--block:active {
  background-color: var(--color-accent-700, #b91c1c);
  border-color: var(--color-accent-700, #b91c1c);
}

.promotions-public .promo-product-card .btn--success,
.promotions-public .promo-product-card .add-to-cart--done,
.promotions-public .promo-product-card .product-card__buy.add-to-cart--done {
  background-color: #22c55e !important;
  border-color: #22c55e !important;
  color: #fff !important;
}

.promotions-public .promo-product-card .btn--success:hover,
.promotions-public .promo-product-card .add-to-cart--done:hover,
.promotions-public .promo-product-card .product-card__buy.add-to-cart--done:hover {
  background-color: #16a34a !important;
  border-color: #16a34a !important;
  color: #fff !important;
}
