.lenta-9may {
    position: absolute;
    top: 0;
    left: 300px;
    width: 65px;
    height: 65px;
    background:url(/images/lenta-9may.png) no-repeat
}

/* ========== Стили для блока суперцен ========== */
.promos-container {
  background-color: #3d4449;
}

.promos-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promo-card {
  overflow: hidden;
  background-color: #2c2f34;
  border: 0;
  border-radius: 0.4rem;
  transition: transform 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-2px);
}

.promo-image-wrapper {
  overflow: visible;
  position: relative;
  width: 100%;
  height: 270px;
  background-size: cover;
  background-position: center;
  background-color: #1a1d1f;
}

.promo-badges {
  position: absolute;
  overflow: visible;
  z-index: 10;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.promo-price-badge {
  background-color: #ff9800;
  color: #000;
  padding: 0.35rem 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  width: fit-content;
  border-radius: 4px 4px 0 0;
}

.promo-price-main {
  font-size: 1rem;
  font-weight: 700;
}

.promo-price-decimal {
  font-size: 0.9rem;
  font-weight: 600;
}

.promo-divider {
  height: 1px;
  background-color: #000;
  width: 100%;
}

.promo-country-badge {
  position: relative;
  z-index: 10;
  min-width: 110px;
  background-color: #ffc107;
  color: #1f1f1f;
  padding: 0.35rem 0.6rem;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: left;
  width: fit-content;
  border-radius: 0 0 4px 4px;  /* Скругляем все углы кроме левого верхнего */
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.promo-content {
  background-color: #2c2f34;
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
}

.promo-description {
  color: #c9c9c9;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.8rem;
  margin-bottom: 0;
  min-height: 2.8em;
}

.promo-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #999;
}

.promo-empty-message {
  text-align: center;
  color: #999;
  padding: 2rem;
  font-size: 1.1rem;
}
/* ////// ========== Стили для блока суперцен ========== */