/**
 * Dual Tax Price Display Styles
 * Shows both inclusive and exclusive tax prices
 */

.dual-price-display {
    display: inline-block;
    line-height: 1.2;
}

.dual-price-display .price-including-tax {
    font-weight: bold;
    color: #333;
    font-size: 1em;
}

.dual-price-display .price-excluding-tax {
    font-weight: normal;
    color: #666;
    font-size: 0.9em;
}

.dual-price-display .tax-label {
    font-size: 0.8em;
    font-weight: normal;
    color: #888;
    text-transform: lowercase;
}

/* Product page specific styles */
.single-product .dual-price-display .price-including-tax {
    font-size: 1.2em;
    color: #2c3e50;
}

.single-product .dual-price-display .price-excluding-tax {
    font-size: 1em;
    color: #7f8c8d;
}

/* Variable product specific styles */
.dual-price-display.variable-product-price .price-including-tax {
    font-size: 1.1em;
    color: #2c3e50;
    font-weight: bold;
}

.dual-price-display.variable-product-price .price-excluding-tax {
    font-size: 0.95em;
    color: #7f8c8d;
}

/* Variable product price range styles */
.dual-price-display.variable-product-price .price-including-tax,
.dual-price-display.variable-product-price .price-excluding-tax {
    display: block;
    margin-bottom: 2px;
}

/* Shop/archive page styles */
.woocommerce-loop-product__title + .dual-price-display .price-including-tax {
    font-size: 1.1em;
    color: #2c3e50;
}

.woocommerce-loop-product__title + .dual-price-display .price-excluding-tax {
    font-size: 0.95em;
    color: #7f8c8d;
}

/* Cart page styles */
.cart .dual-price-display.cart-item-price .price-including-tax {
    font-size: 1em;
    color: #2c3e50;
}

.cart .dual-price-display.cart-item-price .price-excluding-tax {
    font-size: 0.9em;
    color: #7f8c8d;
}

.cart .dual-price-display.cart-item-subtotal .price-including-tax {
    font-size: 1em;
    color: #2c3e50;
    font-weight: bold;
}

.cart .dual-price-display.cart-item-subtotal .price-excluding-tax {
    font-size: 0.9em;
    color: #7f8c8d;
}

/* Cart totals styles */
.cart .dual-price-display.cart-subtotal .price-including-tax {
    font-size: 1.1em;
    color: #2c3e50;
    font-weight: bold;
}

.cart .dual-price-display.cart-subtotal .price-excluding-tax {
    font-size: 1em;
    color: #7f8c8d;
}

.cart .dual-price-display.cart-total .price-including-tax {
    font-size: 1.3em;
    color: #e74c3c;
    font-weight: bold;
}

.cart .dual-price-display.cart-total .price-excluding-tax {
    font-size: 1.1em;
    color: #c0392b;
}

/* Checkout page styles */
.checkout .dual-price-display .price-including-tax {
    font-weight: bold;
    color: #2c3e50;
}

.checkout .dual-price-display .price-excluding-tax {
    color: #7f8c8d;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .dual-price-display {
        font-size: 0.9em;
    }
    
    .dual-price-display .price-including-tax {
        font-size: 1em;
    }
    
    .dual-price-display .price-excluding-tax {
        font-size: 0.85em;
    }
    
    .dual-price-display .tax-label {
        font-size: 0.75em;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .dual-price-display .price-including-tax {
        color: #ecf0f1;
    }
    
    .dual-price-display .price-excluding-tax {
        color: #bdc3c7;
    }
    
    .dual-price-display .tax-label {
        color: #95a5a6;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .dual-price-display .price-including-tax {
        color: #000;
        font-weight: bold;
    }
    
    .dual-price-display .price-excluding-tax {
        color: #333;
    }
    
    .dual-price-display .tax-label {
        color: #666;
    }
}

/* Print styles */
@media print {
    .dual-price-display .price-including-tax {
        color: #000;
        font-weight: bold;
    }
    
    .dual-price-display .price-excluding-tax {
        color: #333;
    }
    
    .dual-price-display .tax-label {
        color: #666;
    }
}
