/* Импорт компонентов */
@import '../../css/base/base.css';

@import '../../css/components/header.css';
@import '../../css/components/footer.css';

.shirts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.shirt {
    width: 200px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shirt:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.shirt img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.descr_product {
    padding: 10px;
    text-align: center;
}

.descr_product a {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

.descr_product a:hover {
    color: #007BFF;
}

.estimate_price {
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.shirts p {
    color: #666;
    font-size: 16px;
    text-align: center;
}