/* RichVera Gold & Shipping Calculator */
.rvcalc {
	--rv-black: #0d0d0d;
	--rv-panel: #161514;
	--rv-panel-2: #1f1d1a;
	--rv-gold: #c8a24a;
	--rv-gold-2: #e6c66e;
	--rv-line: #35312a;
	--rv-text: #f2ede2;
	--rv-muted: #a49b86;
	--rv-error: #ff6b6b;
	--rv-radius: 14px;
	box-sizing: border-box;
	width: 100%;
	color: var(--rv-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.rvcalc *,
.rvcalc *::before,
.rvcalc *::after { box-sizing: border-box; }

.rvcalc__inner {
	max-width: 860px;
	margin: 0 auto;
	background: linear-gradient(180deg, var(--rv-panel) 0%, var(--rv-black) 100%);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-radius);
	padding: clamp(20px, 4vw, 40px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

/* Header */
.rvcalc__head { text-align: center; margin-bottom: 26px; }
.rvcalc__eyebrow {
	color: var(--rv-gold);
	letter-spacing: .14em;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.rvcalc__title {
	margin: 0;
	font-size: clamp(22px, 3.4vw, 30px);
	line-height: 1.15;
	color: var(--rv-text);
	font-weight: 700;
}

/* Sections */
.rvcalc__section {
	background: var(--rv-panel-2);
	border: 1px solid var(--rv-line);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 18px;
}
.rvcalc__legend {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	font-size: 15px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--rv-gold-2);
}
.rvcalc__legend span {
	display: inline-grid;
	place-items: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rv-gold), var(--rv-gold-2));
	color: #1a1712;
	font-size: 13px;
	font-weight: 800;
}

/* Grid + fields */
.rvcalc__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.rvcalc__field { display: flex; flex-direction: column; gap: 7px; }
.rvcalc__field > span {
	font-size: 13px;
	color: var(--rv-muted);
	font-weight: 600;
}
.rvcalc__field--dims { grid-column: 1 / -1; }

.rvcalc input,
.rvcalc select {
	width: 100%;
	background: #100f0d;
	border: 1px solid var(--rv-line);
	border-radius: 9px;
	color: var(--rv-text);
	padding: 12px 13px;
	font-size: 15px;
	line-height: 1.2;
	outline: none;
	transition: border-color .15s, box-shadow .15s;
	-webkit-appearance: none;
	appearance: none;
}
.rvcalc select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c8a24a' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}
.rvcalc input:focus,
.rvcalc select:focus {
	border-color: var(--rv-gold);
	box-shadow: 0 0 0 3px rgba(200, 162, 74, .18);
}
.rvcalc input::placeholder { color: #6b6455; }

/* Affix (currency / unit) */
.rvcalc__input-affix { position: relative; display: flex; align-items: center; }
.rvcalc__input-affix .rvcalc__affix {
	position: absolute;
	left: 12px;
	font-style: normal;
	color: var(--rv-gold);
	font-weight: 700;
	pointer-events: none;
}
.rvcalc__input-affix .rvcalc__affix ~ input { padding-left: 26px; }
.rvcalc__suffix {
	position: absolute;
	right: 76px;
	color: var(--rv-muted);
	font-size: 13px;
	pointer-events: none;
}
.rvcalc__unit {
	position: absolute;
	right: 6px;
	width: auto !important;
	min-width: 74px;
	padding: 8px 28px 8px 10px;
	background-color: #050505;
	font-size: 13px;
}

/* Dimensions row */
.rvcalc__dims { display: flex; align-items: center; gap: 8px; }
.rvcalc__dims input { text-align: center; }
.rvcalc__dims i { color: var(--rv-muted); font-style: normal; }
.rvcalc__dims .rvcalc__unit { position: static; min-width: 70px; }
.rvcalc__hint { color: var(--rv-muted); font-size: 12px; margin-top: 6px; display: block; }
.rvcalc__price-note { color: var(--rv-gold); font-style: normal; font-size: 11px; margin-left: 6px; }

/* CAPTCHA */
.rvcalc__captcha { margin: 4px 0 14px; }
.rvcalc__captcha:empty { margin: 0; }

/* Error */
.rvcalc__error {
	color: var(--rv-error);
	background: rgba(255, 107, 107, .08);
	border: 1px solid rgba(255, 107, 107, .3);
	border-radius: 9px;
	padding: 10px 13px;
	font-size: 13px;
	margin: 0 0 14px;
}

/* Button */
.rvcalc__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border: none;
	cursor: pointer;
	padding: 15px 22px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #1a1712;
	background: linear-gradient(135deg, var(--rv-gold), var(--rv-gold-2));
	transition: transform .12s ease, filter .15s ease;
}
.rvcalc__btn:hover { filter: brightness(1.06); }
.rvcalc__btn:active { transform: translateY(1px); }
.rvcalc__btn:disabled { opacity: .65; cursor: default; }
.rvcalc__btn--ghost {
	background: transparent;
	color: var(--rv-gold);
	border: 1px solid var(--rv-gold);
	margin-top: 14px;
}

/* Results */
.rvcalc__results { margin-top: 26px; }
.rvcalc__results-title {
	text-align: center;
	color: var(--rv-gold-2);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 16px;
	margin: 0 0 18px;
}
.rvcalc__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.rvcalc__card {
	background: var(--rv-panel-2);
	border: 1px solid var(--rv-line);
	border-radius: 12px;
	padding: 18px;
	text-align: center;
}
.rvcalc__card--total {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, rgba(200, 162, 74, .16), rgba(230, 198, 110, .06));
	border-color: var(--rv-gold);
}
.rvcalc__card-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--rv-muted);
	margin-bottom: 8px;
}
.rvcalc__card-value { font-size: clamp(20px, 3vw, 26px); color: var(--rv-gold-2); font-weight: 800; }
.rvcalc__card--total .rvcalc__card-value { color: var(--rv-text); }

/* Breakdown */
.rvcalc__breakdown {
	margin-top: 16px;
	border: 1px solid var(--rv-line);
	border-radius: 10px;
	background: var(--rv-panel-2);
	padding: 12px 16px;
}
.rvcalc__breakdown summary { cursor: pointer; color: var(--rv-gold); font-weight: 600; font-size: 14px; }
.rvcalc__breakdown ul { list-style: none; margin: 12px 0 2px; padding: 0; }
.rvcalc__breakdown li {
	display: flex;
	justify-content: space-between;
	padding: 7px 0;
	border-bottom: 1px dashed var(--rv-line);
	font-size: 14px;
}
.rvcalc__breakdown li:last-child { border-bottom: none; }
.rvcalc__breakdown li span { color: var(--rv-muted); }
.rvcalc__breakdown li b { color: var(--rv-text); }

.rvcalc__disclaimer { color: var(--rv-muted); font-size: 12px; text-align: center; margin: 16px 0 0; }
.rvcalc__footnote {
	text-align: center;
	color: var(--rv-gold);
	letter-spacing: .12em;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 24px 0 0;
}

/* Responsive */
@media (max-width: 600px) {
	.rvcalc__grid,
	.rvcalc__cards { grid-template-columns: 1fr; }
	.rvcalc__suffix { display: none; }
	.rvcalc__dims { flex-wrap: wrap; }
	.rvcalc__dims .rvcalc__unit { flex: 1 0 100%; }
}
