/* ------- GUIDE DES INGRÉDIENTS ------- */

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
}

.ingredient-bloc {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
    background: white;
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    background: #FFC412;
    border: none;
    cursor: pointer;
    border-radius: 16px;
    transition: border-radius 0.3s ease;
    text-align: left;
    gap: 12px;
}

#tvorog {
    object-position: center 70%;
}

#salo{
    object-position: center 67%;
}

#kvas {
    object-position: center 32%;
}


.ingredient-header[aria-expanded="true"] {
    border-radius: 16px 16px 0 0;
}

.ingredient-nom {
    font-family: 'Ultra', serif;
    font-size: 1.75rem;
    color: #202020;
}

/* nom original en cyrillique — reset Ultra vers Outfit */
.ingredient-nom-original {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
}

/* cercles de rareté — base commune */
.ingredient-rarete {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: start;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}

.rarete-verte  { background: #34C759; }
.rarete-orange  { background: #FF8800; }
.rarete-rouge-orange { background: linear-gradient(to right, #FF3B30 50%, #FF8800 50%); }
.rarete-rouge  { background: #FF3B30; }

.ingredient-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.ingredient-details.open {
    max-height: 1000px;
}

.ingredient-details img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.17);
}

.ingredient-texte {
    margin-top: -20px;
    padding: 32px 16px 16px 16px;
    background-color: #F5F1E8;
}

/* texte et listes partagent la même taille et hauteur de ligne */
.ingredient-texte p,
.ingredient-texte li {
    font-size: 1rem;
    line-height: 22px;
    margin: 0 0 4px 0;
}

.ingredient-texte p {
    margin: 6px 0 4px 0;
}

.ingredient-texte ul {
    padding-left: 20px;
    list-style: disc;
    margin: 4px 0 8px 0;
}