/* Promotions Page Styles */

.promotions_page {
    padding: 40px 0;
    min-height: 60vh;
    background: transparent;
}

/* Remove white background from all blocks */
.promotions_page .wrapper_inner,
.promotions_page .container_inner,
.promotions_page .middle {
    background: transparent !important;
    background-color: transparent !important;
}

.promotions_page .maxwidth-theme {
    background: transparent !important;
    background-color: transparent !important;
}

/* Выравнивание контента с хедером (1330px) */
.promotions_page .maxwidth-theme {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 0;
    box-sizing: border-box;
}

/* Remove white background from drag-block */
.promotions_page .drag-block.container.grey.PROMOTIONS,
.promotions_page .drag-block.container.grey.PROMOTIONS.grey_block,
.promotions_page .drag-block.container.grey.PROMOTIONS .maxwidth-theme {
    background: transparent !important;
    background-color: transparent !important;
}

/* Simple Title */
.promotions-simple-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #231F20;
    margin-bottom: 40px;
    text-align: left;
}

/* Promotions Empty State */
.promotions-empty {
    padding: 80px 20px;
    text-align: center;
}

.promotions-empty-content {
    max-width: 500px;
    margin: 0 auto;
}

.promotions-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    color: #CCCCCC;
}

.promotions-empty-icon svg {
    width: 100%;
    height: 100%;
}

.promotions-empty-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #231F20;
    margin-bottom: 16px;
}

.promotions-empty-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.promotions-empty-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ee2722;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promotions-empty-btn:hover {
    background: #d11f1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 39, 34, 0.3);
    text-decoration: none;
    color: #FFFFFF;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pagination-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #231F20;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-link:hover {
    background: #F5F5F5;
    border-color: #ee2722;
    color: #ee2722;
    text-decoration: none;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #231F20;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-page:hover {
    background: #F5F5F5;
    border-color: #ee2722;
    color: #ee2722;
    text-decoration: none;
}

.pagination-page-active {
    background: #ee2722;
    border-color: #ee2722;
    color: #FFFFFF;
    cursor: default;
}

.pagination-page-active:hover {
    background: #ee2722;
    border-color: #ee2722;
    color: #FFFFFF;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .promotions_page .maxwidth-theme {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .promotions-simple-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .promotions-empty {
        padding: 60px 20px;
    }
    
    .promotions-empty-title {
        font-size: 24px;
    }
    
    .pagination {
        flex-direction: column;
    }
    
    .pagination-link {
        width: 100%;
        justify-content: center;
    }
}
