/**
 * WC Length Calculator Frontend Styles
 */

.wc-length-calculator-wrapper {
	background: #fdfdfd;
	border: 1px solid #e1e1e1;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 25px;
}

.wc-length-calculator-wrapper label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
}

.wc-length-calculator-wrapper input[type="number"] {
	width: 100%;
	max-width: 150px;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 16px;
}

.wc-length-calculator-price-summary {
	background: #f0f8ff;
	border: 1px solid #cce5ff;
	padding: 10px;
	margin-top: 15px;
	border-radius: 3px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wc-length-calculator-price-summary strong {
	color: #004085;
}

.wc-length-calculator-price-summary .calculated-price {
	font-size: 1.25em;
	font-weight: bold;
	color: #0056b3;
}

/* Hide default WooCommerce prices when the calculator is present */
.has-length-calculator div.product p.price,
.has-length-calculator .woocommerce-variation-price {
	display: none !important;
}