/* Oncologist profile — Appointment UI kit */
:root {
	--op-teal: #08736F;
	--op-teal-dark: #065e5b;
	--op-navy: #0B2F4A;
	--op-blue: #0B86D8;
	--op-mint: #DDF4EE;
	--op-soft-blue: #EAF5FC;
	--op-peach: #FFF3EA;
	--op-whatsapp: #25D366;
	--op-body: #4A5568;
	--op-muted: #6B7A8A;
	--op-border: #E4ECF2;
	--op-card-radius: 18px;
	--op-btn-radius: 10px;
	--op-page-bg: #F4F7F9;
}

body:has(.op-appt-page) .breadcrumb-new,
body:has(.op-appt-page) .p-head,
body.op-profile-active .breadcrumb-new,
body.op-profile-active .p-head {
	display: none !important;
}

.op-breadcrumb {
	background: var(--op-page-bg);
	padding: 14px 0 6px;
}

.op-breadcrumb__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	line-height: 1.4;
	color: #8A97A6;
}

.op-breadcrumb__nav a {
	color: var(--op-muted);
	text-decoration: none;
}

.op-breadcrumb__nav a:hover {
	color: var(--op-teal);
}

.op-breadcrumb__sep { color: #C0C8D0; }
.op-breadcrumb__current { color: var(--op-navy); font-weight: 500; }

.op-profile-page.op-appt-page {
	background: var(--op-page-bg);
	padding: 8px 0 48px;
	overflow-x: hidden;
}

.op-appt-page .container {
	max-width: 1200px;
}

.op-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: start;
}

.op-main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.op-side {
	position: sticky;
	top: 88px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	max-width: 100%;
}

/* ---------- Hero ---------- */
.op-hero {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--op-border);
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(11, 47, 74, 0.06);
}

.op-hero__photo {
	position: relative;
	width: 200px;
	max-width: 200px;
}

.op-hero__img {
	display: block;
	width: 200px !important;
	height: 200px !important;
	max-width: 200px;
	max-height: 200px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 14px;
	background: var(--op-soft-blue);
}

.op-hero__badge {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 2px 10px rgba(11, 47, 74, 0.12);
	font-size: 11px;
	font-weight: 700;
	color: var(--op-navy);
	line-height: 1.2;
}

.op-hero__badge img {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.op-hero__name {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 6px;
	row-gap: 2px;
	margin: 0 0 2px;
	font-size: 26px;
	font-weight: 700;
	color: var(--op-navy);
	line-height: 1.2;
}

.op-hero__verified {
	width: 0.85em;
	height: 0.85em;
	flex-shrink: 0;
	display: block;
	margin: 0;
	/* Optical center with cap-height (flex center sits high once descenders are included) */
	transform: translateY(0.06em);
}

.op-hero__spec {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--op-muted);
	line-height: 1.3;
}

.op-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.op-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border: 0;
	border-radius: 999px;
	background: #EEF1F4;
	color: var(--op-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	line-height: 1.2;
	transition: background 0.15s, color 0.15s;
}

.op-tag.is-active {
	background: #fff;
	color: var(--op-teal);
	box-shadow: inset 0 0 0 1.5px var(--op-teal);
}

.op-tag.is-muted {
	opacity: 0.55;
	cursor: default;
}

.op-hero__meta {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 16px;
}

.op-hero__meta-item,
.op-hero__meta li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--op-body);
	line-height: 1.4;
	min-width: 0;
}

.op-hero__meta-item--span {
	grid-column: 1 / -1;
}

.op-hero__meta-item--span span {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.op-hero__meta li:empty,
.op-hero__meta li span:empty {
	display: none;
}

.op-hero__meta li > img,
.op-hero__meta-item > img {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.op-hero__meta a {
	color: var(--op-teal);
	text-decoration: none;
	font-weight: 500;
}

.op-hero__meta a:hover { text-decoration: underline; }

.op-hero__hospital {
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--op-border);
	border-radius: 6px;
	padding: 4px 8px;
	font-size: 13px;
	color: var(--op-navy);
	background: #fff;
}

.op-hero__quote {
	margin: 0;
	padding: 10px 14px;
	border-radius: 10px;
	background: var(--op-soft-blue);
	color: var(--op-navy);
	font-size: 13px;
	line-height: 1.4;
	font-style: normal;
}

.op-hero__quote cite {
	display: inline;
	margin-left: 2px;
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	color: var(--op-muted);
}

/* ---------- Values ---------- */
.op-values {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 18px 16px;
	background: #fff;
	border: 1px solid var(--op-border);
	border-radius: var(--op-card-radius);
	box-shadow: 0 2px 12px rgba(11, 47, 74, 0.04);
}

.op-values__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--op-navy);
	line-height: 1.35;
}

.op-values__item img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	display: block;
}

/* ---------- Stacked sections + jump nav ---------- */
.op-sections {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	max-width: 100%;
}

.op-sections__nav {
	position: sticky;
	top: 72px;
	z-index: 20;
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	margin: 0;
	padding: 0 8px;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	background: #fff;
	border: 1px solid var(--op-border);
	border-radius: var(--op-card-radius);
	box-shadow: 0 4px 20px rgba(11, 47, 74, 0.06);
	box-sizing: border-box;
}

.op-sections__link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	min-height: 52px;
	padding: 14px 16px;
	border-bottom: 3px solid transparent;
	color: var(--op-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none !important;
	white-space: nowrap;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.op-sections__link:hover,
.op-sections__link:focus {
	color: var(--op-teal);
	text-decoration: none !important;
}

.op-sections__link.is-active {
	color: var(--op-teal);
	border-bottom-color: var(--op-teal);
}

.op-section-card {
	scroll-margin-top: 140px;
	padding: 24px 28px;
	background: #fff;
	border: 1px solid var(--op-border);
	border-radius: var(--op-card-radius);
	box-shadow: 0 4px 24px rgba(11, 47, 74, 0.04);
}

.op-section-title,
.op-section-card .tb-hding {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--op-navy);
	line-height: 1.35;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.op-section-card .tb-dtls,
.op-bio {
	font-size: 15px;
	line-height: 1.65;
	color: var(--op-body);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.op-bio__more {
	margin-top: 10px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--op-teal);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.op-info-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

.op-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--op-body);
}

.op-info-list .fa-li {
	position: static;
	width: auto;
	left: auto;
}

.op-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.op-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: #333;
}

.op-checklist li > img {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

.op-checklist li > span {
	flex: 1;
	min-width: 0;
}

.op-info-block {
	margin: 18px 0 0;
}

.op-info-block .tb-hding {
	margin-bottom: 10px;
}

/* Kill legacy oncologist-css tick (::before) everywhere on this page —
   checklist / info-list already render a check <img> for every doctor. */
.op-profile-page .details-partition ul,
.op-appt-page .details-partition ul,
.op-profile-page .op-checklist,
.op-appt-page .op-checklist,
.op-section-card .op-checklist,
.op-info-block .op-checklist {
	padding-left: 0 !important;
	margin-left: 0 !important;
	list-style: none !important;
}

.op-profile-page .details-partition ul li:before,
.op-appt-page .details-partition ul li:before,
.op-profile-page .op-checklist li:before,
.op-appt-page .op-checklist li:before,
.op-section-card .op-checklist li:before,
.op-section-card .info-list > li:before,
.op-section-card ul.fa-ul > li:before,
.op-info-block .op-checklist li:before,
.op-bio ul li:before {
	content: none !important;
	display: none !important;
	background: none !important;
	background-image: none !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* DB HTML that already uses .info-list — restyle to match */
.op-section-card .info-list,
.op-section-card ul.fa-ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.op-section-card .info-list > li,
.op-section-card ul.fa-ul > li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 12px;
	padding-left: 0;
	font-size: 15px;
	line-height: 1.5;
	color: #333;
	position: relative;
}

.op-section-card .info-list > li .fa-li,
.op-section-card ul.fa-ul > li .fa-li {
	position: static;
	width: auto;
	left: auto;
	margin: 0;
	line-height: 1;
}

.op-section-card .info-list > li .fa-li img,
.op-section-card ul.fa-ul > li .fa-li img {
	width: 18px;
	height: 18px;
}

/* Legacy tab selectors kept as aliases for older markup */
.op-tabs.onco-about-tabs {
	margin-top: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.op-tabs > .nav-tabs {
	display: none;
}

.op-tabs > .tab-content {
	padding: 0 !important;
}

/* ---------- Booking panel ---------- */
.op-book {
	padding: 20px;
	border-radius: var(--op-card-radius);
	background: linear-gradient(180deg, #EAF8F5 0%, #F7FCFB 100%);
	border: 1px solid #D5EBE6;
	box-shadow: 0 8px 28px rgba(8, 115, 111, 0.08);
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.op-book__head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 16px;
}

.op-book__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--op-navy);
}

.op-book__sub {
	margin: 2px 0 0;
	font-size: 12px;
	color: var(--op-muted);
}

.op-book__toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	padding: 4px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--op-border);
}

.op-book__tog {
	margin: 0;
	cursor: pointer;
}

.op-book__tog input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.op-book__tog span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 6px 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--op-muted);
	text-align: center;
	line-height: 1.2;
	transition: background 0.15s ease, color 0.15s ease;
}

.op-book__tog input:checked + span {
	background: var(--op-teal);
	color: #fff;
}

.op-book__tog.is-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.op-book__label {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--op-navy);
}

.op-book__date-scroller {
	display: flex;
	gap: 8px;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	padding-bottom: 6px;
	margin-bottom: 16px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
}

.op-book__date {
	flex: 0 0 58px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-height: 64px;
	padding: 8px 6px;
	border: 1px solid var(--op-border);
	border-radius: 12px;
	background: #fff;
	color: var(--op-navy);
	cursor: pointer;
	scroll-snap-align: start;
}

.op-book__date.is-active {
	background: var(--op-teal);
	border-color: var(--op-teal);
	color: #fff;
}

.op-book__dow {
	font-size: 11px;
	font-weight: 600;
	opacity: 0.85;
}

.op-book__dom {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.1;
}

.op-book__slot-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-bottom: 16px;
}

.op-book__slot-grid--hint {
	animation: opPulse 0.35s ease 2;
}

@keyframes opPulse {
	0%, 100% { transform: translateX(0); }
	30% { transform: translateX(-3px); }
	60% { transform: translateX(3px); }
}

.op-book__slot input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.op-book__slot label {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid var(--op-border);
	border-radius: 10px;
	background: #fff;
	color: var(--op-navy);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	margin: 0;
	text-align: center;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.op-book__slot input:checked + label {
	background: var(--op-teal);
	border-color: var(--op-teal);
	color: #fff;
}

.op-book__cta,
.op-book__cta.btn-choose-date2,
.op-appt-page .op-book__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 48px;
	padding: 12px 16px !important;
	margin: 0 0 12px !important;
	border: none !important;
	border-radius: var(--op-btn-radius) !important;
	background: var(--op-teal) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3;
	cursor: pointer;
	box-shadow: none;
}

.op-book__cta.hide,
.op-book__cta[style*="display: none"],
.op-book__cta[style*="display:none"] {
	display: none !important;
}

.op-book__cta.is-visible {
	display: inline-flex !important;
}

.op-book__cta:hover,
.op-book__cta:focus {
	background: var(--op-teal-dark) !important;
	color: #fff !important;
	text-decoration: none;
}

.op-book__cta img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.op-book__fee {
	margin: 0 0 12px;
	text-align: center;
	font-size: 14px;
	color: var(--op-body);
}

.op-book__fee strong {
	color: var(--op-navy);
}

.op-book__hint {
	margin: -4px 0 12px;
	padding: 10px 12px;
	border-radius: 10px;
	background: #FFF4F0;
	border: 1px solid #F5C6B5;
	color: #9A3412;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.op-book__field--error .op-book__label {
	color: #C2410C;
}

.op-book__field--error .op-book__date,
.op-book__field--error .op-book__slot label {
	border-color: #F08A55;
	box-shadow: 0 0 0 2px rgba(240, 138, 85, 0.18);
}

.op-book__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 14px;
	font-size: 11px;
	color: var(--op-muted);
}

.op-book__trust span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.op-book__trust img {
	width: 14px;
	height: 14px;
}

/* ---------- Help card ---------- */
.op-help {
	padding: 18px;
	border-radius: var(--op-card-radius);
	background: var(--op-peach);
	border: 1px solid #F3E0D2;
}

.op-help__icon {
	margin-bottom: 8px;
}

.op-help__text {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--op-navy);
	font-weight: 500;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.op-help__wa,
.op-help__call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	margin-bottom: 8px;
	border-radius: var(--op-btn-radius);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	box-sizing: border-box;
}

.op-help__wa {
	border: 1.5px solid var(--op-whatsapp);
	background: #fff;
	color: #128C7E;
}

.op-help__call {
	border: 1.5px solid var(--op-navy);
	background: #fff;
	color: var(--op-navy);
	margin-bottom: 0;
}

.op-help__wa:hover,
.op-help__call:hover {
	opacity: 0.92;
	text-decoration: none !important;
}

/* ---------- FAQ accordion ---------- */
.op-faq--single {
	display: block;
}

.op-faq__head {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 16px;
}

.op-faq__title {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 700;
	color: var(--op-navy);
}

.op-faq__intro {
	margin: 0;
	font-size: 14px;
	color: var(--op-body);
	line-height: 1.5;
}

.op-faq__item {
	border: 1px solid var(--op-border);
	border-radius: 12px;
	background: #fff;
	margin-bottom: 10px;
	overflow: hidden;
}

.op-faq__q {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 14px 16px;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.op-faq__num {
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 700;
	color: var(--op-teal);
}

.op-faq__q-text {
	flex: 1;
	font-size: 15px;
	font-weight: 600;
	color: var(--op-navy);
	line-height: 1.4;
}

.op-faq__chevron {
	transition: transform 0.2s ease;
}

.op-faq__item.is-open .op-faq__chevron {
	transform: rotate(180deg);
}

.op-faq__a {
	display: none;
	padding: 0 16px 16px 46px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--op-body);
}

.op-faq__item.is-open .op-faq__a {
	display: block;
}

/* Sticky mobile */
.op-faq-sticky {
	display: none;
}

.op-cta__book,
.op-faq-sticky .op-cta__book {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--op-teal);
	color: #fff !important;
	border-radius: var(--op-btn-radius);
	font-weight: 700;
	text-decoration: none !important;
	padding: 12px 10px;
}

.op-cta__wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1.5px solid var(--op-whatsapp);
	border-radius: var(--op-btn-radius);
	background: #fff;
	color: #128C7E !important;
	font-weight: 600;
	text-decoration: none !important;
	padding: 12px 10px;
}

body.has-op-faq-sticky .whatsapp_float,
body.has-op-faq-sticky a.floating_button_right,
body.has-op-faq-sticky a.floating_button_left {
	display: none !important;
}

@media (max-width: 1199px) {
	.op-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 18px;
	}

	.op-hero {
		grid-template-columns: 160px minmax(0, 1fr);
		gap: 16px;
		padding: 16px;
	}

	.op-hero__photo,
	.op-hero__img {
		width: 160px !important;
		max-width: 160px;
		height: 160px !important;
		max-height: 160px;
	}

	.op-hero__name { font-size: 22px; }

	.op-hero__meta {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

@media (max-width: 991px) {
	.op-appt-page {
		padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
	}

	body.has-hospital-sticky .op-appt-page {
		padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
	}

	.op-layout {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	/* Flatten so booking can sit under hero, above profile sections */
	.op-main {
		display: contents;
	}

	.op-hero {
		order: 1;
	}

	.op-sections__nav {
		order: 2;
		position: static;
		top: auto;
		flex-direction: column;
		flex-wrap: nowrap;
		overflow: visible;
		padding: 8px;
		gap: 4px;
	}

	.op-sections__link {
		width: 100%;
		min-height: 48px;
		padding: 12px 14px;
		border-bottom: 0;
		border-radius: 10px;
		justify-content: flex-start;
		white-space: normal;
	}

	.op-sections__link.is-active {
		background: var(--op-mint);
		border-bottom-color: transparent;
		color: var(--op-teal);
	}

	.op-side {
		order: 3;
		position: static;
		min-width: 0;
		max-width: 100%;
		width: 100%;
	}

	.op-values {
		order: 4;
	}

	.op-sections {
		order: 5;
	}

	.op-hero {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		padding: 12px;
	}

	.op-hero__photo,
	.op-hero__img {
		width: 140px !important;
		max-width: 140px;
		height: 140px !important;
		max-height: 140px;
	}

	.op-hero__name,
	.op-hero__tags,
	.op-hero__meta {
		justify-content: center;
	}

	.op-hero__meta {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.op-hero__meta li {
		justify-content: flex-start;
		text-align: left;
	}

	.op-values {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.op-section-card {
		scroll-margin-top: 120px;
		padding: 18px 16px;
	}

	.op-faq-sticky {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1050;
		gap: 8px;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
		background: rgba(255, 255, 255, 0.98);
		border-top: 1px solid var(--op-border);
		box-shadow: 0 -6px 20px rgba(11, 47, 74, 0.1);
	}

	/* Global hospital sticky already covers Book / WhatsApp */
	body.has-hospital-sticky .op-faq-sticky {
		display: none !important;
	}

	.op-faq-sticky .op-cta__book,
	.op-faq-sticky .op-cta__wa {
		flex: 1 1 0;
		min-width: 0;
		font-size: 13px;
	}
}

@media (max-width: 575px) {
	.op-hero__name { font-size: 22px; }
	.op-values { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 10px; }
	.op-values__item { font-size: 12px; }
	.op-book__toggle { grid-template-columns: 1fr; border-radius: 14px; }
	.op-book__tog span { border-radius: 10px; }
}
