/* Общие стили */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f5f0;
    color: #3a2c2a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Контейнер */
.tea-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Заголовок */
.tea-catalog-title {
    font-family: 'Playfair Display', serif;
    color: #5e3a37;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.tea-divider {
    width: 100px;
    height: 2px;
    background: #d4a373;
    margin: 0 auto 40px;
}

/* Сетка товаров */
.tea-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Карточка товара */
.tea-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tea-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Изображение */
.tea-product-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.tea-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tea-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(94,58,55,0.1), rgba(94,58,55,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tea-product-card:hover .tea-product-image img {
    transform: scale(1.05);
}

.tea-product-card:hover .tea-image-overlay {
    opacity: 1;
}

/* Информация о товаре */
.tea-product-info {
    padding: 20px;
}

.tea-product-info h3 {
    font-family: 'Playfair Display', serif;
    color: #5e3a37;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.tea-product-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
}

/* Кнопка */
.tea-details-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #5e3a37;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #5e3a37;
}

.tea-details-btn:hover {
    background: transparent;
    color: #5e3a37;
}

.tea-details-btn i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .tea-products {
        grid-template-columns: 1fr;
    }

    .tea-product-image {
        height: 200px;
    }
}