.rkc-calc {
	max-width: 680px;
	margin: 8px auto 60px;
	font-family: var(--font-family, 'Plus Jakarta Sans', sans-serif);
	color: var(--ink, #222);
}

.rkc-card {
	background: #FFF8F5;
	border-radius: 22px;
	padding: 32px;
	border: 1px solid #F5E6DE;
}

.rkc-section-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--pine-dark, #222);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.rkc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 24px;
}
.rkc-span-2 { grid-column: 1 / 3; }

.rkc-field label {
	font-size: 12px;
	color: var(--muted, #717171);
	font-weight: 500;
	display: block;
	margin-bottom: 6px;
}
.rkc-field select,
.rkc-field input {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid #F0DDD2;
	font-size: 14px;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
	color: var(--ink, #222);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	appearance: none;
	-webkit-appearance: none;
}
.rkc-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23717171' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
	cursor: pointer;
}
.rkc-field select:hover,
.rkc-field input:hover {
	border-color: var(--accent, #FF385C);
}
.rkc-field select:focus,
.rkc-field input:focus {
	outline: none;
	border-color: var(--accent, #FF385C);
	box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.14);
}

.rkc-section { margin-bottom: 24px; }
.rkc-section:last-of-type { margin-bottom: 0; }

.rkc-style-row { display: flex; gap: 10px; }
.rkc-dest-row { display: flex; gap: 10px; flex-wrap: wrap; }

.rkc-style-btn,
.rkc-dest-btn {
	cursor: pointer;
	font-family: inherit;
	border: 1px solid #F0DDD2;
	background: #fff;
	color: var(--muted, #717171);
	font-size: 13px;
	font-weight: 500;
	transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.rkc-style-btn {
	flex: 1;
	flex-direction: column;
	border-radius: 14px;
	padding: 14px 10px;
	text-align: center;
}
.rkc-style-btn svg { width: 20px; height: 20px; }
.rkc-dest-btn {
	border-radius: 999px;
	padding: 9px 16px 9px 12px;
}
.rkc-dest-btn svg { width: 15px; height: 15px; }
.rkc-style-btn:hover,
.rkc-dest-btn:hover {
	border-color: var(--accent, #FF385C);
	color: var(--pine-dark, #222);
	transform: translateY(-1px);
}
.rkc-style-btn.active,
.rkc-dest-btn.active {
	border: 1.5px solid var(--accent, #FF385C);
	background: #FFF1F4;
	color: var(--accent-dark, #E00B41);
	font-weight: 600;
}

.rkc-error {
	display: none;
	align-items: center;
	gap: 8px;
	color: #B3261E;
	background: #FDEDED;
	border: 1px solid #F5C6C6;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 13px;
	margin-bottom: 20px;
}
.rkc-error.visible { display: flex; }

.rkc-result {
	background: var(--pine-dark, #222);
	border-radius: 18px;
	padding: 24px 26px;
	color: #fff;
	position: relative;
	min-height: 96px;
	transition: transform 0.2s ease;
}
.rkc-result.loading { opacity: 0.55; }
.rkc-result.pop { animation: rkc-pop 0.35s ease; }
@keyframes rkc-pop {
	0% { transform: scale(0.98); }
	50% { transform: scale(1.012); }
	100% { transform: scale(1); }
}
.rkc-result-top {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
}
.rkc-result-label {
	font-size: 12px;
	color: #B8B8B8;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-weight: 600;
}
.rkc-result-total { font-size: 27px; font-weight: 700; letter-spacing: -0.01em; }
.rkc-result-perperson { font-size: 13px; color: #B8B8B8; margin: 6px 0 16px; }

.rkc-result-breakdown {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.rkc-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	color: #D6D6D6;
}
.rkc-row-label { display: flex; align-items: center; gap: 8px; }
.rkc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rkc-row span:last-child { font-weight: 500; color: #fff; }

.rkc-disclaimer {
	font-size: 12px;
	color: var(--muted, #717171);
	margin: 16px 4px 0;
	line-height: 1.5;
}

.rkc-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
	background: var(--accent, #FF385C);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	padding: 14px 20px;
	border-radius: 14px;
	margin-top: 16px;
	transition: background 0.15s ease, transform 0.15s ease;
}
.rkc-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.rkc-cta:hover {
	background: var(--accent-dark, #E00B41);
	transform: translateY(-1px);
}

.rkc-unlock {
	background: #fff;
	border: 1px solid #F0DDD2;
	border-radius: 16px;
	padding: 20px 22px;
	margin-top: 18px;
}
.rkc-unlock-copy strong {
	display: block;
	font-size: 15px;
	color: var(--pine-dark, #222);
	margin-bottom: 4px;
}
.rkc-unlock-copy span {
	display: block;
	font-size: 13px;
	color: var(--muted, #717171);
	line-height: 1.5;
}
.rkc-unlock-form {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}
.rkc-unlock-form input {
	flex: 1;
	height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid #F0DDD2;
	font-size: 14px;
	font-family: inherit;
	box-sizing: border-box;
}
.rkc-unlock-form input:focus {
	outline: none;
	border-color: var(--accent, #FF385C);
	box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.14);
}
.rkc-unlock-form button {
	white-space: nowrap;
	background: var(--accent, #FF385C);
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: 14px;
	font-family: inherit;
	padding: 0 20px;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.rkc-unlock-form button:hover { background: var(--accent-dark, #E00B41); }
.rkc-unlock-form button:disabled { opacity: 0.6; cursor: default; }
.rkc-unlock-error {
	display: none;
	color: #B3261E;
	font-size: 12px;
	margin-top: 10px;
}
.rkc-unlock-error.visible { display: block; }
@media (max-width: 480px) {
	.rkc-unlock-form { flex-direction: column; }
}

.rkc-guide {
	background: #fff;
	border: 1px solid #F0DDD2;
	border-radius: 16px;
	padding: 24px;
	margin-top: 18px;
}
.rkc-guide-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.rkc-guide-header h2 {
	font-size: 18px;
	font-weight: 700;
	color: var(--pine-dark, #222);
	margin: 0;
}
.rkc-print-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1px solid #F0DDD2;
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 500;
	font-family: inherit;
	color: var(--pine-dark, #222);
	cursor: pointer;
}
.rkc-print-btn:hover { border-color: var(--accent, #FF385C); }

.rkc-guide-unit-row {
	padding: 12px 0;
	border-bottom: 1px solid #F5EDE7;
}
.rkc-guide-unit-row:last-child { border-bottom: none; }
.rkc-guide-unit-row .rkc-row-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--ink, #222);
}
.rkc-guide-amount { margin-left: auto; font-weight: 600; }
.rkc-guide-unit-note {
	font-size: 12px;
	color: var(--muted, #717171);
	margin-top: 4px;
	margin-left: 16px;
}

.rkc-guide-section { margin-top: 22px; }
.rkc-guide-section h3 {
	font-size: 14px;
	font-weight: 600;
	color: var(--pine-dark, #222);
	margin: 0 0 10px;
}
.rkc-guide-section ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.rkc-guide-section li {
	font-size: 13px;
	color: var(--ink, #222);
	line-height: 1.6;
	padding: 8px 0 8px 22px;
	position: relative;
	border-bottom: 1px solid #F5EDE7;
}
.rkc-guide-section li:last-child { border-bottom: none; }
.rkc-guide-section li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 15px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent, #FF385C);
}

.rkc-comp-row {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 13px;
}
.rkc-comp-label { font-weight: 600; color: var(--pine-dark, #222); }
.rkc-comp-bar-track {
	background: #F5EDE7;
	border-radius: 6px;
	height: 8px;
	overflow: hidden;
}
.rkc-comp-bar {
	background: var(--accent, #FF385C);
	height: 100%;
	border-radius: 6px;
}
.rkc-comp-value { color: var(--muted, #717171); white-space: nowrap; }

@media print {
	.rkc-field, .rkc-style-row, .rkc-dest-row, .rkc-section-title,
	.rkc-unlock, .rkc-print-btn, .rkc-disclaimer,
	.site-header, .site-footer, .mobile-tabbar, .trip-calc-hero-mark {
		display: none !important;
	}
	.rkc-card { background: #fff; border: none; padding: 0; }
	.rkc-result { background: #fff; color: #222; border: 1px solid #ddd; }
	.rkc-result-label, .rkc-result-perperson, .rkc-row { color: #555 !important; }
	.rkc-row span:last-child { color: #222 !important; }
	.rkc-guide { border: none; padding: 0; }
	body { padding-bottom: 0 !important; }
}

@media (max-width: 640px) {
	.rkc-calc { margin: 0 auto 40px; padding: 0 16px; }
	.rkc-card { padding: 22px; border-radius: 18px; }
	.rkc-grid { grid-template-columns: 1fr; }
	.rkc-span-2 { grid-column: 1; }
	.rkc-result { padding: 20px; }
	.rkc-result-total { font-size: 23px; }
}
