:root { --pvb-brand: #c2185b; }

.pvb-gift-fields { margin: 16px 0; padding: 14px; border: 1px solid #e0e0e0; border-radius: 6px; }
.pvb-gift-details { margin-top: 10px; }

#pvb-app { max-width: 480px; }
#pvb-app .form-row { margin-bottom: 12px; }
#pvb-app label { display: block; font-weight: 600; margin-bottom: 4px; }
#pvb-app input[type="text"],
#pvb-app input[type="email"],
#pvb-app input[type="date"],
#pvb-app textarea { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }

.pvb-message { color: #b32d2e; margin-top: 8px; }
.pvb-product-name { font-weight: 600; margin-bottom: 12px; }

/* ---------------- Calendar (month grid) ---------------- */

.pvb-calendar {
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 14px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pvb-calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.pvb-cal-month-label {
	font-weight: 700;
	font-size: 15px;
	color: #222;
}

.pvb-cal-nav {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #e2e2e2;
	background: #fff;
	color: #555;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
}
.pvb-cal-nav:hover:not(:disabled) { background: #f5f0f0; border-color: var(--pvb-brand); color: var(--pvb-brand); }
.pvb-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.pvb-calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
	margin-bottom: 6px;
}

.pvb-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.pvb-cal-cell {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pvb-cal-day {
	border: 1px solid transparent;
	border-radius: 8px;
	background: #faf8f7;
	color: #333;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pvb-cal-day:hover:not(:disabled) { border-color: var(--pvb-brand); }

.pvb-cal-today { font-weight: 700; box-shadow: inset 0 0 0 1px var(--pvb-brand); }

.pvb-cal-selected,
.pvb-cal-selected:hover {
	background: var(--pvb-brand) !important;
	color: #fff !important;
	border-color: var(--pvb-brand) !important;
	font-weight: 700;
}

.pvb-cal-disabled {
	background: transparent;
	color: #d3d3d3;
	cursor: not-allowed;
}

.pvb-cal-blank { visibility: hidden; }

/* ---------------- Time slots ---------------- */

#pvb-slots, #pvb-admin-slots { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 20px; }

.pvb-slot-btn {
	position: relative;
	padding: 8px 14px;
	border: 1px solid #ccc;
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.15s ease, border-color 0.15s ease;
}
.pvb-slot-btn:hover:not(:disabled) { border-color: var(--pvb-brand); }
.pvb-slot-btn.pvb-slot-selected { background: var(--pvb-brand); color: #fff; border-color: var(--pvb-brand); }

/* Booked slots stay visible (so the calendar reads as a real schedule,
   not a mystery gap) but are struck through, greyed out, and disabled. */
.pvb-slot-btn.pvb-slot-unavailable {
	background: #f5f5f5;
	border-color: #e2e2e2;
	color: #a8a8a8;
	cursor: not-allowed;
}
.pvb-slot-btn.pvb-slot-unavailable .pvb-slot-time {
	text-decoration: line-through;
	text-decoration-color: #c33;
}
.pvb-slot-btn.pvb-slot-unavailable .pvb-slot-tag {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: #ece5e5;
	color: #a05050;
	padding: 2px 6px;
	border-radius: 10px;
}

#pvb-confirm-btn.button {
	background: var(--pvb-brand);
	border-color: var(--pvb-brand);
	color: #fff;
	border-radius: 24px;
	padding: 10px 26px;
}
#pvb-confirm-btn.button:disabled { opacity: 0.4; }

/* ---------------- "Booking confirmed" step ---------------- */

#pvb-step-done { text-align: center; padding: 12px 0; }

.pvb-done-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--pvb-brand);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	margin-bottom: 14px;
}

#pvb-step-done h3 { margin: 0 0 8px; font-size: 20px; }
#pvb-step-done p { color: #666; font-size: 15px; line-height: 1.5; max-width: 380px; margin: 0 auto; }


