/* ==========================================================================
   OCC base styles — typography reset, layout helpers, header, footer.
   No inline styles — every visual decision lives here.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
	margin: 0;
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--body);
	color: var(--wp--preset--color--text-dark);
	background: var(--wp--preset--color--background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.6;
	overflow-x: hidden;
	max-width: 100vw;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--wp--preset--color--primary); text-decoration: none; }
a:hover { color: var(--wp--preset--color--primary-hover); text-decoration: underline; }
/* Don't let the global anchor hover override button-style anchors */
a.wp-block-button__link:hover,
a.wp-block-button__link,
.wp-block-button a:hover,
.occ-hero__cta:hover,
.occ-trans__btn:hover,
.occ-packages__btn-primary:hover,
.occ-vid-test__card:hover,
.occ-news__media:hover,
.occ-news__title a:hover { text-decoration: none; }

p { margin: 0; }

/* --------------------------------------------------------------------------
   Buttons — 8px radius per Figma. Outline variant flips to filled on hover.
   Explicit text color on every state (overrides the global a:hover rule).
   -------------------------------------------------------------------------- */

.wp-block-button__link {
	color: #ffffff !important;
	text-decoration: none !important;
}
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-block-button__link:active {
	color: #ffffff !important;
	text-decoration: none !important;
}

.is-style-outline > .wp-block-button__link {
	background: transparent !important;
	color: var(--wp--preset--color--primary) !important;
	border: 1px solid var(--wp--preset--color--primary);
}
.is-style-outline > .wp-block-button__link:hover,
.is-style-outline > .wp-block-button__link:focus,
.is-style-outline > .wp-block-button__link:active {
	background: var(--wp--preset--color--primary) !important;
	color: #ffffff !important;
	border-color: var(--wp--preset--color--primary);
}

/* --------------------------------------------------------------------------
   HEADER — Top bar (dark blue) + Main bar (white)
   -------------------------------------------------------------------------- */

.occ-topbar {
	width: 100% !important;
	max-width: none !important;
	padding: 12px 32px;
}
.occ-topbar > .occ-topbar__inner {
	max-width: none;
	width: 100%;
	margin: 0;
	gap: 16px;
}

/* Phone block */
.occ-topbar__phone {
	gap: 8px !important;
	align-items: center !important;
	color: var(--wp--preset--color--background);
}
.occ-topbar__phone-icon {
	margin: 0 !important;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}
.occ-topbar__phone-icon img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
	display: block;
}
.occ-topbar__phone-text {
	display: flex !important;
	flex-direction: column;
	gap: 0 !important;
	margin: 0 !important;
}
.occ-topbar__phone-text > * + * { margin-top: 0 !important; }
.occ-topbar__phone-label {
	font-size: 13px !important;
	line-height: 1.3 !important;
	font-weight: 400;
	color: var(--wp--preset--color--background);
	margin: 0 !important;
}
.occ-topbar__phone-num {
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: var(--wp--preset--color--background);
	margin: 0 !important;
}
.occ-topbar__phone-num a {
	color: inherit !important;
	text-decoration: none;
	font-weight: inherit;
}

/* Vertical divider */
.occ-topbar__divider {
	width: 1px;
	height: 32px;
	background: rgba(255, 255, 255, 0.25);
	flex: 0 0 auto;
}

/* Social links — same shape as footer, #E8F0FF bg, brand-blue icons */
.occ-topbar__social {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0;
}
.occ-topbar__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9999px;
	background: #E8F0FF;
	color: #0066cc;
	text-decoration: none;
	flex-shrink: 0;
	transition: background 0.2s ease;
}
.occ-topbar__social-link:hover {
	background: #c8d8ff;
	color: #0066cc;
	text-decoration: none;
}
.occ-topbar__social-link svg {
	display: block;
}

/* Centered logo */
.occ-topbar__logo,
.occ-topbar .wp-block-site-logo {
	flex: 0 0 auto;
}
.occ-topbar__logo img,
.occ-topbar .wp-block-site-logo img {
	max-height: 56px;
	width: auto;
	filter: brightness(0) invert(1);
}

/* Right cluster */
.occ-topbar__right {
	gap: 20px;
}
.occ-topbar__brochure {
	margin: 0;
}
.occ-topbar__brochure a {
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 22.4px;
	text-decoration: underline;
}
.occ-topbar__lang {
	margin: 0;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	padding: 4px 16px;
}
.occ-topbar__lang a {
	color: #ffffff !important;
	font-size: 14px;
	line-height: 22.4px;
	text-decoration: none;
}
.occ-topbar__lang a:hover { text-decoration: none; }

/* --------------------------------------------------------------------------
   Main bar (white nav row)
   -------------------------------------------------------------------------- */

.occ-mainbar {
	width: 100% !important;
	max-width: none !important;
	background: var(--wp--preset--color--background);
	border-bottom: 1px solid var(--wp--preset--color--border-light);
	padding: 16px 32px;
}
.occ-mainbar > .occ-mainbar__inner {
	max-width: none;
	width: 100%;
	margin: 0;
	gap: 16px;
}

/* Nav menu */
.occ-nav {
	gap: 30px !important;
	font-size: 13px;
}
.occ-nav .wp-block-navigation-item__content {
	color: var(--wp--preset--color--text-dark) !important;
	font-weight: 400;
	line-height: 20.8px;
}

/* ── Dropdown arrow on mega-menu trigger links ───────────────────────────── */
.occ-nav__about .wp-block-navigation-item__content,
.occ-nav__help   .wp-block-navigation-item__content,
.occ-nav__results .wp-block-navigation-item__content,
.occ-nav__patient .wp-block-navigation-item__content {
	display: inline-flex !important;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}
.occ-nav__about .wp-block-navigation-item__content::after,
.occ-nav__help   .wp-block-navigation-item__content::after,
.occ-nav__results .wp-block-navigation-item__content::after,
.occ-nav__patient .wp-block-navigation-item__content::after {
	content: '';
	flex-shrink: 0;
	display: inline-block;
	width: 10px;
	height: 6px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none' stroke='%231a1a1a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1%2C1 5%2C5 9%2C1'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.2s ease;
}
.occ-nav__about[aria-expanded="true"]   .wp-block-navigation-item__content::after,
.occ-nav__help[aria-expanded="true"]    .wp-block-navigation-item__content::after,
.occ-nav__results[aria-expanded="true"] .wp-block-navigation-item__content::after,
.occ-nav__patient[aria-expanded="true"] .wp-block-navigation-item__content::after {
	transform: rotate(180deg);
}
.occ-nav .wp-block-navigation__submenu-icon {
	color: var(--wp--preset--color--text-dark);
}

.occ-mainbar__right { gap: 20px; }
.occ-mainbar__search {
	margin: 0 !important;
	cursor: pointer;
	flex: 0 0 auto;
}
.occ-mainbar__search img {
	width: 43px;
	height: 43px;
	transition: opacity 0.2s ease;
}
.occ-mainbar__search:hover img { opacity: 0.7; }

/* --------------------------------------------------------------------------
   Search form (Divi-style) — hidden by default, replaces nav when toggled
   -------------------------------------------------------------------------- */

.occ-search-form {
	display: none !important;
	flex: 1 1 auto;
	gap: 12px !important;
	align-items: center;
}
.occ-mainbar__inner.occ-search-open .occ-search-form {
	display: flex !important;
}
.occ-mainbar__inner.occ-search-open .occ-nav,
.occ-mainbar__inner.occ-search-open .occ-mainbar__cta,
.occ-mainbar__inner.occ-search-open .occ-mainbar__search {
	display: none !important;
}

.occ-search-form .wp-block-search {
	flex: 1 1 auto;
	margin: 0;
}
.occ-search-form .wp-block-search__inside-wrapper {
	border: 1px solid var(--wp--preset--color--border-light);
	border-radius: 8px;
	overflow: hidden;
	background: var(--wp--preset--color--background);
}
.occ-search-form .wp-block-search__input {
	border: 0;
	padding: 10px 16px;
	font-size: 14px;
	font-family: var(--wp--preset--font-family--primary);
	background: transparent;
	outline: none;
}
.occ-search-form .wp-block-search__button {
	background: var(--wp--preset--color--primary);
	color: #ffffff;
	border: 0;
	padding: 10px 16px;
	margin: 0;
	cursor: pointer;
}
.occ-search-form .wp-block-search__button svg { fill: #ffffff; }
.occ-search-close-wrap { margin: 0 !important; }
.occ-search-close { margin: 0 !important; }
.occ-search-close .wp-block-button__link {
	padding: 10px 16px !important;
	font-size: 13px;
}
.occ-mainbar__cta {
	gap: 20px !important;
	margin: 0;
}
.occ-mainbar__cta .wp-block-button__link {
	font-size: 14px;
	font-weight: 700;
	line-height: 22.4px;
	padding: 12px 24px;
	border-radius: 8px;
}

/* Sticky header (whole header part) */
header.wp-site-blocks > .wp-block-template-part,
header > .occ-topbar,
.wp-site-blocks > header {
	position: sticky;
	top: 0;
	z-index: 100;
}

/* --------------------------------------------------------------------------
   Header responsive — collapse top bar + cta on tablet/mobile
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   MOBILE BAR — single dark-blue row: hamburger | logo | search
   Hidden on desktop, replaces topbar+mainbar on mobile.
   -------------------------------------------------------------------------- */
.occ-mobilebar { display: none !important; }
.occ-drawer,
.occ-msearch { display: none !important; }

/* --------------------------------------------------------------------------
   MOBILE DRAWER — slides in from the LEFT, fullscreen overlay
   -------------------------------------------------------------------------- */
.occ-drawer {
	position: fixed;
	inset: 0;
	z-index: 9000;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.occ-drawer.is-open {
	display: block !important;
}
.occ-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.occ-drawer.is-open .occ-drawer__backdrop {
	opacity: 1;
}
.occ-drawer__panel {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 320px;
	max-width: 85%;
	background: var(--wp--preset--color--primary-dark);
	color: #ffffff;
	padding: 20px 24px 32px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
}
.occ-drawer.is-open .occ-drawer__panel {
	transform: translateX(0);
}
.occ-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.occ-drawer__logo img,
.occ-drawer .wp-block-site-logo img {
	max-height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
}
.occ-drawer__close {
	background: rgba(255, 255, 255, 0.15);
	border: 0;
	color: #ffffff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.occ-drawer__close:hover { background: rgba(255, 255, 255, 0.25); }

.occ-drawer__nav {
	display: flex;
	flex-direction: column;
}

/* Plain top-level links (Resources, Get In Touch) */
.occ-drawer__nav > a {
	display: block;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
}
.occ-drawer__nav > a:hover {
	color: var(--wp--preset--color--primary-light) !important;
	text-decoration: none;
}

/* ── Accordion row (link + toggle button) ─────────────────────────────────── */
.occ-drawer__nav-row {
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.occ-drawer__nav-link {
	flex: 1;
	min-width: 0;
	display: block;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	padding: 10px 0;
	text-decoration: none;
}
.occ-drawer__nav-link:hover {
	color: var(--wp--preset--color--primary-light) !important;
	text-decoration: none;
}

/* Toggle chevron button */
.occ-drawer__nav-toggle {
	background: none;
	border: none;
	padding: 10px 0 10px 16px;
	cursor: pointer;
	color: #ffffff;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
}
.occ-drawer__nav-toggle svg {
	display: block;
	transition: transform 0.2s ease;
}
.occ-drawer__nav-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

/* ── Sub-menu list ────────────────────────────────────────────────────────── */
.occ-drawer__nav-sub {
	list-style: none;
	margin: 0;
	padding: 4px 0 8px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.occ-drawer__nav-sub a {
	display: block;
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	padding: 6px 0;
	text-decoration: none;
}
.occ-drawer__nav-sub a:hover {
	color: #ffffff !important;
	text-decoration: none;
}

/* Section heading items (group titles like Physicians, bold procedures) */
.occ-drawer__nav-sub .occ-drawer__sub-item--section > a {
	font-weight: 600;
	color: #ffffff !important;
	font-size: 14px;
}

/* Indented sub-items (doctor names, procedure variants) */
.occ-drawer__nav-sub .occ-drawer__sub-item--indent > a {
	padding-left: 20px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65) !important;
}
.occ-drawer__nav-sub .occ-drawer__sub-item--indent > a:hover {
	color: rgba(255, 255, 255, 0.9) !important;
}

/* Non-link column heading (e.g. "Weight Loss Results", "Bariatric Surgery") */
.occ-drawer__nav-sub .occ-drawer__sub-item--heading {
	padding: 14px 0 4px;
}
.occ-drawer__nav-sub .occ-drawer__sub-item--heading:first-child {
	padding-top: 4px;
}
.occ-drawer__nav-sub .occ-drawer__sub-item--heading > span {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	cursor: default;
}

.occ-drawer__phone {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.occ-drawer__phone-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}
.occ-drawer__phone-num {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff !important;
	text-decoration: none;
}

.occ-drawer__cta {
	flex-direction: column !important;
	gap: 10px !important;
	margin: 0 !important;
}
.occ-drawer__cta .wp-block-button { width: 100%; }
.occ-drawer__cta .wp-block-button__link {
	width: 100%;
	justify-content: center;
	font-size: 14px !important;
	padding: 12px 16px !important;
}
.occ-drawer__cta .is-style-outline > .wp-block-button__link {
	background: transparent !important;
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.5);
}
.occ-drawer__cta .is-style-outline > .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
}

.occ-drawer__footer {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: auto;
}
.occ-drawer__brochure {
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: underline;
}
.occ-drawer__social {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px !important;
	margin: 0 !important;
}
.occ-drawer__social .wp-social-link {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.15) !important;
	border-radius: 50%;
}
.occ-drawer__social .wp-social-link a { color: #ffffff !important; }
.occ-drawer__social svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   MOBILE SEARCH OVERLAY — drops down below the mobile bar
   -------------------------------------------------------------------------- */
.occ-msearch {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8000;
	max-width: none !important;
	margin: 0 !important;
	padding: 12px 16px !important;
	background: var(--wp--preset--color--primary-dark);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.occ-msearch.is-open {
	display: block !important;
}
.occ-msearch__inner,
.occ-msearch__inner.is-layout-flow,
.occ-msearch__inner.wp-block-group-is-layout-flow {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 12px !important;
}
.occ-msearch__inner > * + * { margin-block-start: 0 !important; margin-top: 0 !important; }
.occ-msearch__inner .wp-block-search {
	flex: 1 1 auto !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0;
}
.occ-msearch__inner .wp-block-search__label {
	display: none !important;
}
.occ-msearch__inner .wp-block-search__inside-wrapper {
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
	padding: 0 !important;
	display: flex;
	align-items: stretch;
	height: 44px;
}
.occ-msearch__inner .wp-block-search__input {
	border: 0;
	padding: 0 16px;
	font-size: 14px;
	font-family: var(--wp--preset--font-family--primary);
	background: transparent;
	outline: none;
	width: 100%;
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	border-radius: 0 !important;
	margin: 0 !important;
}
.occ-msearch__inner .wp-block-search__button {
	background: var(--wp--preset--color--primary);
	color: #ffffff;
	border: 0;
	border-radius: 0 !important;
	padding: 0 14px;
	margin: 0 !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	height: 100%;
	min-width: 44px;
}
.occ-msearch__inner .wp-block-search__button:hover {
	background: var(--wp--preset--color--primary-hover);
}
.occ-msearch__inner .wp-block-search__button svg {
	fill: #ffffff;
	width: 18px;
	height: 18px;
}
.occ-msearch__close {
	flex: 0 0 auto;
	background: rgba(255, 255, 255, 0.15);
	border: 0;
	color: #ffffff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.occ-msearch__close:hover { background: rgba(255, 255, 255, 0.25); }

/* Lock body scroll when drawer or search is open */
body.occ-drawer-open,
body.occ-msearch-open {
	overflow: hidden;
}

/* Mobile bar visible + desktop header hidden below 1199px */
@media (max-width: 1199px) {
	.occ-mobilebar {
		display: flex !important;
		width: 100% !important;
		max-width: none !important;
		padding: 12px 16px !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 12px !important;
	}
	.occ-mobilebar__menu,
	.occ-mobilebar__search {
		background: transparent;
		border: none;
		color: #ffffff;
		padding: 0;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
	}
	.occ-mobilebar__menu { width: 24px; height: 24px; }
	.occ-mobilebar__search {
		width: 36px;
		height: 36px;
		background: var(--wp--preset--color--primary);
		border-radius: 8px;
	}
	.occ-mobilebar__logo,
	.occ-mobilebar .wp-block-site-logo {
		flex: 0 0 auto;
		margin: 0 !important;
	}
	.occ-mobilebar__logo img,
	.occ-mobilebar .wp-block-site-logo img {
		max-height: 46px;
		width: auto;
		filter: brightness(0) invert(1);
	}

	/* Hide desktop bars below 991px */
	.occ-topbar,
	.occ-mainbar { display: none !important; }
	.occ-drawer__phone {
    padding-top: 0;
    border-top: 0px solid rgba(255, 255, 255, 0.15);
}
}

@media (min-width: 1200px) {
	/* Desktop-only topbar tweaks */
	.occ-topbar > .occ-topbar__inner { gap: 16px; }
}

@media (max-width: 599px) {
	.occ-topbar { padding: 8px 16px; }
	.occ-mainbar { padding: 12px 16px; }
}

/* --------------------------------------------------------------------------
   Main + page wrapper — flush against header, no extra padding
   -------------------------------------------------------------------------- */

.wp-site-blocks { margin: 0; padding: 0; }

main.occ-home {
	padding: 0 !important;
	margin: 0 !important;
}

main.occ-home > .wp-block-post-content,
main.occ-home > * {
	margin-top: 0;
}

/* First block on the page sits flush against the header */
main.occ-home > *:first-child,
main.occ-home > .wp-block-post-content > *:first-child {
	margin-top: 0px;
}

/* The hero is full-width and flush against the header */
.occ-hero { margin-top: 0 !important; }
main.occ-home > .occ-hero,
main.occ-home > .wp-block-post-content > .occ-hero {
	margin-top: 0 !important;
}

/* --------------------------------------------------------------------------
   Section container helpers (used by patterns)
   -------------------------------------------------------------------------- */

.occ-section { width: 100%; padding: 48px 16px; }
.occ-section__inner { max-width: 1200px; margin: 0 auto; }

@media (min-width: 768px) { .occ-section { padding: 64px 40px; } }
@media (min-width: 1024px) { .occ-section { padding: 80px 120px; } }

/* --------------------------------------------------------------------------
   FOOTER — desktop grid + mobile accordions
   -------------------------------------------------------------------------- */

.occ-footer {
	width: 100% !important;
	max-width: none !important;
	color: var(--wp--preset--color--background);
	padding: 40px 16px 24px;
}
.occ-footer > * {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.occ-footer__top,
.occ-footer__middle {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
/* Mobile: push badges-col to AFTER all accordions per Figma order */
.occ-footer__middle .occ-footer__badges-col { order: 10; margin-top: 8px; }
@media (min-width: 1024px) {
	.occ-footer { padding: 48px 32px 32px; }
	.occ-footer__top,
	.occ-footer__middle {
		grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
		gap: 24px;
	}
	.occ-footer__top { margin-bottom: 30px; }
	.occ-footer__middle { margin-bottom: 30px; }
	.occ-footer__middle .occ-footer__badges-col { order: 0; margin-top: 0; }
}
.occ-footer * { color: var(--wp--preset--color--background); }
.occ-footer a { color: var(--wp--preset--color--background); text-decoration: none; }
.occ-footer a:hover { text-decoration: underline; opacity: 0.85; }

/* Brand col */
.occ-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	text-align: center;
}
.occ-footer__logo-link {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
}
.occ-footer__logo {
	max-width: 180px;
	width: 180px;
	height: auto;
	filter: brightness(0) invert(1);
	display: block;
}
@media (min-width: 1024px) {
	.occ-footer__brand {
		align-items: flex-start;
		text-align: left;
	}
}
.occ-footer__tagline {
	font-size: 16px;
	line-height: 25.6px;
	margin: 16px 0;
}
.occ-footer__social {
	display: flex;
	gap: 10px;
	margin: 0;
	align-items: center;
}
.occ-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9999px;
	background: #0066cc;
	color: #ffffff;
	text-decoration: none;
	flex-shrink: 0;
	transition: background 0.2s ease;
}
.occ-footer__social-link:hover {
	background: #0052a3;
	color: #ffffff;
	text-decoration: none;
}
.occ-footer__social-link svg { display: block; }

/* Accordion column (uses <details>) */
.occ-footer__col {
	display: block;
}
.occ-footer__heading {
	font-size: 18px;
	font-weight: 700;
	line-height: 28.8px;
	color: var(--wp--preset--color--background);
	margin: 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	list-style: none;
}
.occ-footer__heading::-webkit-details-marker { display: none; }
.occ-footer__heading::after {
	content: "";
	width: 16px;
	height: 9px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 9' fill='none'><path d='M1 1l7 7 7-7' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}
.occ-footer__col[open] .occ-footer__heading::after { transform: rotate(180deg); }
.occ-footer__col > *:not(summary) { padding-top: 12px; }

@media (min-width: 1024px) {
	.occ-footer__col { display: block !important; }
	.occ-footer__heading {
		font-size: 20px;
		line-height: 26px;
		cursor: default;
		padding-bottom: 0;
		border-bottom: 0;
		margin-bottom: 16px;
		display: block;
	}
	.occ-footer__heading::after { display: none; }
	.occ-footer__col > *:not(summary) {
		display: block !important;
		padding-top: 0;
	}
}

/* Link list */
.occ-footer__links {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.occ-footer__links li {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 25.6px;
}
.occ-footer__links li:last-child { margin-bottom: 0; }
.occ-footer__links a {
	color: var(--wp--preset--color--background);
	font-size: 16px;
	font-weight: 400;
}

/* Badge column */
.occ-footer__badges-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.occ-footer__badges {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: 0 0 16px;
	align-items: flex-start;
	flex-wrap: wrap;
}
.occ-footer__badge {
	border: 1px solid rgba(255,255,255,0.4);
	border-radius: 8px;
	overflow: hidden;
	background: var(--wp--preset--color--background);
	padding: 4px;
	height: 54px;
	width: auto;
	display: block;
	object-fit: contain;
	margin: 0;
}
.occ-footer__disclaimer-small {
	font-size: 12px;
	line-height: 19.2px;
	margin: 0;
}
@media (min-width: 1024px) {
	.occ-footer__disclaimer-small { font-size: 13px; line-height: 20.8px; }
}

/* Hours + contact */
.occ-footer__hours {
	font-size: 16px;
	line-height: 25.6px;
	margin: 0 0 10px;
}
.occ-footer__hours-small {
	font-size: 13px;
	line-height: 20.8px;
	margin: 0;
}
.occ-footer__contact {
	font-size: 16px;
	line-height: 25.6px;
	margin: 0 0 10px;
}
.occ-footer__contact:last-child { margin-bottom: 0; }
.occ-footer__contact a { text-decoration: none; }

/* Disclaimer (rounded darker block at bottom of inner footer) */
.occ-footer__disclaimer {
	background: #09375d;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 16px auto 0 !important;
	max-width: 1200px;
}
.occ-footer__disclaimer p {
	font-size: 13px;
	line-height: 20.8px;
	margin: 0 0 12px;
}
.occ-footer__disclaimer p:last-child { margin-bottom: 0; }
@media (min-width: 1024px) {
	.occ-footer__disclaimer { padding: 20px 28px; margin-top: 24px !important; }
	.occ-footer__disclaimer p { font-size: 14px; line-height: 22.4px; }
}

/* Bottom bar */
.occ-footer__bottombar {
	width: 100% !important;
	max-width: none !important;
	background: #09375d;
	padding: 16px;
}
.occ-footer__bottombar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}
.occ-footer__copyright {
	font-size: 12px;
	line-height: 19.2px;
	color: var(--wp--preset--color--border-light);
	margin: 0;
}
@media (min-width: 1024px) {
	.occ-footer__bottombar { padding: 20px 32px; }
	.occ-footer__bottombar-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
	.occ-footer__copyright { font-size: 13px; line-height: 20.8px; }
}
/* Outer row: payment-group | divider | Made By ALIAN — equal 20px gaps */
.occ-footer__payments {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
@media (min-width: 1024px) {
	.occ-footer__payments { justify-content: flex-end; flex-wrap: nowrap; }
}

/* Inner group: 3 payment icons with 11px gap between them */
.occ-footer__payment-group {
	display: flex;
	flex-direction: row;
	gap: 0px;
	align-items: center;
	flex-shrink: 0;
}

/* Each payment icon — no card styling, just the image */
.occ-footer__payment,
img.occ-footer__payment {
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: inline-flex !important;
	align-items: center;
	flex-shrink: 0;
}
.occ-footer__payment {
	width: 48px;
}
.occ-footer__payment img,
img.occ-footer__payment {
	height: auto !important;
	width: auto !important;
	max-width: none !important;
	display: block !important;
	object-fit: contain;
	background: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

/* Divider — pure flex child, no extra margins needed now */
.occ-footer__divider {
	display: inline-block;
	width: 1px;
	height: 24px;
	background: rgba(255, 255, 255, 0.3);
	flex-shrink: 0;
}

/* Made By ALIAN badge */
.occ-footer__credit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--wp--preset--color--background);
	color: var(--wp--preset--color--text-dark) !important;
	border-radius: 9999px;
	padding: 5px 14px;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none !important;
	letter-spacing: 0.5px;
	height: 28px;
	white-space: nowrap;
	box-sizing: border-box;
	flex-shrink: 0;
}
.occ-footer__credit:hover { opacity: 0.9; text-decoration: none !important; }
.occ-footer__credit-heart { color: #e02e2e; flex-shrink: 0; }
.occ-footer__credit-text {
	color: var(--wp--preset--color--text-dark) !important;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 1.2;
}
.occ-footer__credit-text strong { font-weight: 800; }

/* Mobile */
@media (max-width: 767px) {
	.occ-footer__bottombar-inner { gap: 10px; flex-direction: column; align-items: center; }
	.occ-footer__credit { padding: 5px 12px; }
	.occ-footer__payment {
		width: 20px;
	}
	.occ-footer__payment img, img.occ-footer__payment { height: 45px !important; }
}

/* Mobile-specific — disclaimer block padding */
@media (max-width: 1023px) {
	.occ-footer__disclaimer { max-width: 100%; }
	.occ-footer__bottombar-inner { gap: 12px; }
	.occ-footer__middle {
    margin-top: 15px;
}
.occ-footer__links {   
    padding: 10px 0 0 !important;
}
.occ-footer__brand{
	gap: 0;
}
}

/* --------------------------------------------------------------------------
   Helpers
   -------------------------------------------------------------------------- */

.occ-rounded-2xl { border-radius: 16px; overflow: hidden; }
.occ-rounded-3xl { border-radius: 20px; overflow: hidden; }
.occ-rounded-full { border-radius: 9999px; overflow: hidden; }

/* ==========================================================================
   OCC Mega Menu — About OCC panel  (Figma node 705-6030)
   ========================================================================== */

/* Positioning context: use the constrained inner bar, not the full-width wrapper */
.occ-mainbar__inner {
	position: relative;
}

/* The panel — 989 px wide, left-aligned exactly below the nav */
.occ-megamenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 989px;
	z-index: 9000;
	padding-top: 4px;
}

.occ-megamenu__inner {
	background: #fff;
	border: 1px solid #e5e5e3;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

/* ── Body (3 columns) — padding 20px, gap 20px (Figma) ───────────────────── */
.occ-megamenu__body {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	gap: 0;
}

/* Col 1 — About OCC (275 px fixed) */
.occ-megamenu__col--about {
	flex: 0 0 275px;
	min-width: 0;
	border-right: 1px solid #e5e5e3;
	padding-right: 20px;
}

/* Col 2 — Our Team left (Physicians, Over-60) */
.occ-megamenu__col--team2 {
	flex: 1 0 0;
	min-width: 0;
	padding: 0 20px;
	border-right: 1px solid #e5e5e3;
}

/* Col 3 — Our Team right (Aftercare, Fellows …) */
.occ-megamenu__col--team3 {
	flex: 1 0 0;
	min-width: 0;
	padding-left: 20px;
}

/* Column heading — bold 16 px black (Figma H5) */
.occ-megamenu__col-heading {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	line-height: 1.3;
	margin: 0;
	padding: 8px 12px;
}

/* Spacer heading in Col 3 keeps rows aligned with Col 2's "Our Team" heading */
.occ-megamenu__col-heading--spacer {
	visibility: hidden;
	user-select: none;
}

/* ── Col 1 link list ──────────────────────────────────────────────────────── */
.occ-megamenu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.occ-megamenu__item {
	margin: 0;
	padding: 0;
}

/* Link row: chevron LEFT + text (Figma layout) */
.occ-megamenu__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.15s ease;
}

.occ-megamenu__link:hover {
	color: #0066cc;
	text-decoration: none;
}

/* ── Shared chevron (spans used in both link types) ──────────────────────── */
.occ-megamenu__chevron {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
	transition: color 0.15s ease;
}

.occ-megamenu__link:hover .occ-megamenu__chevron,
.occ-megamenu__section-link:hover .occ-megamenu__chevron {
	color: #0066cc;
}

/* ── Cols 2 & 3: section links (Physicians / Over-60 / Aftercare …) ───────── */
.occ-megamenu__section {
	margin: 0;
}

/* Section link has SAME visual treatment as .occ-megamenu__link */
.occ-megamenu__section-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.15s ease;
}

.occ-megamenu__section-link:hover {
	color: #0066cc;
	text-decoration: none;
}

/* Doctor names — indented 40 px (Figma px-[40px]), no chevron */
.occ-megamenu__sublist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.occ-megamenu__sublist li {
	margin: 0;
	padding: 0;
}

.occ-megamenu__sublink {
	display: block;
	padding: 8px 8px 8px 40px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.15s ease;
}

.occ-megamenu__sublink:hover {
	color: #0066cc;
	text-decoration: none;
}

/* ── Bottom Banner — bg #f4f9ff, px-32 py-20 (Figma) ────────────────────── */
.occ-megamenu__banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #f4f9ff;
	padding: 20px 32px;
	border-top: 1px solid #e5e5e3;
}

.occ-megamenu__banner-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.occ-megamenu__banner-left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.occ-megamenu__banner-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Heading 20 px bold black (Figma H4) */
.occ-megamenu__banner-heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #000;
	margin: 0;
	white-space: nowrap;
}

/* Subtext 16 px regular black (Figma Body/Large) */
.occ-megamenu__banner-sub {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #000;
	margin: 0;
	white-space: nowrap;
}

/* Button — bg #0066cc, px-24 py-12, radius 8px, 14px bold white */
.occ-megamenu__banner-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0066cc;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.occ-megamenu__banner-btn:hover {
	background: #004fa3;
	color: #fff;
	text-decoration: none;
}

/* ── Mobile: mega menu hidden — mobile drawer handles nav ─────────────────── */
@media ( max-width: 1023px ) {
	.occ-megamenu {
		display: none;
	}
}

.occ-shadow-card { box-shadow: 0 4px 16px rgba(12, 73, 126, 0.08); }

/* ==========================================================================
   OCC Mega Menu — How We Can Help  (Figma node 705-5426)
   ========================================================================== */

/* Panel — positioned dynamically by mega-menu.js */
.occ-mm-help {
	position: absolute;
	top: 100%;
	left: 0; /* overridden by JS */
	z-index: 9000;
	padding-top: 4px;
}

.occ-mm-help__inner {
	background: #fff;
	border: 1px solid #e5e5e3;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

/* ── Body ─────────────────────────────────────────────────────────────────── */
.occ-mm-help__body {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	gap: 0;
}

/* Col 1 + Col 2 = Bariatric Surgery (275 px each, no divider between them) */
.occ-mm-help__col--bari1 {
	flex: 0 0 275px;
	min-width: 0;
	padding-right: 0;
}

.occ-mm-help__col--bari2 {
	flex: 0 0 275px;
	min-width: 0;
	padding-right: 20px; /* gap before the vertical divider */
}

/* Vertical dividers */
.occ-mm-help__vdivider {
	flex-shrink: 0;
	width: 1px;
	align-self: stretch;
	background: #e5e5e3;
	margin: 0 20px;
}

/* Col 3: Plastic Surgery / Additional Services / IVF */
.occ-mm-help__col--misc {
	flex: 0 0 275px;
	min-width: 0;
}

/* Col 4: Technology & Safety (flexible) */
.occ-mm-help__col--tech {
	flex: 1 0 0;
	min-width: 230px;
}

/* ── Column / section headings — bold 16 px black ─────────────────────────── */
.occ-mm-help__heading {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	line-height: 1.3;
	margin: 0;
	padding: 8px 12px;
	display: block;
	text-decoration: none;
}

/* Spacer heading in bari2 col — invisible, keeps row-height aligned */
.occ-mm-help__heading--spacer {
	visibility: hidden;
	user-select: none;
}

/* IVF heading is a clickable link */
.occ-mm-help__heading--link:hover {
	color: #0066cc;
}

/* Section wrapper in col3 */
.occ-mm-help__section {
	/* no extra margin — horizontal dividers provide spacing */
}

/* Horizontal divider between col3 sections */
.occ-mm-help__hdivider {
	border: none;
	border-top: 1px solid #e5e5e3;
	margin: 4px 0;
}

/* ── Link list ────────────────────────────────────────────────────────────── */
.occ-mm-help__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.occ-mm-help__list li {
	margin: 0;
	padding: 0;
}

/* Regular link (chevron LEFT + text) */
.occ-mm-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.15s ease;
}

/* Bold section-heading link (e.g. Lap-Band Surgery, Gastric Sleeve) */
.occ-mm-link--bold {
	font-weight: 700;
}

.occ-mm-link:hover {
	color: #0066cc;
	text-decoration: none;
}

.occ-mm-link:hover .occ-mm-chevron {
	color: #0066cc;
}

/* Chevron icon */
.occ-mm-chevron {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
	transition: color 0.15s ease;
}

/* Sub-item (40 px indent, no chevron) */
.occ-mm-sublink {
	display: block;
	padding: 8px 8px 8px 40px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.15s ease;
}

.occ-mm-sublink:hover {
	color: #0066cc;
	text-decoration: none;
}

/* ── Bottom Banner ────────────────────────────────────────────────────────── */
.occ-mm-help__banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #f4f9ff;
	padding: 20px 32px;
	border-top: 1px solid #e5e5e3;
}

.occ-mm-help__banner-left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.occ-mm-help__banner-icon {
	flex-shrink: 0;
}

.occ-mm-help__banner-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.occ-mm-help__banner-heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #000;
	margin: 0;
	white-space: nowrap;
}

.occ-mm-help__banner-sub {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #000;
	margin: 0;
	white-space: nowrap;
}

.occ-mm-help__banner-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0066cc;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.occ-mm-help__banner-btn:hover {
	background: #004fa3;
	color: #fff;
	text-decoration: none;
}

/* ── Mobile: hidden ───────────────────────────────────────────────────────── */
@media ( max-width: 1023px ) {
	.occ-mm-help {
		display: none;
	}
}

/* ==========================================================================
   Patient Info mega menu
   Figma node 705-6338
   ========================================================================== */

.occ-mm-patient {
	position: absolute;
	top: 100%;
	left: 0; /* overridden by JS — aligns below the trigger */
	z-index: 9000;
	padding-top: 4px;
	background: #fff;
	border: 1px solid #e5e5e3;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba( 0, 0, 0, 0.15 );
	overflow: hidden;
}

.occ-mm-patient__inner {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 20px;
}

/* ── Columns ──────────────────────────────────────────────────────────────── */

.occ-mm-patient__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.occ-mm-patient__col--main {
	flex: 0 0 275px;
}

.occ-mm-patient__col--secondary {
	flex: 1 0 0;
	min-width: 240px;
}

/* ── Heading ─────────────────────────────────────────────────────────────── */

.occ-mm-patient__heading {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #000;
	margin: 0;
	padding: 8px 12px;
	width: 100%;
	white-space: nowrap;
}

.occ-mm-patient__heading--spacer {
	visibility: hidden;
	user-select: none;
}

/* ── Link list ───────────────────────────────────────────────────────────── */

.occ-mm-patient__list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

/* Standard link row — chevron on left */
.occ-mm-patient__link {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px 20px;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	text-decoration: none;
	white-space: nowrap;
	width: 100%;
}

.occ-mm-patient__link:hover {
	color: #0066cc;
	text-decoration: none;
}

/* Sub-item — 40 px indent, no chevron */
.occ-mm-patient__sublink {
	display: block;
	padding: 8px 8px 8px 40px;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	text-decoration: none;
	white-space: nowrap;
	width: 100%;
}

.occ-mm-patient__sublink:hover {
	color: #0066cc;
	text-decoration: none;
}

/* ── Mobile: hidden ───────────────────────────────────────────────────────── */
@media ( max-width: 1023px ) {
	.occ-mm-patient {
		display: none;
	}
}

/* ==========================================================================
   Results mega menu
   Figma node 812-4616
   ========================================================================== */

.occ-mm-results {
	position: absolute;
	top: 100%;
	left: 0; /* overridden by JS — aligns below the trigger */
	z-index: 9000;
	padding-top: 4px;
	background: #fff;
	border: 1px solid #e5e5e3;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba( 0, 0, 0, 0.15 );
	overflow: hidden;
}

.occ-mm-results__inner {
	padding: 20px;
}

.occ-mm-results__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 275px;
}

.occ-mm-results__heading {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #000;
	margin: 0;
	padding: 8px 12px;
	width: 100%;
	white-space: nowrap;
}

.occ-mm-results__list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.occ-mm-results__link {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px 20px;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	text-decoration: none;
	white-space: nowrap;
	width: 100%;
}

.occ-mm-results__link:hover {
	color: #0066cc;
	text-decoration: none;
}

/* ── Mobile: hidden ───────────────────────────────────────────────────────── */
@media ( max-width: 1023px ) {
	.occ-mm-results {
		display: none;
	}
}

/* ==========================================================================
   Terms & Conditions page
   ========================================================================== */

.occ-terms-page {
	background: #fff;
}

.occ-terms .occ-terms__list {
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.occ-terms .occ-terms__list li {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #474747;
}

.occ-terms h1,
.occ-terms h2 {
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.occ-terms a {
	color: #0066cc;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.occ-terms a:hover {
	color: #0052a3;
}

@media (max-width: 768px) {
	.occ-terms h1 {
		font-size: 28px !important;
	}
	.occ-terms h2 {
		font-size: 20px !important;
	}
	.occ-footer__middle {
    padding-top: 14px;
}
}
@media (max-width: 360px) {
	.occ-footer__divider{display:none;}
}

@media (max-width: 1440px) and (min-width: 1200px) {
.occ-nav {
    gap: 10px !important;
    font-size: 13px;
}
.occ-mainbar__right {
    gap: 10px;
}
.occ-mainbar__cta {
    gap: 10px !important;
}
.occ-mainbar__cta .wp-block-button__link{
    font-size: 13px;
}
}