.hexa-calculator-wrapper {
	background: transparent;
	font-family: inherit;
	box-sizing: border-box;
}

.hexa-calculator-wrapper * {
	box-sizing: border-box;
}

.hexa-calc-field-group {
	margin-bottom: 20px;
}

.hexa-calc-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	font-size: 16px;
}

.hexa-calc-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 15px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	outline: none;
	background-color: #fcfcfc;
}

.hexa-calc-input:focus {
	border-color: #a0a0a0;
	box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.hexa-calc-slider-wrap {
	display: flex;
	align-items: center;
	gap: 15px;
}

.hexa-calc-range {
	flex-grow: 1;
	cursor: pointer;
	padding: 0;
	height: auto;
}

.hexa-calc-slider-val {
	font-weight: bold;
	font-size: 18px;
	min-width: 30px;
	text-align: right;
}

.hexa-calc-total-box {
	background-color: transparent;
	border: 1px solid #eaeced;
	border-radius: 8px;
	padding: 25px;
	text-align: center;
	margin-top: 30px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.hexa-calc-total-box .hexa-calc-label {
	font-size: 14px;
	opacity: 0.8;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hexa-calc-total {
	font-size: 36px;
	font-weight: 700;
}

.hexa-calc-currency {
	margin-right: 4px;
	color: inherit;
}

.hexa-calc-amount {
	color: inherit;
}
