/* Yoga con Carla - booking engine styles */
:root {
	--ycc-primary: #8AA08C;
	--ycc-primary-dark: #6E8772;
	--ycc-bg: #FAF8F4;
	--ycc-text: #2F2F2C;
	--ycc-accent: #B79A6B;
	--ycc-font-heading: Georgia, 'Times New Roman', serif;
	--ycc-muted: #7c7c75;
	--ycc-border: #e7e3db;
	--ycc-radius: 14px;
	--ycc-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* ---------- CTA buttons ---------- */
.ycc-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ycc-primary);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	line-height: 1.2;
	text-decoration: none;
}
.ycc-cta:hover { background: var(--ycc-primary-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(110, 135, 114, 0.35); }
.ycc-cta:focus-visible { outline: 3px solid var(--ycc-accent); outline-offset: 2px; }
.ycc-cta-inline { padding: 10px 20px; font-size: 14px; }
.ycc-cta-link {
	background: none; border: none; color: var(--ycc-primary-dark);
	text-decoration: underline; cursor: pointer; font-size: inherit; padding: 0;
}
.ycc-elementor-booking-wrap {
	display: block;
	width: 100%;
}
.ycc-elementor-booking-wrap .ycc-cta,
.ycc-elementor-booking-wrap .ycc-cta-link {
	vertical-align: middle;
}
.ycc-elementor-calendar-wrap {
	display: block;
	width: 100%;
}
.ycc-elementor-calendar-wrap .ycc-calendar {
	width: 100%;
}

/* ---------- Floating CTA ---------- */
.ycc-floating-cta {
	position: fixed;
	bottom: 24px;
	z-index: 99990;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--ycc-primary);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 22px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	transform: translateY(120%);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, background 0.2s ease;
}
.ycc-floating-badge {
	display: none;
	position: absolute;
	top: -6px;
	right: -4px;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--ycc-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 22px;
	text-align: center;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	pointer-events: none;
	box-sizing: border-box;
}
.ycc-floating-cta.has-cart-badge .ycc-floating-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ycc-floating-bottom-left .ycc-floating-badge {
	right: auto;
	left: -4px;
}
.ycc-floating-cta.is-visible { transform: translateY(0); opacity: 1; }
.ycc-floating-cta:hover { background: var(--ycc-primary-dark); }
.ycc-floating-cta:focus-visible { outline: 3px solid var(--ycc-accent); outline-offset: 2px; }
.ycc-floating-bottom-right { right: 24px; }
.ycc-floating-bottom-left { left: 24px; }
.ycc-floating-icon { display: inline-flex; }
/* Logged-in users often have the WP admin bar; keep the CTA above theme footers. */
body.admin-bar .ycc-floating-cta { z-index: 100001; }

/* ---------- Modal ---------- */
.ycc-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(35, 35, 32, 0.55);
	backdrop-filter: blur(3px);
	display: none;
	align-items: flex-start;
	justify-content: center;
	z-index: 100000;
	padding: 24px 16px;
	overflow: hidden;
	overscroll-behavior: none;
	touch-action: none;
}
.ycc-modal-overlay.is-open { display: flex; }
html.ycc-modal-locked,
body.ycc-modal-locked {
	overflow: hidden;
	height: 100%;
	overscroll-behavior: none;
}
.ycc-modal-overlay .ycc-modal {
	touch-action: auto;
	max-height: calc(100vh - 48px);
	max-height: calc(100dvh - 48px);
}

.ycc-modal {
	background: var(--ycc-bg);
	width: 100%;
	max-width: 880px;
	max-height: calc(100vh - 48px);
	border-radius: var(--ycc-radius);
	box-shadow: var(--ycc-shadow);
	overflow: hidden;
	margin: auto;
	animation: ycc-pop 0.25s ease;
	color: var(--ycc-text);
	display: flex;
	flex-direction: column;
}
@keyframes ycc-pop { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }

.ycc-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px 8px 16px;
	border-bottom: 1px solid var(--ycc-border);
	background: #fff;
	flex-shrink: 0;
}
.ycc-tabs { display: flex; gap: 4px; }
.ycc-tab {
	background: none;
	border: none;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ycc-muted);
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.ycc-tab.is-active { color: var(--ycc-text); border-bottom-color: var(--ycc-primary); }
.ycc-tab[disabled] { opacity: 0.4; cursor: default; }
.ycc-tab:focus { outline: none; }
.ycc-tab:focus-visible { outline: none; }
.ycc-modal-close {
	background: none; border: none; font-size: 28px; line-height: 1;
	color: var(--ycc-muted); cursor: pointer; padding: 4px 10px; border-radius: 8px;
}
.ycc-modal-close:hover { background: rgba(0,0,0,0.05); color: var(--ycc-text); }

.ycc-modal-body {
	padding: 22px;
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	overscroll-behavior: contain;
}

/* ---------- Typography ---------- */
.ycc-section-title, .ycc-book-title {
	font-family: var(--ycc-font-heading);
	font-weight: 700;
	color: var(--ycc-text);
	margin: 0 0 12px;
}
.ycc-book-title { font-size: 24px; }
.ycc-section-title { font-size: 20px; }
.ycc-book-desc { color: var(--ycc-muted); margin: 0 0 14px; line-height: 1.5; }

/* ---------- Book view ---------- */
.ycc-book-head {
	margin: -22px -22px 14px;
}
.ycc-book-hero {
	height: 180px;
	background-size: cover;
	background-position: center;
	border-radius: 0;
	margin: 0;
	width: 100%;
	display: block;
}
.ycc-book-change-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 10px 16px 0;
	padding: 7px 14px;
	border: 1px solid rgba(138, 160, 140, 0.45);
	border-radius: 999px;
	background: #fff;
	color: var(--ycc-primary-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(47, 47, 44, 0.06);
}
.ycc-book-change-pill:hover {
	border-color: var(--ycc-primary);
	background: var(--ycc-bg);
}
.ycc-link-btn {
	background: none; border: none; color: var(--ycc-primary-dark);
	cursor: pointer; font-size: 14px; padding: 0; margin: 0 0 16px; display: inline-block;
}
.ycc-link-btn:hover { text-decoration: underline; }

.ycc-fields { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.ycc-label { font-size: 13px; font-weight: 600; color: var(--ycc-text); margin-top: 10px; }
.ycc-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--ycc-border);
	border-radius: 10px;
	font-size: 15px;
	background: #fff;
	color: var(--ycc-text);
	box-sizing: border-box;
}
.ycc-input:focus { outline: none; border-color: var(--ycc-primary); box-shadow: 0 0 0 3px rgba(138, 160, 140, 0.2); }
/* Session picker */
.ycc-session-picker {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 220px;
	overflow-y: auto;
	overflow-anchor: none;
	padding-right: 2px;
	overscroll-behavior: contain;
}
.ycc-session-radio {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	pointer-events: none;
}
.ycc-session-card:focus { outline: none; }
.ycc-session-card:focus-visible {
	outline: 3px solid rgba(138, 160, 140, 0.35);
	outline-offset: 2px;
}
.ycc-session-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto auto;
	gap: 2px 10px;
	align-items: center;
	padding: 12px 14px;
	border: 2px solid var(--ycc-border);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ycc-session-card::before {
	content: '';
	grid-row: 1 / 3;
	width: 18px;
	height: 18px;
	border: 2px solid var(--ycc-border);
	border-radius: 50%;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.ycc-session-card.is-selected { border-color: var(--ycc-primary); box-shadow: 0 0 0 1px var(--ycc-primary); }
.ycc-session-card.is-selected::before { border-color: var(--ycc-primary); background: var(--ycc-primary); box-shadow: inset 0 0 0 3px #fff; }
.ycc-session-card.is-full { opacity: 0.55; cursor: not-allowed; }
.ycc-session-date { grid-column: 2; font-weight: 600; font-size: 14px; color: var(--ycc-text); }
.ycc-session-time { grid-column: 2; font-size: 13px; color: var(--ycc-muted); }
.ycc-session-badge { grid-column: 3; grid-row: 1 / 3; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #b3463b; }

/* Tags (pills) */
.ycc-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 10px;
}
.ycc-pill {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.3;
	color: var(--ycc-primary-dark);
	background: rgba(138, 160, 140, 0.14);
	border: 1px solid rgba(138, 160, 140, 0.35);
}
.ycc-book .ycc-pills { margin-top: 6px; margin-bottom: 12px; }
.ycc-form .ycc-pills { margin-top: 4px; margin-bottom: 8px; }
.ycc-event-card-body .ycc-pills { margin: 6px 0 8px; }

.ycc-avail-note { font-size: 13px; color: var(--ycc-primary-dark); margin: 6px 0 0; font-weight: 600; }
.ycc-avail-note.is-full { color: #b3463b; }

/* Tiers */
.ycc-tiers-options { display: flex; flex-direction: column; gap: 8px; }
.ycc-tier-option {
	display: flex; align-items: center; gap: 10px;
	border: 1px solid var(--ycc-border); border-radius: 10px;
	padding: 12px 14px; cursor: pointer; background: #fff; transition: border-color 0.15s ease;
}
.ycc-tier-option:hover { border-color: var(--ycc-primary); }
.ycc-tier-option input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	margin: 0;
	flex-shrink: 0;
	border: 2px solid var(--ycc-border);
	border-radius: 50%;
	background: #fff;
	box-sizing: border-box;
	cursor: pointer;
}
.ycc-tier-option input[type="radio"]:checked {
	border-color: var(--ycc-primary);
	background: var(--ycc-primary);
	box-shadow: inset 0 0 0 3px #fff;
}
.ycc-tier-option input[type="radio"]:focus {
	outline: none;
}
.ycc-tier-option input[type="radio"]:focus-visible {
	outline: 2px solid rgba(138, 160, 140, 0.45);
	outline-offset: 2px;
}
.ycc-tier-label { flex: 1; font-weight: 500; }
.ycc-tier-amount { font-weight: 700; color: var(--ycc-primary-dark); }

/* Map */
.ycc-map-box { margin-bottom: 18px; }
.ycc-map {
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	margin-top: 8px;
	z-index: 1;
	border: 1px solid var(--ycc-border);
}
.ycc-map-address { font-size: 14px; color: var(--ycc-text); }
.ycc-map-address span { color: var(--ycc-muted); }
.ycc-map .leaflet-control-zoom a {
	border-color: var(--ycc-border) !important;
	color: var(--ycc-text) !important;
	background: #fff !important;
	width: 32px !important;
	height: 32px !important;
	line-height: 30px !important;
	font-size: 18px !important;
}
.ycc-map .leaflet-control-zoom a:hover { border-color: var(--ycc-primary) !important; color: var(--ycc-primary-dark) !important; }
.ycc-map .leaflet-control-attribution { font-size: 10px; opacity: 0.75; }
.ycc-map-marker { background: transparent; border: none; }
.ycc-map-marker-pin {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0 auto;
	background: var(--ycc-primary);
	border: 3px solid #fff;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.ycc-btn {
	display: inline-flex; align-items: center; justify-content: center;
	border: none; border-radius: 10px; padding: 14px 22px; font-size: 15px;
	font-weight: 600; cursor: pointer; transition: background 0.2s ease, opacity 0.2s ease; text-decoration: none;
}
.ycc-btn-primary { background: var(--ycc-primary); color: #fff; width: 100%; }
.ycc-btn-primary:hover { background: var(--ycc-primary-dark); }
.ycc-btn-secondary {
	background: #fff;
	color: var(--ycc-primary-dark);
	border: 1px solid var(--ycc-border);
	width: auto;
}
.ycc-btn-secondary:hover { border-color: var(--ycc-primary); background: var(--ycc-bg); }
.ycc-btn-secondary.is-active {
	background: var(--ycc-primary);
	color: #fff;
	border-color: var(--ycc-primary);
}

/* Resumen de reserva (multi-sesión) */
.ycc-cart-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	margin-bottom: 14px;
	background: rgba(138, 160, 140, 0.1);
	border: 1px solid rgba(138, 160, 140, 0.28);
	border-radius: 12px;
}
.ycc-cart-bar-text { font-size: 14px; font-weight: 600; color: var(--ycc-primary-dark); }
.ycc-cart-bar-link { width: auto; flex-shrink: 0; }
.ycc-book-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}
.ycc-book-actions .ycc-btn-primary,
.ycc-book-actions .ycc-btn-secondary {
	width: 100%;
}
.ycc-cart-review .ycc-book-change-pill,
.ycc-form .ycc-book-change-pill {
	margin: 0 0 14px;
	align-self: flex-start;
}
.ycc-cart-review-head { margin-bottom: 16px; }
.ycc-cart-review-title { margin-bottom: 6px; }
.ycc-cart-review-sub {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--ycc-muted);
}
.ycc-cart-review-panel {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 18px;
	padding: 12px;
	background: var(--ycc-bg);
	border: 1px solid var(--ycc-border);
	border-radius: 14px;
}
.ycc-cart-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ycc-cart-list--compact { margin-bottom: 12px; gap: 8px; }
.ycc-cart-list--compact .ycc-cart-line-main {
	padding: 10px 12px 10px 14px;
}
.ycc-cart-line {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
}
.ycc-cart-line-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 14px 14px 16px;
	background: #fff;
	border: 1px solid var(--ycc-border);
	border-left: 4px solid var(--ycc-primary);
	border-radius: 12px;
	box-sizing: border-box;
}
.ycc-cart-line-body {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ycc-cart-line-title {
	display: block;
	font-size: 17px;
	font-weight: 700;
	font-family: var(--ycc-font-heading);
	color: var(--ycc-text);
	line-height: 1.3;
}
.ycc-cart-line-meta {
	display: block;
	font-size: 13px;
	color: var(--ycc-muted);
	line-height: 1.4;
}
.ycc-cart-line-remove {
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	margin: 0;
	padding: 8px 12px;
	white-space: nowrap;
	align-self: center;
}
.ycc-cart-places {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--ycc-border);
	border-radius: 12px;
	box-sizing: border-box;
}
.ycc-cart-places .ycc-label {
	margin: 0;
	flex: 1 1 auto;
	font-size: 14px;
	font-weight: 600;
}
.ycc-input--compact {
	width: 72px;
	max-width: 72px;
	min-width: 72px;
	flex: 0 0 72px;
	text-align: center;
	padding: 10px 8px;
	box-sizing: border-box;
}
.ycc-cart-places-note {
	font-size: 12px;
	color: var(--ycc-muted);
	margin: 0;
	line-height: 1.4;
	text-align: center;
}
.ycc-cart-review > .ycc-btn-primary {
	margin-top: 0;
}
.ycc-btn-primary[disabled] { opacity: 0.5; cursor: default; }
.ycc-btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; width: auto; }
.ycc-btn-ghost { background: #fff; color: var(--ycc-primary-dark); border: 1px solid var(--ycc-border); }
.ycc-btn-ghost:hover { border-color: var(--ycc-primary); }

/* ---------- Form ---------- */
.ycc-form { display: flex; flex-direction: column; }
.ycc-form-summary { color: var(--ycc-muted); margin: 0 0 14px; font-size: 14px; }
.ycc-checkout-summary {
	margin: 0 0 20px;
	padding: 12px;
	background: var(--ycc-bg);
	border: 1px solid var(--ycc-border);
	border-radius: 14px;
}
.ycc-checkout-summary-title {
	margin: 0 0 10px;
	font-family: var(--ycc-font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--ycc-text);
}
.ycc-checkout-summary .ycc-cart-list--compact {
	margin-bottom: 8px;
}
.ycc-checkout-places {
	margin: 0;
	font-size: 13px;
	color: var(--ycc-muted);
	line-height: 1.4;
	text-align: left;
}
.ycc-form-section-title {
	margin-top: 0;
	margin-bottom: 14px;
	font-size: 18px;
}

/* intl-tel-input */
.ycc-phone-wrap { width: 100%; }
.ycc-phone-wrap .iti { width: 100%; display: block; }
.ycc-phone-wrap .iti__tel-input,
.ycc-phone-wrap .iti input.ycc-input-phone {
	width: 100%;
	padding-top: 12px;
	padding-right: 14px;
	padding-bottom: 12px;
	/* padding-left: lo asigna intl-tel-input (separateDialCode) vía estilo en línea */
	border: 1px solid var(--ycc-border);
	border-radius: 10px;
	font-size: 15px;
	background: #fff;
	color: var(--ycc-text);
	box-sizing: border-box;
	height: auto;
}
.ycc-phone-wrap .iti__tel-input:focus,
.ycc-phone-wrap .iti input.ycc-input-phone:focus {
	outline: none;
	border-color: var(--ycc-primary);
	box-shadow: 0 0 0 3px rgba(138, 160, 140, 0.2);
}
.ycc-phone-wrap .iti__country-container { border-radius: 10px 0 0 10px; }
.ycc-phone-wrap .iti__selected-country {
	border-radius: 10px 0 0 10px;
	background: var(--ycc-bg);
}
.ycc-phone-wrap .iti__selected-country-primary:hover,
.ycc-phone-wrap .iti__selected-country-primary:focus {
	background: #eef2ee;
}

/* Listado de países por encima del modal de reserva (iti por defecto: z-index 1060; modal: 100000). */
body.ycc-modal-locked .iti--container {
	z-index: 100010;
}
body.ycc-modal-locked .iti--fullscreen-popup.iti--container {
	z-index: 100010;
}
.ycc-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: var(--ycc-muted);
	margin: 14px 0;
	line-height: 1.4;
	cursor: pointer;
}
.ycc-consent .ycc-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin: 2px 0 0;
	flex-shrink: 0;
	border: 2px solid var(--ycc-border);
	border-radius: 5px;
	background: #fff;
	box-sizing: border-box;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.ycc-consent .ycc-checkbox:checked {
	border-color: var(--ycc-primary);
	background-color: var(--ycc-primary);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5.5 4 8.5 11 1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 9px;
}
.ycc-consent .ycc-checkbox:focus {
	outline: none;
}
.ycc-consent .ycc-checkbox:focus-visible {
	outline: 2px solid rgba(138, 160, 140, 0.45);
	outline-offset: 2px;
}
.ycc-error { color: #b3463b; font-size: 14px; margin: 6px 0; min-height: 1em; }
.ycc-hp-wrap { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.ycc-turnstile-mount { margin: 12px 0 4px; min-height: 65px; }

/* ---------- Success ---------- */
.ycc-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
	padding: 32px 20px 28px;
}
.ycc-success-icon {
	color: var(--ycc-primary);
	margin: 0;
	line-height: 0;
}
.ycc-success-text {
	font-size: 17px;
	color: var(--ycc-text);
	margin: 0;
	max-width: 26em;
	line-height: 1.5;
}
.ycc-success .ycc-btn-primary {
	margin: 4px 0 0;
	width: 100%;
	max-width: 320px;
}

/* ---------- Loading / empty ---------- */
.ycc-loading, .ycc-empty { text-align: center; color: var(--ycc-muted); padding: 28px 12px; }
.ycc-calendar-loading { text-align: center; color: var(--ycc-muted); padding: 28px 12px; }

/* ---------- Calendar ---------- */
.ycc-calendar { color: var(--ycc-text); }
.ycc-cal-header {
	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}
.ycc-cal-month {
	font-family: var(--ycc-font-heading);
	font-size: 19px;
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
}
.ycc-cal-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	background: #fff;
	border: 1px solid var(--ycc-border);
	border-radius: 10px;
	cursor: pointer;
	color: var(--ycc-text);
	line-height: 1;
	flex-shrink: 0;
}
.ycc-cal-nav:hover:not(:disabled):not(.is-disabled) { border-color: var(--ycc-primary); color: var(--ycc-primary-dark); background: #fff; }
.ycc-cal-nav:focus-visible { outline: 3px solid rgba(138, 160, 140, 0.35); outline-offset: 2px; }
.ycc-cal-nav:disabled,
.ycc-cal-nav.is-disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}
.ycc-cal-nav svg { display: block; }

/* Día seleccionado — actividades debajo del calendario */
.ycc-cal-focus {
	margin-top: 16px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid var(--ycc-border);
	border-radius: 16px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 2px 10px rgba(47, 47, 44, 0.06),
		0 10px 28px rgba(47, 47, 44, 0.07);
}
.ycc-cal-focus[hidden] { display: none !important; }
.ycc-cal-focus-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--ycc-border);
}
.ycc-cal-focus-daynum {
	flex: 0 0 auto;
	font-family: var(--ycc-font-heading);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	color: var(--ycc-primary-dark);
	min-width: 56px;
	text-align: center;
}
.ycc-cal-focus-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.ycc-cal-focus-badge {
	align-self: flex-start;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	background: var(--ycc-primary);
	padding: 4px 10px;
	border-radius: 999px;
}
.ycc-cal-focus-weekday {
	font-family: var(--ycc-font-heading);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ycc-text);
}
.ycc-cal-focus-date,
.ycc-cal-focus-count {
	font-size: 13px;
	color: var(--ycc-muted);
	font-weight: 600;
}
.ycc-cal-focus-empty {
	margin: 0;
	font-size: 14px;
	color: var(--ycc-muted);
}
.ycc-cal-focus-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ycc-cal-focus-item {
	background: #fff;
	border: 1px solid var(--ycc-border);
	border-radius: 14px;
	overflow: hidden;
}
.ycc-cal-focus-item.is-full { opacity: 0.92; }
.ycc-cal-focus-row {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 14px;
	padding: 12px 14px;
}
.ycc-cal-focus-media {
	flex: 0 0 128px;
	width: 128px;
	min-height: 128px;
	align-self: stretch;
	background-size: cover;
	background-position: center;
	background-color: var(--ycc-bg);
	border-radius: 12px;
	position: relative;
}
.ycc-cal-focus-media--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, rgba(138, 160, 140, 0.2) 0%, rgba(138, 160, 140, 0.06) 100%);
}
.ycc-cal-focus-initial {
	font-family: var(--ycc-font-heading);
	font-size: 40px;
	font-weight: 700;
	color: var(--ycc-primary-dark);
	user-select: none;
}
.ycc-cal-focus-type {
	position: absolute;
	left: 6px;
	bottom: 6px;
	right: 6px;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ycc-primary-dark);
	padding: 3px 4px;
	border-radius: 5px;
}
.ycc-cal-focus-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ycc-cal-focus-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--ycc-text);
}
.ycc-cal-focus-time {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--ycc-primary-dark);
}
.ycc-cal-focus-loc {
	margin: 0;
	font-size: 12px;
	color: var(--ycc-muted);
}
.ycc-cal-focus-body .ycc-pills { margin: 4px 0; }
.ycc-cal-focus-excerpt {
	margin: 4px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--ycc-muted);
}
.ycc-cal-focus-more {
	font-weight: 600;
	color: var(--ycc-primary-dark);
	text-decoration: none;
}
.ycc-cal-focus-more:hover { text-decoration: underline; }
.ycc-cal-focus-avail {
	margin: 6px 0 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--ycc-primary-dark);
}
.ycc-cal-focus-avail.is-full { color: #b3463b; }
.ycc-cal-focus-actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	align-self: center;
}
.ycc-cal-focus-actions .ycc-btn {
	min-width: 120px;
	white-space: nowrap;
}

.ycc-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 7px;
	--ycc-cal-rows: 6;
}
/* Relleno final de la última fila (sin día del mes): invisible, no ocupa hueco visual */
.ycc-cal-cell.is-pad {
	visibility: hidden;
	pointer-events: none;
	border-color: transparent;
	background: transparent;
	min-height: 0;
	padding: 0;
}

/* Modal: celdas compactas; en escritorio altura fija para que no salte al cambiar de mes */
.ycc-calendar--modal .ycc-cal-grid {
	--ycc-cal-cell-h: 52px;
}
.ycc-calendar--modal .ycc-cal-cell:not(.is-pad) {
	min-height: var(--ycc-cal-cell-h);
}
.ycc-calendar--modal .ycc-cal-cell.has-events,
.ycc-calendar--modal .ycc-cal-cell.has-multi,
.ycc-calendar--modal .ycc-cal-cell.is-selected {
	min-height: var(--ycc-cal-cell-h);
}
.ycc-calendar--modal .ycc-cal-cell.is-empty:not(.is-pad) {
	min-height: var(--ycc-cal-cell-h);
}
.ycc-calendar--modal .ycc-cal-cell.is-pad {
	min-height: 0;
	padding: 0;
}
.ycc-cal-day-label {
	display: none;
}
.ycc-calendar--modal .ycc-cal-stage {
	--ycc-cal-cell-h: 52px;
	--ycc-cal-dow-h: 28px;
	--ycc-cal-gap: 7px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Modal escritorio: cuadrícula completa (hora + título en celdas) + panel del día */
@media (min-width: 601px) {
	.ycc-calendar--modal .ycc-cal-grid {
		min-height: calc(
			var(--ycc-cal-dow-h) + var(--ycc-cal-rows) * var(--ycc-cal-cell-h) +
			(var(--ycc-cal-rows) - 1) * var(--ycc-cal-gap)
		);
	}
	.ycc-calendar--modal .ycc-cal-cell:not(.is-selected) .ycc-cal-cell-dots {
		display: none !important;
	}
	.ycc-calendar--modal .ycc-cal-cell:not(.is-selected) .ycc-cal-cell-events {
		display: flex !important;
		flex-direction: column;
		gap: 4px;
		margin-top: 4px;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected {
		grid-column: auto;
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		z-index: 1;
		overflow: visible;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected.has-events {
		min-height: 88px;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected.has-multi {
		min-height: 108px;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-dots {
		display: none !important;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-events {
		display: flex !important;
		flex-direction: column;
		gap: 4px;
		margin-top: 4px;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-event-time,
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-event-title {
		color: #fff;
		font-size: 10px;
		line-height: 1.2;
	}
	.ycc-calendar--modal .ycc-cal-focus {
		position: relative;
		z-index: 2;
		min-height: 180px;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell-dots,
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-count {
		display: none !important;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.has-events:not(.is-selected) .ycc-cal-cell-events {
		display: flex !important;
	}
}
.ycc-cal-dow { text-align: center; font-size: 12px; font-weight: 700; color: var(--ycc-muted); padding: 4px 0 10px; text-transform: uppercase; letter-spacing: 0.06em; }

.ycc-cal-cell {
	position: relative;
	min-height: 48px;
	width: 100%;
	background: #fff;
	border: 1px solid var(--ycc-border);
	border-radius: 10px;
	padding: 7px 6px 6px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 5px;
	font: inherit;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.ycc-cal-cell:focus {
	outline: none;
}
.ycc-cal-cell:focus-visible {
	outline: none;
}
.ycc-cal-cell.has-events { min-height: 92px; }
.ycc-cal-cell.has-multi { min-height: 112px; }
.ycc-cal-cell.is-empty {
	min-height: 42px;
	background: #fafafa;
	border-color: transparent;
	cursor: pointer;
}
.ycc-cal-cell.is-empty:hover { border-color: var(--ycc-border); background: #fff; }
.ycc-cal-num {
	font-size: 14px;
	font-weight: 700;
	color: var(--ycc-muted);
	line-height: 1;
}
.ycc-cal-cell.is-today:not(.is-selected) {
	border-color: var(--ycc-primary);
	box-shadow: inset 0 0 0 2px rgba(138, 160, 140, 0.35);
}
.ycc-cal-cell.is-today .ycc-cal-num { color: var(--ycc-primary-dark); }
.ycc-cal-cell.has-events { border-color: rgba(138, 160, 140, 0.45); background: #fcfdfc; }
.ycc-cal-cell.has-events:hover { border-color: var(--ycc-primary); }
.ycc-cal-cell.has-events .ycc-cal-num { color: var(--ycc-text); font-size: 15px; }
.ycc-cal-cell.is-selected {
	background: var(--ycc-primary);
	border-color: var(--ycc-primary);
	box-shadow: 0 6px 16px rgba(110, 135, 114, 0.4);
	z-index: 1;
	min-height: 96px;
}
.ycc-cal-cell.is-selected.has-multi { min-height: 118px; }
.ycc-cal-cell.is-selected .ycc-cal-num {
	color: #fff;
	font-size: 16px;
}
.ycc-cal-cell-events {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 3px;
	min-width: 0;
	flex: 1;
}
.ycc-cal-cell-event {
	display: flex;
	flex-direction: column;
	gap: 1px;
	line-height: 1.25;
	min-width: 0;
}
.ycc-cal-cell-event-time {
	font-size: 11px;
	font-weight: 700;
	color: var(--ycc-primary-dark);
	letter-spacing: 0.01em;
}
.ycc-cal-cell-event-title {
	font-size: 11px;
	font-weight: 600;
	color: var(--ycc-text);
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: normal;
}
.ycc-cal-cell.is-selected .ycc-cal-cell-event-time,
.ycc-cal-cell.is-selected .ycc-cal-cell-event-title {
	color: #fff;
}
.ycc-cal-cell.is-selected .ycc-cal-cell-event-time { opacity: 0.92; }
.ycc-cal-cell-more {
	font-size: 10px;
	font-weight: 700;
	color: var(--ycc-muted);
	margin-top: 1px;
}
.ycc-cal-cell.is-selected .ycc-cal-cell-more {
	color: rgba(255, 255, 255, 0.9);
}

/* Indicadores de evento (puntos simples) */
.ycc-cal-cell-dots {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
	margin-top: auto;
	min-height: 10px;
}
.ycc-cal-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ycc-primary);
	flex-shrink: 0;
}
.ycc-cal-count {
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	padding: 3px 6px;
	border-radius: 6px;
	background: var(--ycc-bg);
	color: var(--ycc-primary-dark);
	border: 1px solid rgba(138, 160, 140, 0.35);
}
.ycc-cal-cell.is-selected .ycc-cal-count {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

/* Day panel + event cards (list view) */
.ycc-day-panel-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 12px;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ycc-border);
}
.ycc-day-panel-badge {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	background: var(--ycc-primary);
	padding: 4px 10px;
	border-radius: 999px;
}
.ycc-day-panel-date {
	font-family: var(--ycc-font-heading);
	font-size: 18px;
	font-weight: 700;
}
.ycc-day-panel-count {
	font-size: 12px;
	font-weight: 600;
	color: var(--ycc-muted);
	white-space: nowrap;
}
.ycc-day-panel-list { display: flex; flex-direction: column; gap: 12px; }

.ycc-event-card {
	background: #fff;
	border: 1px solid var(--ycc-border);
	border-radius: 14px;
	overflow: hidden;
}
.ycc-event-card.is-highlight { border-color: var(--ycc-primary); box-shadow: 0 0 0 2px rgba(138, 160, 140, 0.2); }
.ycc-event-card.is-full { opacity: 0.92; }
.ycc-event-card-row {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 108px;
}
.ycc-event-card-media {
	flex: 0 0 132px;
	width: 132px;
	min-height: 100%;
	background-size: cover;
	background-position: center;
	background-color: var(--ycc-bg);
	position: relative;
}
.ycc-event-card-media--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, rgba(138, 160, 140, 0.18) 0%, rgba(138, 160, 140, 0.06) 100%);
}
.ycc-event-card-initial {
	font-family: var(--ycc-font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: var(--ycc-primary-dark);
	user-select: none;
}
.ycc-event-card-type {
	position: absolute;
	left: 6px;
	bottom: 6px;
	right: 6px;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ycc-primary-dark);
	padding: 3px 4px;
	border-radius: 5px;
	line-height: 1.2;
}
.ycc-event-card-inner {
	flex: 1;
	min-width: 0;
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ycc-event-card-body { min-width: 0; }
.ycc-event-card-title {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}
.ycc-event-card-time { margin: 0 0 4px; font-size: 13px; font-weight: 600; color: var(--ycc-primary-dark); }
.ycc-event-card-loc { margin: 0; font-size: 12px; color: var(--ycc-muted); }
.ycc-event-card-excerpt {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--ycc-muted);
}
.ycc-event-card-more {
	font-weight: 600;
	color: var(--ycc-primary-dark);
	text-decoration: none;
	white-space: nowrap;
}
.ycc-event-card-more:hover { text-decoration: underline; }
.ycc-event-card-avail { margin: 8px 0 0; font-size: 12px; font-weight: 600; color: var(--ycc-primary-dark); }
.ycc-event-card-avail.is-full { color: #b3463b; }
.ycc-event-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ycc-event-card-actions .ycc-btn-primary { flex: 1; min-width: 120px; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
	/* Fullscreen booking modal on mobile */
	.ycc-modal-overlay {
		padding: 0;
		align-items: stretch;
		background: var(--ycc-bg);
		backdrop-filter: none;
		overflow: hidden;
	}
	.ycc-modal-overlay .ycc-modal {
		max-height: none;
		height: 100%;
	}
	.ycc-modal-overlay.is-open { display: flex; }
	.ycc-modal {
		max-width: none;
		width: 100%;
		min-height: 100vh;
		min-height: 100dvh;
		height: 100%;
		border-radius: 0;
		box-shadow: none;
		margin: 0;
		display: flex;
		flex-direction: column;
		animation: ycc-slide-up 0.28s ease;
	}
	@keyframes ycc-slide-up {
		from { opacity: 0; transform: translateY(16px); }
		to { opacity: 1; transform: none; }
	}
	.ycc-modal-head {
		flex-shrink: 0;
		padding-top: max(8px, env(safe-area-inset-top));
		padding-left: max(12px, env(safe-area-inset-left));
		padding-right: max(12px, env(safe-area-inset-right));
	}
	.ycc-modal-body {
		flex: 1;
		max-height: none;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 16px;
		padding-bottom: max(16px, env(safe-area-inset-bottom));
	}
	.ycc-modal-close {
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.ycc-book-head {
		margin: -16px -16px 12px;
	}
	.ycc-book-hero {
		height: 200px;
	}
	.ycc-book-change-pill {
		margin: 10px 12px 0;
	}

	.ycc-floating-text { display: none; }
	.ycc-floating-cta {
		padding: 16px;
		bottom: max(16px, env(safe-area-inset-bottom));
	}
	.ycc-cal-focus-daynum { font-size: 40px; min-width: 48px; }
	.ycc-cal-focus-weekday { font-size: 17px; }
	.ycc-cal-focus-row { flex-wrap: wrap; padding: 12px; }
	.ycc-cal-focus-media { flex: 0 0 100px; width: 100px; min-height: 100px; }
	.ycc-cal-focus-initial { font-size: 32px; }
	.ycc-cal-focus-actions { width: 100%; align-self: stretch; }
	.ycc-cal-focus-actions .ycc-btn { width: 100%; min-width: 0; }
	/* Calendario móvil en página: día seleccionado a ancho completo */
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-grid { gap: 3px; }
	/* Modal: misma cuadrícula compacta que en escritorio */
	.ycc-calendar--modal .ycc-cal-grid { gap: 3px; }
	.ycc-calendar--modal .ycc-cal-cell:not(.is-selected) .ycc-cal-cell-events {
		display: none !important;
	}
	.ycc-calendar--modal .ycc-cal-cell:not(.is-selected) .ycc-cal-cell-dots {
		display: flex !important;
		margin-top: auto;
		padding-top: 4px;
		padding-bottom: 2px;
		gap: 4px;
		justify-content: center;
	}
	.ycc-calendar--modal .ycc-cal-cell:not(.is-selected):not(.is-pad):not(.is-empty) {
		min-height: 52px;
		padding: 6px 4px 8px;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px 10px;
		padding: 8px 10px;
		min-height: 0;
		max-height: none;
		aspect-ratio: auto;
		text-align: left;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected.has-events,
	.ycc-calendar--modal .ycc-cal-cell.is-selected.has-multi {
		min-height: 0;
	}
	/* Barra verde móvil: «Jueves 7» en lugar del solo número */
	.ycc-cal-cell.is-selected .ycc-cal-num {
		display: none;
	}
	.ycc-cal-cell.is-selected .ycc-cal-day-label {
		display: block;
		font-size: 17px;
		font-weight: 700;
		line-height: 1.2;
		color: #fff;
		flex: 0 0 auto;
		min-width: 6.5em;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-dots {
		display: none !important;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-events {
		display: flex !important;
		flex: 1 1 auto;
		min-width: 0;
		margin-top: 0;
		gap: 6px;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-event {
		display: inline-flex;
		flex-direction: column;
		gap: 0;
		padding: 4px 8px;
		background: rgba(255, 255, 255, 0.14);
		border-radius: 6px;
		flex: 0 1 auto;
		min-width: 0;
		max-width: 100%;
		border: none;
		cursor: pointer;
		font: inherit;
		text-align: left;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-event:focus-visible {
		outline: 2px solid rgba(255, 255, 255, 0.85);
		outline-offset: 2px;
	}
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-event-time,
	.ycc-calendar--modal .ycc-cal-cell.is-selected .ycc-cal-cell-event-title {
		font-size: 12px;
	}
	.ycc-calendar--modal .ycc-cal-stage {
		gap: 12px;
	}
	.ycc-calendar--modal .ycc-cal-focus {
		display: block;
		min-height: 0;
	}
	.ycc-calendar--modal .ycc-cal-focus-list {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	.ycc-cal-dow { font-size: 10px; padding-bottom: 6px; }
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell {
		padding: 5px 3px 4px;
		min-height: 40px;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-empty {
		min-height: 34px;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell:not(.is-selected):not(.is-empty) {
		min-height: 52px;
		aspect-ratio: 1;
		max-height: 56px;
		padding: 6px 4px 8px;
		justify-content: flex-start;
		align-items: center;
		text-align: center;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell:not(.is-selected) .ycc-cal-num {
		font-size: 12px;
		width: 100%;
		text-align: center;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.has-events:not(.is-selected) .ycc-cal-cell-events {
		display: none !important;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.has-events:not(.is-selected) .ycc-cal-cell-dots {
		display: flex;
		margin-top: auto;
		padding-top: 4px;
		padding-bottom: 2px;
		gap: 4px;
		justify-content: center;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.has-events:not(.is-selected) .ycc-cal-count {
		margin-top: 1px;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell:not(.is-selected) .ycc-cal-dot {
		width: 6px;
		height: 6px;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px 10px;
		padding: 8px 10px;
		min-height: 0;
		max-height: none;
		aspect-ratio: auto;
		text-align: left;
		outline: none;
		border-color: var(--ycc-primary);
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected:focus,
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected:focus-visible {
		outline: none;
		box-shadow: 0 6px 16px rgba(110, 135, 114, 0.4);
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected.has-events,
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected.has-multi {
		min-height: 0;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected .ycc-cal-num {
		display: none;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected .ycc-cal-cell-dots {
		display: none !important;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected .ycc-cal-cell-events {
		display: flex !important;
		flex: 1 1 auto;
		min-width: 0;
		margin-top: 0;
		gap: 4px;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected .ycc-cal-cell-event {
		display: inline-flex;
		flex-direction: column;
		gap: 0;
		padding: 4px 8px;
		background: rgba(255, 255, 255, 0.14);
		border-radius: 6px;
		flex: 0 1 auto;
		min-width: 0;
		max-width: 100%;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell-event-time,
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell-event-title {
		font-size: 12px;
	}
	.ycc-calendar:not(.ycc-calendar--modal) .ycc-cal-cell.is-selected .ycc-cal-cell-event-title {
		-webkit-line-clamp: 3;
	}
	.ycc-event-card-media { flex: 0 0 108px; width: 108px; }
	.ycc-event-card-initial { font-size: 32px; }
	.ycc-event-card-actions .ycc-btn-sm { flex: 1; }
	.ycc-day-panel-head { flex-direction: column; align-items: flex-start; gap: 4px; }
}
