.bottles__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.bottle__item {
    --bottle-active-color: #0038BC;
    --bottle-active-shadow-color: rgba(0, 56, 188, 0.25);
    --bottle-active-bg-color: rgba(0, 56, 188, 0.10);
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    width: 100%;
    max-width: 240px;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: #F7F5F2;
    cursor: pointer;
    transition: 0.3s ease;
}

.bottle__item:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 5px #dad9d7;
}

.bottle__item:nth-child(2) {
    --bottle-active-color: #00BC7D;
    --bottle-active-shadow-color: rgba(0, 188, 125, 0.25);
    --bottle-active-bg-color: rgba(0, 188, 125, 0.10);
}

.bottle__item.active {
    background-color: var(--bottle-active-bg-color);
    border-color: var(--bottle-active-color);
    transform: scale(1.03);
    box-shadow: 0 2px 5px var(--bottle-active-shadow-color);
}

.bottle__images-container {
    display: flex;
    flex-direction: row;
}

.bottle__image {
    margin-left: -20px;
    width: 64px;
}

.bottle__image:first-child {
    margin-left: 0;
}

.bottle__radio-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #D1D5DC;
    transition: 0.3s ease;
}

.bottle__item.active .bottle__radio-button {
    background-color: var(--bottle-active-color);
}

.bottle__radio-button::after {
    content: "";
    position: absolute;
    display: flex;
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    transition: 0.3s ease;

}

.bottle__item.active .bottle__radio-button::after {
    width: 40%;
    height: 40%;
    background-color: #FFF;
}

.bottle__price {
    width: 80%;
    text-align: center;
    padding-inline: 10px;
    background-color: #155DFC;
    border-radius: 2px;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}

.bottle__discount {
    padding: 4px 10px;
    border-radius: 25px;
    background: #FFF;
    color: #008236;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.15px;
}

.bottle__best {
    position: absolute;
    top: -10px;
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
    padding: 5px 10px;
    border-radius: 25px;
    background: linear-gradient(90deg, #00C950 0%, #00A63E 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
}

