.pointer {
    cursor: pointer;
}

.tf-product-info-price {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tf-product-info-price .price {
    color: var(--main);
    font-size: 24px;
    line-height: 24px;
}

.tf-product-info-price .price-on-sale {
    color: var(--primary);
    font-size: 24px;
    line-height: 24px;
}

.tf-product-info-price .compare-at-price {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    line-height: 20px;
    text-decoration: line-through;
}

.tf-product-info-price .badges-on-sale {
    background-color: rgb(252, 87, 50);
    border-radius: 7px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
}

.tf-product-info-price .badges-on-sale-blue {
    background-color: #38bdf8;
    border-radius: 7px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
}

.tf-product-info-price .badges-on-sale-black {
    background-color: #000000;
    border-radius: 7px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
}

.star-rating {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #ccc;
}

.star-rating::before {
    content: "\2605\2605\2605\2605\2605";
    /* Unicode Stars */
}

.star-filled {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: gold;
}

.popup-toast {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 10px;
    max-width: 300px;
    animation: fade-in 0.5s ease-out, fade-out 0.5s ease-in 3s;
    transition: opacity 0.3s;
    opacity: 1;
}

.popup-toast img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.popup-toast .toast-content {
    flex: 1;
}

.popup-toast .toast-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.popup-toast .toast-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}