.product-price {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
    direction: ltr;
    width: fit-content;
}

.product-price .product-price-after-dis {
    color: var(--secondaryColor);
    font-weight: bold;
    font-size: medium;
    display: flex;
    gap: 8px;
    width: fit-content;
}

.product-price .product-price-before-dis {
    text-decoration: line-through;
    color: var(--text-4);
    font-weight: bold;
    font-size: medium;
    display: flex;
    gap: 8px;
    width: fit-content;
}

@media (max-width:768px) {
    .product-price .product-price-after-dis {
        color: var(--secondaryColor);
        font-weight: 500;
        font-size: medium;
    }

    .product-price .product-price-before-dis {
        text-decoration: line-through;
        color: var(--text-4);
        font-weight: 500;
        font-size: medium;
    }
}