.dru-popular {
    padding-top: 40px;
    padding-bottom: 40px;
}

.dru-popular__title {
    margin: 0 0 30px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 36px;
    line-height: 46.8px;
    color: #f4f6ef;
}

.dru-popular__outer {
    position: relative;
    overflow: visible;
}

.dru-popular__slider {
    overflow: hidden;
}

.dru-popular__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}
.dru-popular__arrow img {
    width: 91px;
    height: 91px;
    pointer-events: none;
}

.dru-popular__arrow--prev {
    left: -91px;
}
.dru-popular__arrow--next {
    right: -91px;
}

.dru-product {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 24px;
    background: #090909;
    box-sizing: border-box;
}

.dru-product__media {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    aspect-ratio: 310 / 303;
    margin-bottom: 16px;
}
.dru-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dru-product__info {
    display: flex;
    flex-direction: column;
    padding: 0 10px 10px;
    flex: 1;
}

.dru-product__title {
    margin: 0 0 6px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #f4f6ef;
}
.dru-product__title a {
    color: inherit;
}

.dru-product__cat {
    margin: 0 0 14px;
    font-family: var(--font);
    font-size: 15px;
    line-height: 18px;
    color: #a7aea1;
}

.dru-product__bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dru-product__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.dru-product__price {
    font-family: var(--font);
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: #f4f6ef;
}
.dru-product__price del {
    display: block;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #a7aea1;
    text-decoration: line-through;
}
.dru-product__price ins {
    display: block;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: #f4f6ef;
    text-decoration: none;
}

.dru-product__rating {
    font-family: "Inter", var(--font);
    font-weight: 500;
    font-size: 14px;
    line-height: 18.2px;
    color: #f6c945;
    white-space: nowrap;
}

.dru-product__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    border-radius: 15px;
    border: 1px solid #6bb022;
    color: #ffffff;
    font-family: var(--font);
    font-size: 15px;
    line-height: 19.5px;
    background: transparent;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}
.dru-product__btn:hover {
    background: #6bb022;
    color: #090909;
}

@media (max-width: 1240px) {
    .dru-popular__arrow--prev {
        left: -20px;
    }
    .dru-popular__arrow--next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .dru-popular__arrow {
        display: none;
    }
    .dru-popular__slider {
        overflow: hidden;
        padding: 0 4px;
    }
    .dru-product__title {
        font-size: 16px;
        line-height: 20px;
    }
    .dru-product__price {
        font-size: 22px;
        line-height: 28px;
    }
}
