.twg-booking-form {
	--twg-brand: #c66536;
	--twg-accent: #697055;
	--twg-dark: #5e634a;
	--twg-bg: #f4f1ec;
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	padding: 32px;
	box-shadow: 0 10px 40px rgba(94, 99, 74, 0.12);
	font-family: inherit;
}

.twg-steps-indicator {
	display: flex;
	justify-content: space-between;
	margin-bottom: 32px;
}

.twg-step-dot {
	flex: 1;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 700;
	color: #bbb;
}

.twg-step-dot::before {
	content: "";
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #e6e1d6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}

.twg-step-dot.is-active {
	color: var(--twg-dark);
}

.twg-step-dot.is-active::before {
	background: var(--twg-brand);
	color: #fff;
}

.twg-step-dot em {
	font-style: normal;
	font-size: 12px;
	font-weight: 400;
	margin-top: 2px;
}

.twg-booking-form h3 {
	color: var(--twg-dark);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 22px 0 10px;
}

.twg-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ddd6c8;
	border-radius: 6px;
	font-family: inherit;
	font-size: 15px;
	background: #fff;
	box-sizing: border-box;
}

/* ---------------- CUSTOM CALENDAR (replaces native <input type=date>,
   which can't be restyled — Chrome/Firefox render its popup themselves) --- */
.twg-date-field {
	position: relative;
}
.twg-date-field .twg-input {
	cursor: pointer;
	padding-right: 40px;
}
.twg-date-field::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--twg-accent);
	transform: translateY(-50%);
	pointer-events: none;
}

.twg-datepicker {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 50;
	width: 320px;
	max-width: 90vw;
	background: #fff;
	border: 1px solid #e6e1d6;
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(0,0,0,0.18);
	padding: 16px;
}

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

.twg-datepicker-month {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--twg-dark);
}

.twg-datepicker-nav {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid var(--twg-accent);
	background: #fff;
	color: var(--twg-dark);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
}
.twg-datepicker-nav:hover:not(:disabled) {
	background: var(--twg-bg);
}
.twg-datepicker-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.twg-datepicker-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}

.twg-datepicker-weekday {
	font-size: 11px;
	font-weight: 700;
	color: var(--twg-accent);
	padding: 4px 0;
}

.twg-datepicker-day {
	border: none;
	background: transparent;
	padding: 8px 0;
	border-radius: 50%;
	font-size: 13px;
	color: var(--twg-dark);
	cursor: pointer;
	font-family: inherit;
}
.twg-datepicker-day:hover:not(:disabled) {
	background: var(--twg-bg);
}
.twg-datepicker-day.is-today {
	font-weight: 700;
	color: var(--twg-brand);
}
.twg-datepicker-day.is-selected {
	background: var(--twg-brand);
	color: #fff;
}
.twg-datepicker-day.is-past,
.twg-datepicker-day:disabled {
	color: #ccc;
	cursor: not-allowed;
}

.twg-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.twg-grid-2 label,
.twg-full {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	color: #555;
	margin-top: 12px;
}

.twg-payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.twg-payment-option {
	font-family: inherit;
}

.twg-bank-info {
	margin-top: 14px;
	padding: 14px 16px;
	background: var(--twg-bg);
	border-radius: 6px;
	color: var(--twg-dark);
	font-size: 14px;
	line-height: 1.6;
}

.twg-time-slots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
	gap: 10px;
}

.twg-slot {
	padding: 10px 6px;
	border: 1px solid var(--twg-accent);
	background: #fff;
	color: var(--twg-dark);
	border-radius: 6px;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
}

.twg-slot:hover:not(:disabled) {
	background: var(--twg-bg);
}

.twg-slot.is-selected {
	background: var(--twg-brand);
	border-color: var(--twg-brand);
	color: #fff;
}

.twg-slot.is-blocked,
.twg-slot:disabled {
	background: #f0f0f0;
	color: #bbb;
	border-color: #e0e0e0;
	cursor: not-allowed;
	text-decoration: line-through;
}

.twg-court-section {
	margin-top: 6px;
}

.twg-court-select {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.twg-court {
	padding: 12px 20px;
	border: 1px solid var(--twg-accent);
	background: #fff;
	color: var(--twg-dark);
	border-radius: 6px;
	cursor: pointer;
	font-family: inherit;
	font-weight: 600;
}

.twg-court.is-selected {
	background: var(--twg-accent);
	border-color: var(--twg-accent);
	color: #fff;
}

.twg-hint {
	color: #999;
	font-size: 13px;
}

.twg-summary {
	margin-top: 20px;
	padding: 14px 16px;
	background: var(--twg-bg);
	border-radius: 6px;
	color: var(--twg-dark);
	font-size: 14px;
}

.twg-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 26px;
}

.twg-btn {
	padding: 13px 28px;
	border-radius: 6px;
	border: none;
	font-size: 15px;
	cursor: pointer;
	font-weight: 600;
}

.twg-btn-primary {
	background: var(--twg-brand);
	color: #fff;
}

.twg-btn-primary:disabled {
	background: #e0d3ca;
	cursor: not-allowed;
}

.twg-btn-secondary {
	background: transparent;
	color: var(--twg-dark);
	border: 1px solid var(--twg-accent);
}

.twg-alert {
	background: #fbe4e0;
	color: #a13c2f;
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-size: 14px;
}

.twg-confirmation {
	text-align: center;
	padding: 30px 10px;
}

.twg-confirmation h3 {
	font-size: 24px;
	color: var(--twg-brand);
	text-transform: none;
}

.twg-contact-form {
	max-width: 640px;
	background: #fff;
	border-radius: 10px;
	padding: 28px;
	box-shadow: 0 10px 40px rgba(94, 99, 74, 0.10);
}

.twg-contact-form .twg-grid-2 {
	margin-top: 0;
}

.twg-contact-success {
	margin-top: 16px;
	color: var(--twg-dark, #5e634a);
	background: #eef1e6;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14px;
}

@media (max-width: 600px) {
	.twg-grid-2 {
		grid-template-columns: 1fr;
	}
	.twg-booking-form {
		padding: 20px;
	}
}
