
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    padding: 40px 0;
    min-height: 60vh;
}

/* Заголовок каталога */
.catalog-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #2e7d32;
    padding: 0 20px;
}

/* Сетка каталога */
.catalog-grid {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Карточка товара */
.product-card {
    width: 100%;
    max-width: 350px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #f7f7f7;
    padding: 30px;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

/* Детали товара */
.product-details {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.product-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Кнопка */
.product-button {
    background-color: #14c86e;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.product-button:hover {
    background-color: #12ab0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 200, 110, 0.3);
}

.product-button a {
    color: white;
    text-decoration: none;
    display: block;
}

/* Адаптивность */
@media (max-width: 768px) {
    
    .catalog-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .catalog-grid {
        padding: 0 15px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        height: 240px;
        padding: 25px;
    }
    
    .product-details {
        padding: 20px;
    }
}

@media (max-width: 480px) {
  
    
    .catalog-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .product-image {
        height: 200px;
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .product-button {
        padding: 12px 20px;
        font-size: 15px;
    }
}