/**
 * Product Page Styles
 * 
 * Styles for product pages including price protection and tax breakdown
 *
 * @package Cursusgroep
 */

/* Tax Breakdown */
.tax-breakdown {
    border-top: 1px solid #ddd;
    margin-top: 8px;
    padding-top: 8px;
}

.tax-row {
    display: flex;
    justify-content: space-between;
    margin: 3px 0;
    font-size: 0.9em;
    font-weight: 600;
    color: #333;
}

/* Ensure notranslate class prevents translation */
.notranslate {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Additional protection for price elements */
.price__value,
.cg-price__values,
.woocommerce-Price-amount,
.amount {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide variation wrapper */
.woocommerce-variation.single_variation {
    display: none !important;
}

/* Date item selected styling */
.date-item.selected {
    border: 2px solid #0073aa;
    background: #f0f8ff;
    border-radius: 8px;
}

