.rtr-app {
	max-width: 620px;
	margin: 0 auto;
	background: #fff;
	padding: 28px 24px 32px;
	border-radius: 10px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #111;
	box-sizing: border-box;
}
.rtr-app * { box-sizing: border-box; }

/* Step indicator */
.rtr-steps { display: flex; align-items: center; margin-bottom: 28px; }
.rtr-step-item { display: flex; flex-direction: column; align-items: center; flex: 0 0 auto; }
.rtr-step-circle {
	width: 32px; height: 32px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: #f1f1f1; color: #999; font-weight: 600; font-size: 14px;
	border: 2px solid #f1f1f1; transition: all .2s ease;
}
.rtr-step-item.active .rtr-step-circle,
.rtr-step-item.done .rtr-step-circle { background: #111; color: #fff; border-color: #111; }
.rtr-step-label { font-size: 12px; color: #888; margin-top: 6px; }
.rtr-step-item.active .rtr-step-label, .rtr-step-item.done .rtr-step-label { color: #111; font-weight: 600; }
.rtr-step-line { flex: 1 1 auto; height: 2px; background: #eee; margin: 0 6px 20px; }
.rtr-step-line.done { background: #111; }

h3.rtr-h { font-size: 15px; font-weight: 700; margin: 22px 0 10px; }
h3.rtr-h:first-child { margin-top: 0; }

/* Guests dropdown / selects */
.rtr-select-wrap { position: relative; }
.rtr-select {
	width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px;
	font-size: 15px; background: #fff; appearance: none; cursor: pointer;
}
.rtr-hint { font-size: 12px; color: #888; font-style: italic; margin-top: 8px; }

/* Date carousel */
.rtr-date-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.rtr-date-card {
	flex: 0 0 auto; width: 72px; text-align: center; border: 1px solid #ddd; border-radius: 8px;
	padding: 10px 4px; cursor: pointer; user-select: none;
}
.rtr-date-card .d { font-size: 12px; color: #666; }
.rtr-date-card .n { font-size: 18px; font-weight: 700; margin: 2px 0; }
.rtr-date-card .m { font-size: 11px; color: #b8860b; font-weight: 600; }
.rtr-date-card .today-tag { font-size: 10px; color: #2a9d5c; margin-top: 2px; }
.rtr-date-card.selected { background: #111; color: #fff; border-color: #111; }
.rtr-date-card.selected .d, .rtr-date-card.selected .m, .rtr-date-card.selected .today-tag { color: #fff; }

/* Banner note */
.rtr-banner {
	background: #fdf3d8; border: 1px solid #f0dfa0; border-radius: 8px; padding: 12px 14px; margin: 16px 0;
	display: flex; gap: 10px; align-items: flex-start;
}
.rtr-banner .icon { color: #b8860b; font-size: 16px; }
.rtr-banner .txt strong { display: block; font-size: 11px; letter-spacing: .04em; color: #b8860b; }
.rtr-banner .txt span { font-size: 13px; color: #8a6d1f; font-weight: 600; }

/* Pill buttons: meal time / time slots / tables */
.rtr-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.rtr-pill {
	padding: 12px 18px; border-radius: 8px; border: 1px solid #ddd; background: #fff;
	font-size: 14px; cursor: pointer; font-weight: 600; text-align: center;
}
.rtr-pill.selected { background: #111; color: #fff; border-color: #111; }
.rtr-pill.disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.rtr-pill .sub { display: block; font-weight: 400; font-size: 11px; opacity: .75; margin-top: 2px; }

.rtr-table-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }

/* Buttons */
.rtr-btn {
	width: 100%; padding: 14px; border-radius: 8px; border: none; background: #111; color: #fff;
	font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 22px;
}
.rtr-btn:disabled { background: #ccc; cursor: not-allowed; }
.rtr-btn.secondary { background: #fff; color: #111; border: 1px solid #ddd; margin-top: 10px; }
.rtr-btn-inline { padding: 10px 16px; border-radius: 8px; border: none; background: #2952e3; color: #fff; font-weight: 600; cursor: pointer; font-size: 14px; }
.rtr-btn-inline:disabled { background: #b7c1ee; cursor: not-allowed; }

/* Inputs */
.rtr-field { margin-bottom: 18px; }
.rtr-field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.rtr-req { color: #d33; }
.rtr-field input[type="text"],
.rtr-field input[type="tel"],
.rtr-field input[type="email"],
.rtr-field textarea {
	width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px;
}
.rtr-field textarea { min-height: 90px; resize: vertical; }

/* Summary box */
.rtr-summary { background: #eafaf1; border: 1px solid #cdeedb; border-radius: 10px; padding: 16px 18px; margin: 18px 0; }
.rtr-summary h4 { margin: 0 0 10px; font-size: 14px; }
.rtr-summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; color: #1c5e3a; }
.rtr-summary-row.total { font-weight: 800; border-top: 1px solid #cdeedb; margin-top: 6px; padding-top: 10px; font-size: 15px; }
.rtr-summary-note { background: #fff; border-radius: 6px; padding: 8px 10px; font-size: 12px; margin: 10px 0; color: #1c5e3a; }
.rtr-summary ul { margin: 6px 0 0; padding-left: 18px; font-size: 11px; color: #4c8a68; }

/* Terms */
.rtr-terms { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: #555; margin: 14px 0; }
.rtr-terms input { margin-top: 3px; }

.rtr-error { background: #fde8e8; color: #a4222c; border: 1px solid #f3c1c6; padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-top: 14px; }

/* Confirmation */
.rtr-success { text-align: center; padding: 30px 10px; }
.rtr-success .tick { font-size: 46px; color: #2a9d5c; }
.rtr-success h2 { margin: 10px 0 4px; }
.rtr-success .order-no { font-weight: 700; font-size: 16px; margin: 10px 0; }

@media (max-width: 480px) {
	.rtr-app { padding: 20px 16px 26px; }
	.rtr-date-card { width: 62px; }
}
