.bestsellers__slider {
    overflow: hidden;
}

.bestseller {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border: 1px solid #EAEAEA;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
    color: var(--dark-color);
}

.bestseller:hover {
    border: 1px solid #14befe;
}

.bestseller__markers-block {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    top: 0px;
    padding: 20px;
    right: 0px;
    gap:10px
}

.bestseller__image {
    width: 100%;
    height: 252px;
    object-fit: cover;
    border-radius: 10px;
}

.bestseller__title {
    font-size:18px;
    font-weight: 600;
    line-height: 140%;
    min-height:50px;
}

.bestseller__button {
    display:block;
    width:100%;
}

.bestseller__intro-text {
    line-height: 140%;
    color: #767676;
}

.bestseller__price-block {
    display: flex;
    align-items: center;
    gap:15px;
}

.bestseller__price {
    font-size: 18px;
    font-weight: 600;
    color: #14befe;
}

.price-red {
    color: #FF080B;
    display: flex;
    align-items: center;
    gap: 7px;
}

.price-red::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    background-position: center;
    background-size: cover;
    background-image: url("/src/assets/img/icons/akcii.svg");
}

.bestseller__grid {
    width:100%;
    padding-top:20px;
    padding-bottom:20px;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.bestseller__grid-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bestseller__grid-sub-text {
    font-size: 12px;
    color: #767676;
}

.bestseller__grid-text {
    font-size: 16px;
    font-weight: 600;
}

.bestseller__price-old {
    font-size: 14px;
    color: #BFBFBF;
    text-decoration: line-through;
}

.bestseller__marker {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;
    min-height: 28px;
}

.marker-hit {
    background: #f4f9fb;
    color: #14BEFE;
    border: 1px solid #14BEFE;
}

.marker-sale {
    background: #fcf4f4;
    color: #FF080B;
    border: 1px solid #FF080B;
}

.marker-fresh {
    background: #fbf9f5;
    color: #FF9D00;
    border: 1px solid #FF9D00;
}

.marker-econom{
    background: #f5fbf6;
    color: #00C53E;
    border: 1px solid #00C53E;
}