/*
Theme Name: Bono Child
Theme URI: https://wpshop.ru/themes/bono
Author: WPShop.ru
Author URI: http://wpshop.ru/
Template: bono
Version: 1.0.0
*/

/* Below you can add your CSS styles */
/* Ниже Вы можете добавить свои CSS стили */
/* Общие стили */
:root {
    --primary-color: #ebc3b7;
    --secondary-color: #333;
    --light-bg: #f8f8f8;
    --text-color: #666;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Секция новинок и бестселлеров */
.new-products,
.bestsellers {
    padding: 60px 0;
}

.new-products {
    background-color: var(--light-bg);
}

/* Стили для WooCommerce продуктов */
.woocommerce ul.products li.product {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
}

/* Секция отзывов */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(45deg, #f3e7e0, #fff);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Форма подписки */
.newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: #666;
}

.newsletter .section-title {
    color: #000000;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.wpcf7-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
}

.wpcf7-submit {
    background: #fff;
    color: #000000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wpcf7-submit:hover {
    background: #f8f8f8;
}

/* Секция маркетплейсов */
.aoof-marketplaces {
    padding: 60px 0;
    background: #fff;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.marketplace-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--secondary-color);
}

.marketplace-item:hover {
    transform: translateY(-5px);
}

.marketplace-item img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.marketplace-item span {
    font-size: 18px;
    font-weight: 500;
}


/* Адаптивность */
@media (max-width: 768px) {
    .marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 20px;
        margin: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
/* Общие стили */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Баннер */
.aoof-banner {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../bono_child/assets/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.banner-content {
    max-width: 800px;
    padding: 20px;
    margin-left: 300px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff
}

.banner-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ebc3b7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: background 0.3s;
}

.banner-button:hover {
    background: #ebc3b7;
}

/* История бренда */
.aoof-story {
    padding: 80px 0;
    background-color: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

/* Преимущества */
.advantages {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 36px;
    color: #ebc3b7;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.advantage-item p {
    font-size: 14px;
    color: #666;
}

/* Популярные категории */
.popular-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgb(235, 195, 183, 0.85);
    color: #fff;
    margin: 0;
    text-align: center;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .advantages-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 18px;
    }
}
.site-footer {
    margin-bottom: 0;
    padding-bottom: 0;
}

body {
    margin-bottom: 0;
}
.site-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.site-footer {
    margin-top: 0 !important;
}

.content-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Если останется пространство, добавьте следующие правила */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}
