/* Styles for the dynamic price display */
#dynamic-price-display {
    transition: opacity 0.3s ease;
}

#dynamic-price-display.loading {
    opacity: 0.5;
}

.price-loading {
    font-style: italic;
    margin-left: 5px;
}

/* Error message styles */
.price-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

/* Variation selection styles */
.variations select {
    margin-bottom: 10px;
}

/* Add to cart button styles */
.single_add_to_cart_button {
    transition: background-color 0.3s ease;
}

.single_add_to_cart_button:hover {
    opacity: 0.9;
}
