/* * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-family: Arial, sans-serif;
    background: #eef2f5;
} */

.blok_proisvoditel{
    display: flex;
    margin: 50px;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;

}


    




.blok_proisvoditel {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Карточка никогда не будет шире экрана */
.card-1 {
    
    margin-left: 55px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 900px;
    /* margin: 0 auto; */
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Верх карточки */
.card-top_1 {
    display: flex;
    align-items: stretch;
    min-height: 240px;
}

/* Левая часть с текстом */
.card-info {
    flex: 1 1 auto;
    min-width: 0;
    padding: 25px;
}

/* Заголовки */
.card-title {
    margin: 0 0 12px;
    color: #222;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.15;
}

/* Обычный текст */
.card-info p,
.card-bottom p {
    padding-left: 41px;
    color: #555;
    line-height: 1.6;
}

/* Правая часть с изображением */
.card-image {
    height: 20px;
    margin: 13px;
    flex: 0 0 300px;
    width: 300px;
    min-height: 240px;
    object-fit: contain;
}

/* Раскрывающиеся блоки */
details {
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
}

summary {
    cursor: pointer;
    color: #1769aa;
    font-weight: bold;
    line-height: 1.5;
}

summary:hover {
    color: #0d47a1;
}

details p {
    margin: 8px 0;
}

/* Нижняя часть карточки */
.card-bottom {
    padding: 20px 25px;
    border-top: 1px solid #eeeeee;
}

.description-title {
    margin: 0 0 8px;
    color: #333;
    font-size: 20px;
}

.description {
    margin: 0 0 15px;
    color: #666;
    line-height: 1.5;
}

/* Рейтинг */
.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.stars {
    color: #ffc107;
    font-size: 24px;
    letter-spacing: 2px;
}

.rating-number {
    color: #555;
    font-size: 16px;
}

/* Планшеты */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .card-1 {
        border-radius: 22px;
    }

    .card-info {
        padding: 20px;
    }

    .card-image {
        flex-basis: 240px;
        width: 240px;
        min-height: 220px;
    }

    .card-bottom {
        padding: 20px;
    }
}

/* Телефоны */
@media (max-width: 600px) {
    body {
        padding: 10px;
        gap: 18px;
    }

    .card {
        border-radius: 18px;
    }

    .card-top_1 {
        flex-direction: column;
    }

    .card-image {
        order: -1;
        flex: none;
        width: 100%;
        height: 220px;
        min-height: 220px;
    }

    .card-info {
        padding: 18px;
    }

    .card-title {
        font-size: 25px;
    }

    .card-bottom {
        padding: 18px;
    }

    .stars {
        font-size: 21px;
    }
}

/* Маленькие телефоны */
@media (max-width: 380px) {
    .card-image {
        height: 180px;
        min-height: 180px;
    }

    .card-info,
    .card-bottom {
        padding: 15px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-info p,
    .card-bottom p {
        font-size: 14px;
    }
}