/*
 Theme Name:   My Theme Child of vw-furniture-shop
 Theme URI:    http://example.com/your-child-theme/
 Description:  Дочерняя тема для vw-furniture-shop
 Author:       Pavel
 Author URI:   http://example.com
 Template:     vw-furniture-shop
 Version:      1.0.0
*/

/* Импортируем стили родительской темы */
@import url("../vw-furniture-shop/style.css");

/* Дополнительные стили можно писать ниже */

/* Стили для главной страницы */
.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
}

.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.products-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-section {
    padding: 60px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 40px 0;
    }
}