/* ------------------------------------------------------------------ *
 * Balloons Right Now – Delivery Scheduler
 * Scoped under .brn-ds. Appearance is reset and key props use !important
 * so themes can't distort the widget. Width is capped so nothing bleeds.
 * ------------------------------------------------------------------ */

.brn-ds { margin: 22px 0; max-width: 460px; width: 100%; flex: 0 0 100%; box-sizing: border-box;
	font-size: 15px; color: #1f2430; line-height: 1.45; -webkit-font-smoothing: antialiased; }
.brn-ds *, .brn-ds *::before, .brn-ds *::after { box-sizing: border-box; }
.brn-ds .brn-hide { display: none !important; }

.brn-ds__title { font-size: 20px; font-weight: 700; margin: 0 0 12px; color: #1f2430; }

.brn-ds__banner { border-radius: 12px; padding: 12px 15px; margin: 0 0 18px; font-size: 14px; }
.brn-ds__banner--info { background: #fdeaf1; color: #8a2b4d; }
.brn-ds__banner--soft { background: #eef7ee; color: #2f6b34; margin-top: 16px; }

.brn-ds__label { font-weight: 700; font-size: 14px; margin: 18px 0 10px; color: #1f2430; }
.brn-ds__note { font-size: 13px; color: #77808f; margin: 8px 2px 0; }

/* ---- Calendar ---- */
.brn-cal { border: 1px solid #e6e9ef; border-radius: 16px; padding: 14px; background: #fff; }
.brn-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.brn-cal__title { font-weight: 700; font-size: 16px; }
.brn-ds .brn-cal__nav {
	width: 34px; height: 34px; border: 1px solid #e3e6ec !important; background: #fff !important;
	border-radius: 9px !important; cursor: pointer; font-size: 20px; line-height: 1; color: #1f2430 !important;
	-webkit-appearance: none; appearance: none; padding: 0 !important; box-shadow: none !important;
	display: flex; align-items: center; justify-content: center; transition: border-color .15s, opacity .15s;
}
.brn-ds .brn-cal__nav:hover:not([disabled]) { border-color: #ed4c78 !important; }
.brn-ds .brn-cal__nav[disabled] { opacity: .35; cursor: default; }

.brn-cal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.brn-cal__dow span { text-align: center; font-size: 11px; font-weight: 700; color: #9aa2b1; text-transform: uppercase; letter-spacing: .03em; }

.brn-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.brn-cal__pad { aspect-ratio: 1 / 1; }

.brn-ds .brn-cal__day {
	aspect-ratio: 1 / 1; width: 100%; display: flex; flex-direction: column;
	align-items: center; justify-content: center; position: relative;
	border: 1.5px solid transparent !important; border-radius: 10px !important;
	background: #f5f6f8 !important; color: #1f2430 !important; font-size: 14px; font-weight: 600;
	cursor: pointer; padding: 0 !important; margin: 0 !important; box-shadow: none !important;
	-webkit-appearance: none; appearance: none; font-family: inherit; line-height: 1;
	transition: border-color .12s, background .12s, box-shadow .12s;
}
.brn-ds .brn-cal__day:hover { border-color: #f19bb6 !important; }
.brn-ds .brn-cal__day.is-today { box-shadow: inset 0 0 0 1.5px #c9ced8 !important; }
.brn-ds .brn-cal__day.is-selected {
	border-color: #ed4c78 !important; background: #fff5f8 !important;
	box-shadow: 0 0 0 3px rgba(237,76,120,.18) !important;
}
.brn-cal__day.is-disabled {
	aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
	color: #c3c8d1; background: transparent; font-size: 14px; border-radius: 10px; cursor: default;
}
/* Blackout dates / blocked weekdays: clearly "off". */
.brn-cal__day.is-off {
	aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
	color: #b6bcc7; background: repeating-linear-gradient(135deg, #f1f2f5, #f1f2f5 5px, #e9ebef 5px, #e9ebef 10px);
	font-size: 14px; border-radius: 10px; cursor: not-allowed; text-decoration: line-through;
	text-decoration-thickness: 1.5px;
}
.brn-day__num { pointer-events: none; }
.brn-day__dot { width: 6px; height: 6px; border-radius: 50%; background: #ed4c78; margin-top: 3px; }
.brn-cal__day.is-rush .brn-day__dot { background: #e08a00; }

.brn-cal__legend { margin-top: 10px; font-size: 12px; color: #77808f; display: flex; flex-wrap: wrap; gap: 14px; }
.brn-cal__legend-item { display: inline-flex; align-items: center; gap: 6px; }
.brn-cal__legend .brn-day__dot { margin: 0; background: #e08a00; }
.brn-cal__legend-off { display: inline-flex; align-items: center; justify-content: center;
	width: 20px; height: 20px; border-radius: 6px; font-size: 11px; color: #b6bcc7; text-decoration: line-through;
	background: repeating-linear-gradient(135deg, #f1f2f5, #f1f2f5 4px, #e9ebef 4px, #e9ebef 8px); }

/* ---- Prompt ---- */
.brn-ds__prompt { color: #77808f; font-size: 14px; background: #f6f7f9;
	border: 1px dashed #dfe3ea; border-radius: 12px; padding: 14px 16px; }

/* ---- Fixed (same-day) window ---- */
.brn-fixed { display: flex; align-items: center; justify-content: space-between; gap: 14px;
	background: #fdeaf1; border: 1.5px solid #f4b8cd; border-radius: 14px; padding: 15px 16px; }
.brn-fixed__left { display: flex; flex-direction: column; gap: 3px; }
.brn-fixed__title { font-weight: 700; color: #b3305a; }
.brn-fixed__sub { font-size: 14px; color: #7a4a58; }
.brn-fixed__sub span { color: #ed4c78; font-weight: 600; }
.brn-fixed__fee { font-weight: 700; color: #ed4c78; white-space: nowrap; }

/* ---- Choice windows ---- */
.brn-windows { display: grid; grid-template-columns: 1fr; gap: 10px; }
.brn-ds .brn-win { display: flex; align-items: center; gap: 11px; margin: 0 !important;
	border: 1.5px solid #e3e6ec; border-radius: 12px; padding: 13px 15px; cursor: pointer;
	background: #fff; transition: border-color .15s, background .15s; }
.brn-ds .brn-win:hover { border-color: #f19bb6; }
.brn-ds .brn-win input { accent-color: #ed4c78; width: 18px; height: 18px; margin: 0 !important; flex: 0 0 auto; }
.brn-win__label { font-size: 14px; }
.brn-ds .brn-win.is-selected { border-color: #ed4c78; background: #fff5f8; }

/* ---- Zip ---- */
.brn-ds .brn-ds__zip { width: 100%; padding: 12px 14px !important;
	border: 1.5px solid #d9dde4 !important; border-radius: 12px !important; font-size: 15px;
	background: #fff !important; color: #1f2430 !important; -webkit-appearance: none; appearance: none; box-shadow: none !important; }
.brn-ds .brn-ds__zip:focus { border-color: #ed4c78 !important; outline: none; }
.brn-ds .brn-ds__zip.is-ok { border-color: #3fae57 !important; }
.brn-ds .brn-ds__zip.is-bad { border-color: #e0574f !important; }
.brn-ds__zipmsg { font-size: 13.5px; font-weight: 600; margin: 8px 2px 0; }
.brn-ds__zipmsg.is-ok { color: #2f8f45; }
.brn-ds__zipmsg.is-bad { color: #c94840; }
