
.promo-page {
    margin-top: 5px;
}
.promo-section {
    margin-top: 35px;
}
/* -----------------------------------
    Основной баннер страницы
----------------------------------- */
/* --- Основной баннер --- */
.main-promo-banner {
    position: relative;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}
.main-promo-banner picture,
.main-promo-banner img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}
.main-promo-banner .promo-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    max-width: 85%;
    padding: 0 20px;
}
.main-promo-banner .promo-banner-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
}
.main-promo-banner .promo-banner-text {
    font-size: 18px;
    line-height: 1.6;
}

/* --- Текстовая шапка, если нет баннера --- */
.promo-page-header {
    margin: 40px auto 60px;
    padding: 20px;
    border-radius: 15px;
}
.promo-page-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}
.promo-page-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}
.promo-page-description p {
    margin-bottom: 1em;
}
.promo-page-description ul {
    margin: 10px 0 10px 25px;
    list-style: disc;
}


/* -----------------------------------
    STANDARD layout (баннер слева)
----------------------------------- */
.promo-section-flex { display: flex; gap: 51px; align-items: flex-start; align-items: center; }
.promo-section-left { flex: 0 0 25%; max-width: 25%; }
.promo-section-right { flex: 0 0 75%; max-width: 75%;}
.promo-section-banner {
    border-radius: 10px; overflow: hidden; text-align: center;
    background: #f8f8f8; display: flex; flex-direction: column;
}
.promo-section-banner .promo-banner-img { width: 100%; height: 365px; object-fit: cover; }
.promo-section-banner .promo-banner-title { font-size: 20px; font-weight: 700; margin: 10px 0; }

/* -----------------------------------
    GRID layout
----------------------------------- */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.promo-card {
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all .2s ease;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.promo-card-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.promo-card-body { 
    padding: 15px; 
    text-align: center; 
}
h3.promo-card-title {margin-top: 0; }
.promo-card-title { font-size: 18px; font-weight: 600; margin: 0 15px 8px; text-align: center; }
.promo-card-text { font-size: 14px; color: #666; margin-bottom: 10px; }
.promo-card-link { color: #b36ae2; text-decoration: none; font-weight: 600; padding: 5px 10px 10px;}

/* -----------------------------------
LIST layout (в стиле баннера главной)
----------------------------------- */
.promo-list-banner-section {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}
.promo-list-banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.promo-list-banner-box {
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    overflow: hidden;
}
.promo-list-banner-left {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 35px;
    color: #000;
    backdrop-filter: blur(6px);
}
.promo-list-banner-icon svg,
.promo-list-banner-icon img {
    width: 40px;
    height: auto;
    margin-bottom: 15px;
}
.promo-list-banner-title p {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
}
.promo-list-banner-description {
    font-size: 16px;
    color: #222;
    line-height: 1.5;
}
.promo-list-banner-date {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}
.promo-list-banner-cta {
    display: inline-block;
    margin-top: 25px;
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.promo-list-banner-image {
    flex: 1 1 1%;
    min-height: 360px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* -----------------------------------
    LIST layout — с товарами в гриде
----------------------------------- */
.promo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.promo-grid-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.promo-grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.promo-product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.promo-grid-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}
.promo-grid-info {
    padding: 12px 15px 18px;
    text-align: center;
}
.promo-grid-name {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    min-height: 40px;
    margin-bottom: 8px;
}
.promo-grid-price {
    font-weight: 600;
    font-size: 15px;
}
.price-new { color: #d22; }
.price-old {
    color: #777;
    text-decoration: line-through;
    margin-left: 5px;
}

.promo-more-link {
    padding: 15px;
    text-align: center;
}
.promo-more-link .see-all-link {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background .3s;
}
.promo-more-link .see-all-link:hover {
    background: #222;
}


/* -----------------------------------
Benefit Islands (островки выгод)
----------------------------------- */
.benefit-islands {
    margin: 40px auto 40px;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.benefit-item {
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    color: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.12);
}
.benefit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.benefit-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.benefit-content.large-text .benefit-text {
    font-size: 18px;
}
.benefit-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: background .3s;
}
.benefit-btn:hover {
    background: #333;
}

.promo-timer {
    text-align: center;
    padding: 20px 0 40px 0;
    background: #fff5f6;
    border-radius: 16px;
    margin: 30px 0;
}
.timer-numbers {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
}
.timer-numbers div {
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.timer-numbers span {
    font-size: 32px;
    font-weight: bold;
    color: #ed483b;
    display: block;
}
.timer-ended {
    font-size: 20px;
    color: #888;
    padding: 30px;
}

@media (max-width: 992px) {
    .promo-section-flex { flex-direction: column; }
    .promo-section-left, .promo-section-right { max-width: 100%; flex: 1 1 100%; }
    .promo-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    .promo-grid-img img {
        height: 200px;
    }
    .promo-list-banner-box { flex-direction: column-reverse; }
    .promo-list-banner-left, .promo-list-banner-image {
        flex: 1 1 100%;
        min-height: 280px;
    }
    .promo-list-banner-left { padding: 25px 20px; }
    .promo-list-banner-title p { font-size: 22px; }
    .promo-section-flex {gap: 20px;}
    .promo-page .pr-price { margin-bottom: 0; }
    .promo-page-header {margin: 20px auto 40px;}
}

@media (max-width: 768px) {
    .main-promo-banner .promo-banner-title { font-size: 32px; }
    .main-promo-banner .promo-banner-text { font-size: 16px; }
    .main-promo-banner .promo-banner-title {
        font-size: 28px;
    }
    .main-promo-banner .promo-banner-text {
        font-size: 16px;
    }
    .promo-page-title {
        font-size: 28px;
    }
    .benefit-title {
        font-size: 18px;
    }
    .benefit-text {
        font-size: 14px;
    }
    .promo-timer {
        padding: 20px 0;
    }
    .timer-container h3 {
        margin: 10px;
    }
}
