#sticky-add-to-cart {
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #D9D3CE;
    padding: 22px 0;
    z-index: 999;
    transform: translateY(100%);
    display: block;
    transition: transform .3s ease 0s;
    position: fixed;
}
#sticky-add-to-cart.stop {
    transform: translateY(100%) !important;
}
#sticky-add-to-cart.sticky-cart-visible {
    transform: translateY(0%);
}
.sticky-inner {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}
#sticky-add-to-cart .price {
    margin: 0;
    font-size: clamp(1rem, 1.078vw + 0.332rem, 1.625rem);
}
.sticky-title {
    font-weight: 600;
    font-size: clamp(1rem, 1.078vw + 0.332rem, 1.625rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-rating {
    margin-bottom: 15px;
}
.sticky-rating .custom-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sticky-btn-holder {
    flex: 1 0 auto;
    display: flex;
    justify-content: end;
}
#sticky-add-btn {
    background: #2C1200;
    color: #fff;
    min-width: 253px;
    padding-top: 19px;
    padding-bottom: 19px;
    &:hover {
        color: #2C1200;
        background: #fff;
    }
}
@media (max-width: 768px) {
    #sticky-add-to-cart {
        display: none !important;
    }
}
