.product-attributes-rijen {
display: flex;
flex-direction: column;
font-family: "Bio Sans", sans-serif;
font-weight: 700;
}
.attribuut-rij {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
gap: 12px;
border-bottom: 1px solid #ddd;
padding: 4px 0;
}
.attribuut-label,
.attribuut-waarde {
flex: 1 1 45%;
word-break: break-word;
white-space: normal;
text-align: left;
}
.hidden-attributes-wrapper {
overflow: hidden;
max-height: 0;
transition: max-height 0.4s ease;
}
.hidden-attributes-wrapper.open {
max-height: none;
}
.toggle-details-wrap {
text-align: center;
margin-top: 12px;
cursor: pointer;
}
.toggle-details {
display: inline-flex;
flex-direction: column;
align-items: center;
font-weight: 700;
font-size: 1rem;
gap: 4px;
}
.chevron-icon {
width: 18px;
transition: none;
}
.chevron-rotated {
transform: rotate(180deg);
}