/* Product Price Styles */
.product-price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    font-weight: 400;
}

.product-price .sale-price {
    color: #e63946;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Modal Price Styles */
.product-modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-modal-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    font-weight: 400;
}

.product-modal-price .sale-price {
    color: #e63946;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Product Details Page Price Styles */
#productPrice {
    margin-bottom: 1rem;
}

#productPrice .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    font-weight: 400;
}

#productPrice .sale-price {
    color: #e63946;
    font-weight: 700;
}

/* Product Meta Styles */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.product-rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-modal-price {
        font-size: 1.3rem;
    }
}