/* Reset para aislar el widget del tema de WordPress */
.fb-widget,
.fb-widget * {
	box-sizing: border-box;
}

.fb-widget button,
.fb-widget input,
.fb-widget textarea,
.fb-widget select {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	pointer-events: auto !important;
	box-sizing: border-box;
}

.fb-widget button:not(:disabled) {
	cursor: pointer !important;
}

.fb-widget button:disabled,
.fb-widget button[disabled] {
	pointer-events: none !important;
	cursor: default !important;
}

.fb-widget {
	--fb-primary: #0ea5e9;
	--fb-primary-dark: #0284c7;
	--fb-success: #22c55e;
	--fb-danger:  #ef4444;
	--fb-bg:      #f8fafc;
	--fb-border:  #e2e8f0;
	--fb-text:    #1e293b;
	--fb-muted:   #64748b;
	--fb-radius:  12px;
	--fb-shadow:  0 4px 24px rgba(0,0,0,.10);
	max-width: 480px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #1e293b !important;
	background: #fff !important;
	border-radius: var(--fb-radius);
	box-shadow: var(--fb-shadow);
	overflow: hidden;
}

.fb-widget p,
.fb-widget span,
.fb-widget div,
.fb-widget strong,
.fb-widget small,
.fb-widget label {
	color: inherit !important;
}

.fb-widget__header {
	background: var(--fb-primary);
	color: #fff;
	padding: 16px 20px;
	font-weight: 700;
	font-size: 16px;
}

/* Progress bar */
.fb-progress {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	background: var(--fb-bg);
	border-bottom: 1px solid var(--fb-border);
}
.fb-progress__bar {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	background: var(--fb-primary);
	transition: width .3s;
	z-index: 0;
}
.fb-progress__dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--fb-border);
	border: 2px solid var(--fb-border);
	z-index: 1;
	transition: all .2s;
}
.fb-progress__dot--done   { background: var(--fb-primary); border-color: var(--fb-primary); }
.fb-progress__dot--active { background: #fff; border-color: var(--fb-primary); box-shadow: 0 0 0 3px rgba(14,165,233,.2); }

/* Step */
.fb-step { padding: 20px; display: flex; flex-direction: column; gap: 16px; min-height: 320px; }
.fb-step-title { margin: 0; font-size: 18px; font-weight: 700; }
.fb-step-subtitle { margin: 0; color: var(--fb-muted); font-size: 14px; }

/* Back */
.fb-back { align-self: flex-start; background: none; border: none; color: var(--fb-primary); font-size: 13px; cursor: pointer; padding: 0; }

/* Option cards */
.fb-option-list { display: flex; flex-direction: column; gap: 10px; }
.fb-option-card {
	display: flex; flex-direction: column; gap: 4px; text-align: left;
	padding: 14px 16px; border: 1.5px solid var(--fb-border);
	border-radius: 10px; background: #fff; cursor: pointer; transition: all .15s;
}
.fb-option-card:hover { border-color: var(--fb-primary); background: #f0f9ff; }
.fb-option-card strong { font-size: 14px; }
.fb-option-card small  { color: var(--fb-muted); font-size: 12px; }
.fb-option-card--any   { border-style: dashed; }
.fb-option-card__header { display: flex; justify-content: space-between; align-items: center; }
.fb-option-card__meta { display: flex; gap: 12px; font-size: 12px; color: var(--fb-muted); margin-top: 4px; }
.fb-price { font-weight: 700; color: var(--fb-primary); }
.fb-option-card--therapist { flex-direction: row; gap: 12px; align-items: flex-start; }
.fb-therapist-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.fb-therapist-bio   { font-size: 12px; color: var(--fb-muted); margin: 4px 0 0; }

/* Calendar */
.fb-cal-header { display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.fb-cal-nav { background: none; border: 1px solid var(--fb-border); border-radius: 6px; padding: 4px 10px; cursor: pointer; }
.fb-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.fb-cal-day-header { text-align: center; font-size: 11px; font-weight: 600; color: var(--fb-muted); padding: 4px 0; }
.fb-cal-day {
	aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
	border-radius: 50%; border: none; background: none; cursor: pointer; font-size: 13px;
	transition: background .15s;
}
.fb-cal-day:hover { background: var(--fb-bg); }
.fb-cal-day--selected { background: var(--fb-primary) !important; color: #fff; font-weight: 700; }
.fb-cal-day--past { color: var(--fb-border); cursor: default; }

/* Slots */
.fb-slots { display: flex; flex-direction: column; gap: 10px; }
.fb-slots-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.fb-slot {
	padding: 7px 14px; border: 1.5px solid var(--fb-border);
	border-radius: 8px; background: #fff; font-size: 13px; cursor: pointer;
	transition: all .15s; font-weight: 500;
}
.fb-slot:hover { border-color: var(--fb-primary); color: var(--fb-primary); }
.fb-slot--selected { background: var(--fb-primary); color: #fff; border-color: var(--fb-primary); }
.fb-no-slots { color: var(--fb-muted); font-size: 13px; }

/* Buttons */
.fb-btn-primary {
	padding: 14px 20px; background: var(--fb-primary); color: #fff; border: none;
	border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: filter .15s;
}
.fb-btn-primary:hover:not(:disabled) { filter: brightness(1.1); }
.fb-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.fb-btn-outline {
	padding: 12px 20px; background: #fff; color: var(--fb-primary);
	border: 2px solid var(--fb-primary); border-radius: 10px;
	font-size: 14px; font-weight: 600; cursor: pointer;
}
.fb-btn-full { width: 100%; }
.fb-link { background: none; border: none; color: var(--fb-primary); font-size: 13px; cursor: pointer; text-decoration: underline; }

/* Form */
.fb-field-group { display: flex; flex-direction: column; gap: 6px; }
.fb-label { font-size: 13px; font-weight: 500; }
.fb-required { color: var(--fb-danger); }
.fb-input, .fb-textarea {
	padding: 10px 14px; border: 1.5px solid var(--fb-border); border-radius: 8px;
	font-size: 14px; color: var(--fb-text); background: #fff; width: 100%; box-sizing: border-box;
}
.fb-input:focus, .fb-textarea:focus { outline: none; border-color: var(--fb-primary); }
.fb-textarea { min-height: 80px; resize: vertical; }
.fb-radio-group { display: flex; flex-direction: column; gap: 8px; }
.fb-radio { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }

/* Consent */
.fb-consent-box { background: var(--fb-bg); border: 1px solid var(--fb-border); border-radius: 8px; padding: 14px; font-size: 13px; color: var(--fb-muted); }
.fb-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; cursor: pointer; }
.fb-checkbox-label input { margin-top: 2px; }

/* Summary */
.fb-summary { background: var(--fb-bg); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.fb-summary-row { display: grid; grid-template-columns: 24px 1fr auto; gap: 8px; align-items: baseline; font-size: 13px; }
.fb-summary-icon { font-size: 14px; }
.fb-summary-label { color: var(--fb-muted); }
.fb-summary-value { font-weight: 600; text-align: right; }

/* Success */
.fb-step--success { align-items: center; text-align: center; padding-top: 32px; }
.fb-success-icon { width: 64px; height: 64px; background: var(--fb-success); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto; }
.fb-push-ok { color: var(--fb-success); font-size: 14px; font-weight: 600; }

/* Install */
.fb-step--install { align-items: center; text-align: center; padding: 40px 20px; }
.fb-install-icon { font-size: 56px; }

/* Error */
.fb-error { color: var(--fb-danger); font-size: 13px; }

/* Spinner */
.fb-spinner-wrap { display: flex; justify-content: center; padding: 40px; }
.fb-spinner { width: 28px; height: 28px; border: 3px solid var(--fb-border); border-top-color: var(--fb-primary); border-radius: 50%; animation: fbspin .6s linear infinite; }
@keyframes fbspin { to { transform: rotate(360deg); } }


/*# sourceMappingURL=widget.css.map*/