.beer-details {
    color: #333;
    max-width: 900px;
    margin: 20px auto;
}

.beer-details .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.beer-details .tag {
    background: #eee4dd;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 18px;
}

.beer-details .tag span {
    font-weight: normal;
}

.beer-details .release {
    margin: 12px 0 24px;
    font-size: 20px;
}

.beer-details .awards {
    background-color: #7da7ce;
    padding: 12px;
    border-radius: 10px;
    color: white;
    margin-bottom: 32px;
}

.beer-details .awards h3 {
    margin-top: 0;
    color: white;
    font-size: 22px;
}

.beer-details .awards ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.beer-details .awards li {
    border-bottom: 1px dotted white;
    padding: 10px 0;
    font-style: italic;
    font-size: 16px;
}

.beer-details .awards li:last-child {
    border-bottom: none;
}

.beer-details .awards li strong {
    font-style: normal;
    font-weight: bold;
    color: #fff;
}

.flavor-sliders {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 40px;
}

.flavor-slider {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flavor-slider-labels {
    display: flex;
    justify-content: space-between;
}

.flavor-slider-track {
    position: relative;
    height: 6px;
    background-color: #ccc;
    border-radius: 3px;
}

.flavor-slider-pointer {
    position: absolute;
    top: -5px;
    width: 14px;
    height: 14px;
    background-color: #d9a16c;
    transform: rotate(45deg);
    border-radius: 2px;
}