.hk-osf {
	--hk-osf-teal: #1a9e8f;
	--hk-osf-navy: #1c2340;
	--hk-osf-yellow: #f5c518;
	--hk-osf-gap: 14px;
	direction: rtl;
	width: 100%;
}

.hk-osf__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.hk-osf__header-bar {
	width: 28px;
	height: 4px;
	border-radius: 2px;
	background: var(--hk-osf-teal);
	flex-shrink: 0;
}

.hk-osf__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
}

.hk-osf__fields {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--hk-osf-gap);
	margin-bottom: 28px;
}

.hk-osf__field {
	position: relative;
}

.hk-osf__field input {
	width: 100%;
	height: 52px;
	padding: 0 18px;
	border: none;
	border-radius: 18px;
	background: #f3f3f3;
	font-size: 0.875rem;
	color: #333;
	outline: none;
	transition: box-shadow 0.2s ease;
}

.hk-osf__field input:focus {
	box-shadow: 0 0 0 2px rgba(26, 158, 143, 0.25);
}

.hk-osf__field--date input {
	padding-left: 44px;
}

.hk-osf__date-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: #999;
	pointer-events: none;
}

.hk-osf__date-icon svg {
	width: 100%;
	height: 100%;
}

.hk-osf__section {
	margin-bottom: 24px;
}

.hk-osf__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.hk-osf__section-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #444;
}

.hk-osf .hk-osf__scroll-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: var(--hk-osf-teal) !important;
	cursor: pointer;
	box-shadow: none !important;
}

.hk-osf .hk-osf__scroll-btn svg {
	width: 20px;
	height: 20px;
}

.hk-osf__carousel-wrap {
	overflow: hidden;
}

.hk-osf__carousel {
	display: flex;
	gap: var(--hk-osf-gap);
	overflow-x: auto;
	scrollbar-width: none;
	direction: ltr;
	padding-bottom: 4px;
}

.hk-osf__carousel::-webkit-scrollbar {
	display: none;
}

.hk-osf__chip {
	flex: 0 0 var(--hk-osf-item-width, 200px);
	cursor: pointer;
	direction: rtl;
}

.hk-osf__chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hk-osf__chip-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 18px;
	border: 1.5px solid #e5e5e5;
	border-radius: 18px;
	background: #fff;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hk-osf__chip--service .hk-osf__chip-inner {
	justify-content: space-between;
	gap: 12px;
}

.hk-osf__chip-text {
	font-size: 0.875rem;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
}

.hk-osf__chip-check {
	display: none;
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--hk-osf-teal);
	color: #fff;
	align-items: center;
	justify-content: center;
}

.hk-osf__chip-check svg {
	width: 14px;
	height: 14px;
}

.hk-osf__chip input:checked + .hk-osf__chip-inner {
	border-color: #bbb;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hk-osf__chip input:checked + .hk-osf__chip-inner .hk-osf__chip-check {
	display: flex;
}

.hk-osf__chip--plan .hk-osf__chip-inner {
	flex-direction: column;
	align-items: flex-start;
	min-height: 88px;
	padding: 14px 16px;
}

.hk-osf__plan-name {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #222;
	line-height: 1.4;
}

.hk-osf__plan-price {
	font-size: 0.8125rem;
	color: var(--hk-osf-teal);
	font-weight: 600;
	margin-top: 6px;
}

.hk-osf__chip--plan .hk-osf__chip-check {
	position: absolute;
	top: 10px;
	left: 10px;
}

.hk-osf__empty-plans {
	margin: 0;
	padding: 12px 0;
	font-size: 0.875rem;
	color: #888;
}

.hk-osf__message {
	margin-bottom: 16px;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 0.875rem;
}

.hk-osf__message.is-success {
	background: #e8f8f5;
	color: #1a7a6e;
}

.hk-osf__message.is-error {
	background: #fdeaea;
	color: #b33;
}

.hk-osf .hk-osf__submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 58px;
	padding: 0 8px 0 24px !important;
	border: none !important;
	border-radius: 18px !important;
	background: var(--hk-osf-navy) !important;
	color: #fff !important;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: none !important;
	transition: opacity 0.2s ease;
}

.hk-osf .hk-osf__submit:hover,
.hk-osf .hk-osf__submit:focus {
	opacity: 0.92;
	background: var(--hk-osf-navy) !important;
	color: #fff !important;
}

.hk-osf__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.hk-osf__submit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--hk-osf-yellow);
	color: #1a1a1a;
}

.hk-osf__submit-icon svg {
	width: 22px;
	height: 22px;
}

@media (max-width: 767px) {
	.hk-osf__fields {
		grid-template-columns: 1fr;
	}
}
