/*
Theme Name: Avanturika
Theme URI: https://avanturika.ru
Author: Prom Digital
Author URI: https://prom-digital.ru
Description: Тема для бренда аромасаше Avanturika. Эстетика «тихой роскоши», адаптивный дизайн.
Version: 1.0
License: MIT
Text Domain: avanturika
*/

/* Общие сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FDF8F2;
    font-family: 'Montserrat', sans-serif;
    color: #2E2E2E;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Контейнер для контента */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0px;
    width: 100%;
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Анимации */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Кнопки */
.cta-button {
    display: inline-block;
    background-color: #C9683B;
    color: #FDF8F2;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 38px;
    border-radius: 40px;
    transition: background-color 0.3s ease, transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(201, 104, 59, 0.15);
}

.cta-button:hover {
    background-color: #B0572E;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(201, 104, 59, 0.2);
}

/* Каталог (общие стили) */
.catalog {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0 60px;
    width: 100%;
}

.catalog-header {
    text-align: center;
    margin-bottom: 60px;
}

.catalog-header h2 {
    font-size: 42px;
    font-weight: 400;
    color: #2E2E2E;
    margin-bottom: 16px;
}

.catalog-header .subhead {
    font-size: 16px;
    font-weight: 300;
    color: #4A4A4A;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.product-card {
    background-color: #F9F2E9;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    width: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-content {
    padding: 24px 20px 28px;
}

.product-collection {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #C6A43F;
    font-weight: 500;
}

.product-content h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 10px 0 14px;
    color: #2E2E2E;
    line-height: 1.3;
}

.fragrance-notes {
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 16px;
}

.note-type {
    font-weight: 500;
    color: #2E2E2E;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2E2E2E;
    border-top: 1px solid rgba(198,164,63,0.2);
    padding-top: 16px;
}

.product-feature i {
    color: #C6A43F;
    font-size: 14px;
}

/* Адаптивность для каталога */
@media screen and (max-width: 1024px) {
    .container { padding: 0 30px; }
    .catalog { padding: 60px 0 40px; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media screen and (max-width: 768px) {
    .catalog { padding: 40px 0 30px; }
    .catalog-header h2 { font-size: 32px; }
    .catalog-grid { grid-template-columns: 1fr; }
    .product-image { height: 240px; }
}

@media screen and (max-width: 480px) {
    .container { padding: 0 20px; }
    .catalog-header h2 { font-size: 28px; }
    .product-content { padding: 20px; }
    .product-content h3 { font-size: 20px; }
}