@charset "UTF-8"; 

/* Контейнер страницы */
.promo-page-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* Баннер */
.promo-banner {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin: 20px 30px;
    box-shadow: 0 10px 30px rgba(255, 75, 43, 0.3);
}

.promo-banner::after {
    content: '%';
    position: absolute;
    right: -20px;
    bottom: -50px;
    font-size: 250px;
    font-weight: 900;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.promo-banner h1 {
    font-size: 42px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.1;
}

.promo-banner p {
    font-size: 18px;
    max-width: 500px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

/* Текстовый блок */
.promo-description {
    margin-bottom: 40px;
    padding: 20px 30px;
    border-left: 4px solid #2eb1a8;
    background-color: white;
}

.promo-description h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
}

.promo-description p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Сетка информера */
.sale-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

/* Стили карточки (универсальные для информера) */
.goods-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.goods-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.goods-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.goods-card .goods-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    height: 100%;
    align-items: center;
    padding: 8px 0;
    margin: 0 0 10px 0;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.goods-card .price-container {
    display: flex;
    min-height: 1px;
    height: 100%;
    max-height: 80px;
    margin-top: 0;
    margin-bottom: 15px;
    align-items: center;
    flex-direction: column;
}

.goods-card .old-price {
    color: #a0a0a0;
    text-decoration: line-through;
    font-size: 14px;
    margin: 20px 0!important;
    background: none!important;
}

.goods-card .new-price {
    color: #ff0e00;
    font-size: 20px;
    font-weight: 800;
}

.goods-card .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0e00;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 8px;
    z-index: 1;
}

@media (max-width: 768px) {
    .promo-banner { padding: 30px 20px; }
    .promo-banner h1 { font-size: 28px; }
    .sale-grid-container {grid-template-columns: repeat(auto-fill, minmax(50%));gap: 10px;}
}