/**
 * Consultation Booking — Elementor components.
 * Add these classes under Advanced > CSS Classes on Elementor containers and widgets.
 * Loaded only when Elementor is active.
 */

/* ---------- Sections ---------- */
body .cb-bg-soft { background-color: var(--cb-bg-soft); }
body .cb-bg-dark { background-color: var(--cb-primary); color: #cfdbe8; }
body .cb-bg-dark .elementor-heading-title { color: #fff; }
body .cb-bg-dark .cb-eyebrow .elementor-heading-title { color: var(--cb-accent); }
body .cb-bg-dark .cb-lead, body .cb-bg-dark .elementor-widget-text-editor { color: #c9d6e2; }
body .cb-page-hero { background-color: var(--cb-bg-soft); position: relative; overflow: hidden; }
body .cb-page-hero::before {
	content: ""; position: absolute; inset: 0; width: auto; height: auto; pointer-events: none; opacity: .7;
	background-image: linear-gradient(var(--cb-line) 1px, transparent 1px), linear-gradient(90deg, var(--cb-line) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: linear-gradient(90deg, transparent 40%, #000); mask-image: linear-gradient(90deg, transparent 40%, #000);
}
body .cb-page-hero > * { position: relative; }

/* ---------- Type ---------- */
body .cb-eyebrow .elementor-heading-title {
	display: inline-flex; align-items: center; gap: .6em;
	font: 500 .78rem/1 var(--cb-font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--cb-primary-2);
}
body .cb-eyebrow .elementor-heading-title::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cb-accent); flex: none;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--cb-accent) 30%, transparent);
}
body .cb-display .elementor-heading-title { font-family: var(--cb-font-display); font-weight: 700; letter-spacing: -.025em; line-height: 1.06; }
body .cb-h1 .elementor-heading-title { font-size: clamp(2.5rem, 5.4vw, 4.4rem); }
body .cb-h2 .elementor-heading-title { font-size: clamp(2rem, 3.6vw, 3rem); }
body .cb-h3 .elementor-heading-title { font: 600 1.3rem/1.2 var(--cb-font-display); letter-spacing: -.01em; }
body .cb-lead { color: var(--cb-muted); font-size: 1.15rem; line-height: 1.65; }
body .cb-muted { color: var(--cb-muted); }
body .cb-lead p:last-child, body .cb-muted p:last-child { margin-bottom: 0; }
body .cb-mono { font-family: var(--cb-font-mono); }

/* Highlighted words: wrap them in <span class="cb-mark"> inside a heading. */
body .cb-mark { position: relative; color: var(--cb-primary-2); white-space: nowrap; }
body .cb-bg-dark .cb-mark { color: var(--cb-accent); }
body .cb-mark::after {
	content: ""; position: absolute; left: -2%; right: -2%; bottom: -.1em; height: .14em; border-radius: 1em;
	background: var(--cb-accent); transform: scaleX(0); transform-origin: left;
	animation: cb-draw 1.1s .8s var(--cb-ease) forwards;
}
@keyframes cb-draw { to { transform: scaleX(1); } }

/* Word-by-word heading reveal (JS splits the words). */
body .cb-split .cb-w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; }
body .cb-split .cb-w > span { display: inline-block; transform: translateY(105%); animation: cb-word .9s var(--cb-ease) forwards; }
@keyframes cb-word { to { transform: none; } }

/* ---------- Buttons ---------- */
body .cb-btn .elementor-button {
	--b: var(--cb-primary);
	position: relative; overflow: hidden; border-radius: 999px; border: 1.5px solid var(--b);
	background: var(--b); color: #fff; font: 600 1rem/1 var(--cb-font-body); padding: 1em 1.5em;
	transition: transform .35s var(--cb-ease), box-shadow .35s var(--cb-ease), background-color .25s, border-color .25s;
}
body .cb-btn .elementor-button:hover, body .cb-btn .elementor-button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 24px -12px var(--b); color: #fff; }
body .cb-btn .elementor-button::after {
	content: ""; position: absolute; inset: 0; transform: translateX(-120%);
	background: linear-gradient(100deg, transparent 30%, rgb(255 255 255 / 35%) 50%, transparent 70%);
	transition: transform .7s var(--cb-ease);
}
body .cb-btn .elementor-button:hover::after { transform: translateX(120%); }
body .cb-btn-accent .elementor-button { --b: var(--cb-accent); color: var(--cb-accent-ink); }
body .cb-btn-accent .elementor-button:hover { color: var(--cb-accent-ink); }
body .cb-btn-ghost .elementor-button { --b: var(--cb-line); background: transparent; color: var(--cb-ink); }
body .cb-btn-ghost .elementor-button:hover { --b: var(--cb-ink); color: var(--cb-ink); box-shadow: none; }
body .cb-bg-dark .cb-btn-ghost .elementor-button { --b: rgb(255 255 255 / 25%); color: #fff; }
body .cb-btn-light .elementor-button { --b: #fff; color: var(--cb-primary); }
body .cb-btn-light .elementor-button:hover { color: var(--cb-primary); }
body .cb-btn-block .elementor-button { width: 100%; justify-content: center; }

/* ---------- Cards ---------- */
body .cb-card {
	background-color: #fff; border: 1px solid var(--cb-line); border-radius: var(--cb-radius);
	transition: transform .45s var(--cb-ease), box-shadow .45s var(--cb-ease), border-color .3s;
}
body .cb-card:hover { transform: translateY(-6px); box-shadow: var(--cb-shadow); border-color: transparent; }
body .cb-card-featured { background-color: var(--cb-primary); border-color: var(--cb-primary); color: #cfdbe8; }
body .cb-card-featured .elementor-heading-title { color: #fff; }
body .cb-card-featured .elementor-widget-text-editor, body .cb-card-featured .cb-muted { color: #b8c6d8; }
body .cb-card-featured .cb-tag { background: rgb(255 255 255 / 10%); color: #fff; }
@media (min-width: 1025px) { body .cb-lift { transform: translateY(-14px); } body .cb-lift:hover { transform: translateY(-20px); } }

body .cb-icon.elementor-widget .elementor-icon, body .cb-iconbox.elementor-widget .elementor-icon {
	width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
	background: var(--cb-bg-soft); color: var(--cb-primary-2); fill: var(--cb-primary-2); font-size: 24px;
	transition: background-color .35s, color .35s, transform .45s var(--cb-ease);
}
body .cb-icon .elementor-icon svg, body .cb-iconbox .elementor-icon svg { width: 24px; height: 24px; }
body .cb-card:hover .cb-icon.elementor-widget .elementor-icon, body .cb-iconbox.elementor-widget:hover .elementor-icon { background: var(--cb-primary); color: var(--cb-accent); fill: var(--cb-accent); transform: rotate(-6deg) scale(1.05); }
body .cb-card-featured .cb-icon.elementor-widget .elementor-icon { background: rgb(255 255 255 / 10%); color: var(--cb-accent); fill: var(--cb-accent); }

/* Icon box used as a card (ways to meet, practice areas). */
body .cb-iconbox {
	background: #fff; border: 1px solid var(--cb-line); border-radius: var(--cb-radius); padding: 28px;
	transition: transform .45s var(--cb-ease), box-shadow .45s var(--cb-ease), border-color .3s;
}
body .cb-iconbox:hover { transform: translateY(-6px); box-shadow: var(--cb-shadow); border-color: transparent; }
body .cb-iconbox .elementor-icon-box-title { font: 600 1.25rem/1.25 var(--cb-font-display); color: var(--cb-ink); margin: 0 0 6px; }
body .cb-iconbox .elementor-icon-box-description { color: var(--cb-muted); margin: 0; }

body .cb-tags p { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
body .cb-tag { font: 500 .76rem/1 var(--cb-font-mono); padding: 7px 10px; border-radius: 999px; background: var(--cb-bg-soft); color: var(--cb-primary-2); }

body .cb-price { border-top: 1px dashed var(--cb-line); padding-top: 18px; }
body .cb-card-featured .cb-price { border-color: rgb(255 255 255 / 20%); }
body .cb-price .elementor-heading-title { font: 700 2.1rem/1 var(--cb-font-display); letter-spacing: -.03em; color: var(--cb-ink); }
body .cb-price .elementor-heading-title small { font: 400 .9rem var(--cb-font-body); color: var(--cb-muted); letter-spacing: 0; }
body .cb-card-featured .cb-price .elementor-heading-title { color: #fff; }
body .cb-card-featured .cb-price small { color: #c9d6e2; }

body .cb-badge { position: absolute !important; top: 18px; right: 18px; width: auto !important; }
body .cb-badge .elementor-heading-title { font: 500 .72rem/1 var(--cb-font-mono); background: var(--cb-accent); color: var(--cb-accent-ink); padding: 7px 11px; border-radius: 999px; }
body .cb-relative { position: relative; }

/* ---------- Process steps (a real sequence) ---------- */
body .cb-steps { position: relative; }
body .cb-steps::before, body .cb-steps::after { content: ""; position: absolute; top: 27px; left: 16%; right: 16%; width: auto; height: 2px; background: var(--cb-line); }
body .cb-steps::after { background: var(--cb-accent); transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--cb-ease) .2s; }
body .cb-steps.is-in::after { transform: scaleX(1); }
body .cb-step { position: relative; z-index: 1; }
body .cb-step-num .elementor-heading-title {
	width: 56px; height: 56px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center;
	background: var(--cb-bg); border: 2px solid var(--cb-line); font: 500 1rem var(--cb-font-mono); color: var(--cb-primary);
	transition: background-color .4s, border-color .4s, color .4s;
}
body .cb-bg-soft .cb-step-num .elementor-heading-title { background: var(--cb-bg-soft); }
body .cb-steps.is-in .cb-step-num .elementor-heading-title { background: var(--cb-primary); border-color: var(--cb-primary); color: #fff; }
body .cb-steps.is-in .cb-step:nth-child(2) .cb-step-num .elementor-heading-title { transition-delay: .7s; }
body .cb-steps.is-in .cb-step:nth-child(3) .cb-step-num .elementor-heading-title { transition-delay: 1.3s; }
@media (max-width: 767px) { body .cb-steps::before, body .cb-steps::after { display: none; } }

/* ---------- Media ---------- */
body .cb-media img { width: 100%; object-fit: cover; border-radius: 24px; box-shadow: var(--cb-shadow); aspect-ratio: var(--cb-ratio, 4 / 3); transition: transform 1.2s var(--cb-ease); display: block; }
body .cb-media .elementor-widget-container, body .cb-media { overflow: hidden; border-radius: 24px; }
body .cb-media:hover img { transform: scale(1.04); }
body .cb-ratio-portrait { --cb-ratio: 4 / 5; }
body .cb-ratio-square { --cb-ratio: 1; }
body .cb-ratio-wide { --cb-ratio: 21 / 9; }
body .cb-ratio-tall { --cb-ratio: 4 / 4.6; }

body .cb-stack { position: relative; padding: 0 0 60px 60px !important; }
body .cb-stack-front { position: absolute !important; left: 0; bottom: 0; width: 46% !important; z-index: 2; }
body .cb-stack-front img { border: 6px solid var(--cb-bg); border-radius: 22px; }
body .cb-bg-soft .cb-stack-front img { border-color: var(--cb-bg-soft); }

/* Hero visual */
body .cb-hero-visual { position: relative; isolation: isolate; }
body .cb-hero-visual::before {
	content: ""; position: absolute; inset: 8% 0 -6% 12%; width: auto; height: auto; border-radius: 40px; background: var(--cb-bg-soft); z-index: -1;
}
body .cb-hero-visual::after {
	content: ""; position: absolute; width: 180px; height: 180px; right: 0; top: -30px; left: auto; border-radius: 50%; z-index: -1;
	background: radial-gradient(circle, color-mix(in srgb, var(--cb-accent) 55%, transparent), transparent 70%);
	animation: cb-float 7s ease-in-out infinite;
}
body .cb-hero-photo img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; border-radius: 28px; box-shadow: 0 30px 60px -20px rgb(16 24 40 / 35%); animation: cb-settle 1.6s var(--cb-ease) both; }
@keyframes cb-settle { from { transform: scale(1.06); opacity: .6; } }
@keyframes cb-float { 50% { transform: translateY(-10px); } }

/* Floating cards live in HTML widgets; let them position against the visual, not the widget. */
body .cb-hero-visual > .elementor-widget-html, body .cb-mosaic > .elementor-widget-html, body .cb-person-photo > .elementor-widget-heading { position: static; }
body .cb-float { position: absolute; z-index: 3; background: #fff; border-radius: 18px; box-shadow: 0 30px 60px -20px rgb(16 24 40 / 35%); color: var(--cb-ink); animation: cb-float 6s ease-in-out infinite; }
body .cb-chip { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: .9rem; font-weight: 600; }
body .cb-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex: none; animation: cb-ping 2s infinite; }
@keyframes cb-ping { 0% { box-shadow: 0 0 0 0 rgb(34 197 94 / 60%); } 70%, 100% { box-shadow: 0 0 0 10px rgb(34 197 94 / 0%); } }

/* Signature: live slot card (HTML widget) */
body .cb-slot-card { width: 300px; left: -56px; bottom: 36px; padding: 18px; animation-delay: -2s; }
body .cb-slot-card header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
body .cb-slot-card strong { font: 600 1rem var(--cb-font-display); }
body .cb-slot-card small { font: 500 .75rem var(--cb-font-mono); color: var(--cb-muted); }
body .cb-slot-days { display: flex; gap: 6px; margin-bottom: 12px; }
body .cb-slot-days span { flex: 1; text-align: center; padding: 6px 0; border-radius: 10px; font: 500 .72rem/1.3 var(--cb-font-mono); color: var(--cb-muted); background: var(--cb-bg-soft); }
body .cb-slot-days b { display: block; font: 600 1rem var(--cb-font-display); color: var(--cb-ink); }
body .cb-slot-days .on { background: var(--cb-primary); color: #cfe0ea; }
body .cb-slot-days .on b { color: #fff; }
body .cb-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
body .cb-slot { font: 500 .82rem/1 var(--cb-font-mono); padding: 10px 0; text-align: center; border-radius: 10px; border: 1.5px solid var(--cb-line); background: #fff; color: var(--cb-ink); transition: all .35s var(--cb-ease); }
body .cb-slot.taken { color: #b7c0cc; text-decoration: line-through; background: var(--cb-bg-soft); border-color: transparent; }
body .cb-slot.hover { border-color: var(--cb-primary-2); transform: translateY(-2px); }
body .cb-slot.picked { background: var(--cb-accent); border-color: var(--cb-accent); color: var(--cb-accent-ink); font-weight: 600; transform: scale(1.06); }
body .cb-slot-confirm { margin-top: 12px; display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; background: #ecfdf3; color: #067647; font-size: .85rem; font-weight: 600; opacity: 0; transform: translateY(8px); transition: all .45s var(--cb-ease); }
body .cb-slot-confirm.show { opacity: 1; transform: none; }
body .cb-slot-confirm svg { width: 18px; height: 18px; flex: none; }

body .cb-proof { display: flex; align-items: center; gap: 14px; color: var(--cb-muted); font-size: .95rem; }
body .cb-bg-dark .cb-proof { color: #c9d6e2; }
body .cb-avatars { display: flex; }
body .cb-avatars img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 3px solid var(--cb-bg); margin-left: -10px; }
body .cb-bg-dark .cb-avatars img { border-color: var(--cb-primary); }
body .cb-avatars img:first-child { margin-left: 0; }
body .cb-stars { color: var(--cb-accent); letter-spacing: 2px; }

/* Photo mosaic (Home 2 hero) */
body .cb-mosaic { display: grid !important; grid-template-columns: 1.2fr 1fr; grid-template-rows: 220px 220px; gap: 14px; position: relative; }
body .cb-mosaic > .elementor-element:first-child { grid-row: span 2; }
body .cb-mosaic .cb-media img { height: 100%; aspect-ratio: auto; }
body .cb-mosaic .cb-media, body .cb-mosaic .cb-media .elementor-widget-container { height: 100%; }
body .cb-avail { left: -40px; bottom: 30px; width: 250px; padding: 18px; }
body .cb-avail b { font: 700 2.1rem/1 var(--cb-font-display); color: var(--cb-primary); display: block; letter-spacing: -.03em; }
body .cb-avail p { margin: 4px 0 12px; font-size: .9rem; color: var(--cb-muted); }

/* Finder bar (HTML widget) */
body .cb-finder { background: #fff; border-radius: 22px; box-shadow: 0 30px 60px -20px rgb(16 24 40 / 35%); padding: 14px; display: grid; grid-template-columns: 1.3fr 1.2fr 1fr auto; gap: 10px; align-items: end; }
body .cb-finder label { display: block; font: 500 .72rem var(--cb-font-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--cb-muted); }
body .cb-finder .cb-field { padding: 8px 12px; border-radius: 14px; transition: background-color .25s; }
body .cb-finder .cb-field:focus-within { background: var(--cb-bg-soft); }
body .cb-finder select, body .cb-finder input { border: 0 !important; padding: 4px 0 !important; font-weight: 600; background: transparent !important; box-shadow: none !important; color: var(--cb-ink); width: 100%; }
body .cb-finder .cb-button { height: 58px; }

/* ---------- Stats ---------- */
body .cb-stat .elementor-counter { display: flex; flex-direction: column-reverse; align-items: flex-start; text-align: start; }
body .cb-stat .elementor-counter-number-wrapper { font: 700 clamp(2.2rem, 4vw, 3rem)/1 var(--cb-font-display) !important; letter-spacing: -.04em; color: var(--cb-primary); justify-content: flex-start; }
body .cb-stat .elementor-counter-title { font: 400 .92rem/1.4 var(--cb-font-body) !important; color: var(--cb-muted); text-align: start; justify-content: flex-start; margin-top: 6px; }
body .cb-bg-dark .cb-stat .elementor-counter-number-wrapper { color: #fff; }

body .cb-checks.elementor-widget .elementor-icon-list-icon svg, body .cb-checks.elementor-widget .elementor-icon-list-icon i { color: var(--cb-primary-2); fill: var(--cb-primary-2); }
body .cb-card-featured .cb-checks.elementor-widget .elementor-icon-list-icon svg, body .cb-card-featured .cb-checks.elementor-widget .elementor-icon-list-icon i { fill: var(--cb-accent); color: var(--cb-accent); }
body .cb-checks .elementor-icon-list-text { color: inherit; }

/* ---------- People ---------- */
body .cb-person { overflow: hidden; }
body .cb-person-photo { position: relative; overflow: hidden; }
body .cb-person-photo img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; display: block; transition: transform .9s var(--cb-ease); }
body .cb-person:hover .cb-person-photo img { transform: scale(1.06); }
body .cb-next-slot { position: absolute !important; left: 14px; bottom: 14px; width: auto !important; }
body .cb-next-slot .elementor-heading-title { background: #fff; border-radius: 999px; padding: 7px 12px; font: 500 .76rem var(--cb-font-mono); color: var(--cb-ink); display: flex; gap: 8px; align-items: center; box-shadow: var(--cb-shadow); }
body .cb-next-slot .elementor-heading-title::before { content: ""; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: cb-ping 2s infinite; }

/* ---------- Testimonials ---------- */
body .cb-quote { background: rgb(255 255 255 / 5%); border: 1px solid rgb(255 255 255 / 10%); border-radius: var(--cb-radius); padding: 30px; transition: transform .45s var(--cb-ease), background-color .3s; }
body .cb-quote:hover { transform: translateY(-6px); background: rgb(255 255 255 / 8%); }
body .cb-quote .elementor-testimonial-content { font: 500 1.12rem/1.55 var(--cb-font-display) !important; color: #fff !important; text-align: start; }
body .cb-quote .elementor-testimonial-content::before { content: "“"; display: block; font: 700 4rem/0.6 var(--cb-font-display); color: var(--cb-accent); margin: 14px 0 6px; }
body .cb-quote .elementor-testimonial-wrapper { text-align: start; }
body .cb-quote .elementor-testimonial-meta { margin-top: 22px; }
body .cb-quote .elementor-testimonial-meta-inner { justify-content: flex-start; }
body .cb-quote .elementor-testimonial-image img { width: 48px !important; height: 48px !important; object-fit: cover; }
body .cb-quote .elementor-testimonial-name { color: #fff !important; font-weight: 600; }
body .cb-quote .elementor-testimonial-job { color: #c9d6e2 !important; }

/* ---------- Trust strip ---------- */
body .cb-trust { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 1px !important; background: rgb(255 255 255 / 12%); border-radius: var(--cb-radius); overflow: hidden; }
body .cb-trust > .elementor-element { background: var(--cb-primary); padding: 30px 26px; }
body .cb-trust .elementor-widget-icon-box .elementor-icon { color: var(--cb-accent); fill: var(--cb-accent); border-color: var(--cb-accent); font-size: 30px; }
body .cb-trust .elementor-icon-box-title { color: #fff; font: 600 1.08rem var(--cb-font-display); margin: 14px 0 6px; }
body .cb-trust .elementor-icon-box-description { color: #c9d6e2; font-size: .92rem; margin: 0; }
@media (max-width: 1024px) { body .cb-trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { body .cb-trust { grid-template-columns: 1fr; } }

/* ---------- Timeline ---------- */
body .cb-timeline { border-left: 2px solid var(--cb-line); margin-left: 8px; }
body .cb-tl-item { position: relative; padding-left: 32px !important; }
body .cb-tl-item::before { content: ""; position: absolute; left: -9px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--cb-accent); border: 4px solid var(--cb-bg); }
body .cb-bg-soft .cb-tl-item::before { border-color: var(--cb-bg-soft); }
body .cb-tl-time .elementor-heading-title { font: 500 .85rem var(--cb-font-mono); color: var(--cb-primary-2); }

/* ---------- FAQ (Elemance accordion) ---------- */
body .cb-faq .elm-acc-item, body .cb-faq [class*="item"] { border-radius: 14px; }

/* ---------- CTA band ---------- */
body .cb-cta { background-color: var(--cb-primary); border-radius: 32px; position: relative; overflow: hidden; color: #cfdbe8; }
body .cb-cta .elementor-heading-title { color: #fff; }
body .cb-cta .cb-eyebrow .elementor-heading-title { color: var(--cb-accent); }
body .cb-cta::before { content: ""; position: absolute; left: auto; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 50%; border: 1px dashed rgb(255 255 255 / 20%); animation: cb-spin 40s linear infinite; }
body .cb-cta::after { content: ""; position: absolute; left: auto; right: 262px; top: 92px; opacity: 1; mix-blend-mode: normal; width: 16px; height: 16px; border-radius: 50%; background: var(--cb-accent); animation: cb-float 5s ease-in-out infinite; }
@keyframes cb-spin { to { transform: rotate(360deg); } }
body .cb-cta > * { position: relative; z-index: 1; }
body .cb-cta .cb-lead, body .cb-cta .elementor-widget-text-editor { color: #c9d6e2; }
body .cb-cta .cb-mono { font-size: .85rem; }

/* ---------- HTML widget helpers ---------- */
body .cb-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
body .cb-tabs button { font: 600 .95rem var(--cb-font-body); padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--cb-line); background: #fff; color: var(--cb-ink); cursor: pointer; transition: all .25s; }
body .cb-tabs button[aria-pressed="true"] { background: var(--cb-primary); border-color: var(--cb-primary); color: #fff; }
body .cb-is-hidden { display: none !important; }

body .cb-compare-wrap { overflow-x: auto; border-radius: var(--cb-radius); box-shadow: var(--cb-shadow); }
body .cb-compare { width: 100%; border-collapse: collapse; background: #fff; margin: 0; }
body .cb-compare th, body .cb-compare td { padding: 18px 22px; text-align: start; border-bottom: 1px solid var(--cb-line); }
body .cb-compare thead th { background: var(--cb-primary); color: #fff; font: 600 1rem var(--cb-font-display); }
body .cb-compare td { color: var(--cb-muted); }
body .cb-compare tbody tr { transition: background-color .25s; }
body .cb-compare tbody tr:hover { background: var(--cb-bg-soft); }

body .cb-map { border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 10; position: relative; border: 1px solid var(--cb-line); background: var(--cb-bg-soft); }
body .cb-map svg { width: 100%; height: 100%; display: block; }
body .cb-map .cb-pin { position: absolute; left: 52%; top: 44%; width: 22px; height: 22px; border-radius: 50% 50% 50% 0; background: var(--cb-accent); transform: rotate(-45deg); animation: cb-pin 2.2s infinite; }
@keyframes cb-pin { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--cb-accent) 60%, transparent); } 70%, 100% { box-shadow: 0 0 0 14px transparent; } }

body .cb-hours { list-style: none; margin: 0; padding: 0; }
body .cb-hours li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--cb-line); font: 500 .92rem var(--cb-font-mono); }

/* ---------- Bookance form inside a section ---------- */
body .cb-booking .bkc-scope { --bkc-max-width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	body .cb-slot-card { left: -12px; }
	body .cb-avail { left: 12px; }
	body .cb-finder { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
	body .cb-slot-card { position: relative; left: auto; bottom: auto; width: auto; margin: -70px 14px 0; }
	body .cb-hero-visual::before { inset: 8% 0 -6% 12%; }
	body .cb-float.cb-chip { right: 12px !important; top: 12px !important; }
	body .cb-mosaic { grid-template-rows: 150px 150px; }
	body .cb-avail { left: 10px; bottom: 10px; width: 210px; }
	body .cb-finder { grid-template-columns: 1fr; }
	body .cb-stack { padding: 0 0 40px 30px !important; }
	body .cb-cta::after { display: none; }
	body .cb-mark { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
	body .elementor-invisible { visibility: visible !important; }
	body .animated { animation: none !important; }
	body .cb-split .cb-w > span { transform: none; }
	body .cb-mark::after { transform: scaleX(1); }
}

body .elementor-widget-text-editor p a { text-decoration: underline; text-underline-offset: .18em; }

/* ---------- Breadcrumb line + images inside cards ---------- */
body .cb-crumbs .elementor-heading-title { font: 500 .8rem/1.4 var(--cb-font-mono); color: var(--cb-muted); letter-spacing: .02em; }
body .cb-crumbs .elementor-heading-title a { color: inherit; text-decoration: underline; text-underline-offset: .2em; }
body .cb-person .cb-media, body .cb-person .cb-media img { border-radius: 0; box-shadow: none; }
