.ds-form-shell {
	--ds-primary: #3f8f92;
	--ds-primary-strong: #2f7c80;
	--ds-primary-soft: #edf7f6;
	--ds-surface: #ffffff;
	--ds-border: #d9d6d0;
	--ds-text: #333333;
	--ds-text-muted: #5d5d5d;
	--ds-danger: #b35243;
	--ds-danger-soft: #f8e7e3;
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 34px;
	border: 1px solid var(--ds-border);
	border-radius: 0;
	background: var(--ds-surface);
	color: var(--ds-text);
	font-family: Poppins, sans-serif;
}

.ds-form-shell h3 {
	margin: 0 0 24px;
	font-family: "Playfair Display", serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1.6px;
	text-align: center;
}

.ds-form-shell h3::after {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	margin: 16px auto 0;
	background: rgba(63, 143, 146, 0.45);
}

.ds-form-shell p,
.ds-form-shell span,
.ds-form-shell label,
.ds-form-shell input,
.ds-form-shell button,
.ds-form-shell textarea {
	font-family: Poppins, sans-serif;
}

.ds-progress {
	margin-bottom: 36px;
}

.ds-progress-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ds-text-muted);
}

.ds-progress-track {
	height: 6px;
	border-radius: 999px;
	background: #dedad4;
	overflow: hidden;
}

.ds-progress-bar {
	height: 100%;
	background: var(--ds-primary);
	border-radius: 999px;
	transition: width 0.25s ease;
}

.ds-card-grid,
.ds-date-grid {
	display: grid;
	gap: 24px;
	margin: 22px 0 30px;
}

.ds-card-grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ds-date-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-event-grid {
	grid-template-columns: 1fr;
}

.ds-event-group {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 24px 22px 26px;
	border: 1px solid var(--ds-border);
	background: #f8f4ef;
}


.ds-option-card {
	position: relative;
	border: 1px solid var(--ds-border);
	border-radius: 0;
	padding: 24px 22px 24px 58px;
	background: rgba(255, 255, 255, 0.96);
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 180px;
	width: 100%;
	max-width: 100%;
	white-space: normal;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}

.ds-event-card {
	width: 100%;
	min-height: 0;
	padding: 0 0 16px;
	border: 0;
	border-bottom: 1px solid #e7e1d9;
	background: transparent;
}

.ds-event-card.is-selected {
	border: 0;
	border-bottom: 1px solid rgba(63, 143, 146, 0.35);
	box-shadow: none;
	background: transparent;
}

.ds-option-card:hover {
	border-color: rgba(63, 143, 146, 0.45);
	background: #f8fbfb;
	box-shadow: none;
}

.ds-option-card:hover,
.ds-option-card:focus,
.ds-option-card:focus-visible {
	color: var(--ds-text);
}

.ds-option-card:hover p,
.ds-option-card:focus p,
.ds-option-card:focus-visible p,
.ds-option-card:hover > span:last-child,
.ds-option-card:focus > span:last-child,
.ds-option-card:focus-visible > span:last-child {
	color: var(--ds-text-muted);
}

.ds-event-card:hover,
.ds-event-card.is-selected:hover {
	border: 0;
	border-bottom: 1px solid #e7e1d9;
	background: transparent;
}

.ds-event-card.is-selected:hover {
	border-bottom-color: rgba(63, 143, 146, 0.35);
}

.ds-option-card strong {
	font-family: "Playfair Display", serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.ds-card-check {
	position: absolute;
	top: 24px;
	left: 22px;
	width: 20px;
	height: 20px;
	border: 1px solid #b9b5ae;
	background: #fff;
	pointer-events: none;
}

.ds-card-check::after {
	content: "";
	position: absolute;
	inset: 4px;
	background: var(--ds-primary);
	opacity: 0;
	transition: opacity 0.18s ease;
}

.ds-card-check.is-checked {
	border-color: var(--ds-primary);
}

.ds-card-check.is-checked::after {
	opacity: 1;
}

.ds-option-card.is-selected {
	border-color: var(--ds-primary);
}

.ds-date-option.is-selected {
	background: var(--ds-primary-soft);
}

.ds-option-card.is-disabled {
	border-color: #dfc6bf;
	background: #fbf7f5;
	cursor: not-allowed;
}

.ds-option-card p {
	color: var(--ds-text-muted);
	font-size: 14px;
	line-height: 1.75;
}

.ds-option-card > span:last-child {
	font-size: 12px;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.ds-event-dates-block {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ds-date-grid-inline {
	margin-top: 0;
	padding: 0;
	border-left: 0;
}

.ds-date-option strong {
	font-size: 20px;
}

.ds-date-option:hover:not(:disabled):not(.is-selected) {
	border-color: rgba(63, 143, 146, 0.45);
	background: #f8fbfb;
	box-shadow: none;
}

.ds-input-field,
.ds-checkbox-field {
	display: block;
	margin-bottom: 18px;
}

.ds-input-field span {
	display: block;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 8px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--ds-text-muted);
}

.ds-input-field input {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid var(--ds-border);
	border-radius: 0;
	background: #fff;
	color: var(--ds-text);
	font-size: 15px;
	transition: border-color 0.18s ease, background-color 0.18s ease;
}

.ds-input-field input:focus {
	outline: none;
	border-color: var(--ds-primary);
	background: var(--ds-primary-soft);
}

.ds-checkbox-field {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.7;
}

.ds-checkbox-field input {
	margin-top: 3px;
	accent-color: var(--ds-primary);
}

.ds-agb-text a {
	color: var(--ds-primary-strong);
}

.ds-field-error,
.ds-inline-error {
	color: var(--ds-danger);
	font-size: 14px;
	margin-top: 6px;
}

.ds-inline-error {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-left: 4px solid var(--ds-danger);
	border-radius: 0;
	background: var(--ds-danger-soft);
}

.ds-form-actions {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 30px;
}

.ds-step-panel-events {
	position: relative;
}

.ds-step-note {
	margin: 0 0 24px;
	padding: 16px 18px;
	border: 1px solid #cfe3c7;
	background: #eef8e9;
	color: #35513a;
	font-size: 14px;
	line-height: 1.7;
}

.ds-form-actions-sticky {
	position: sticky;
	bottom: 0;
	z-index: 10;
	padding: 18px 0 6px;
	background: #fff;
	border-top: 1px solid #e7e1d9;
}

.ds-button {
	background: var(--ds-primary);
	color: #fff;
	border: 1px solid var(--ds-primary);
	border-radius: 0;
	padding: 16px 28px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.ds-button:hover:not(:disabled) {
	background: var(--ds-primary);
	border-color: var(--ds-primary);
	color: #fff;
}

.ds-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.ds-button-secondary {
	background: transparent;
	color: var(--ds-primary-strong);
	border-color: var(--ds-primary);
}

.ds-button-secondary:hover:not(:disabled) {
	background: transparent;
	color: var(--ds-primary-strong);
	border-color: var(--ds-primary);
}

.ds-summary-box,
.ds-success-box {
	border: 1px solid var(--ds-border);
	border-radius: 0;
	padding: 24px 26px;
	background: rgba(255, 255, 255, 0.94);
}

.ds-summary-row {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid #e7e1d9;
	font-size: 14px;
}

.ds-summary-row:last-child {
	border-bottom: 0;
}

.ds-summary-row strong {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	font-weight: 700;
	text-align: left;
}

.ds-summary-detail {
	text-align: left;
}

.ds-summary-detail p {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ds-text-muted);
}

.ds-success-box {
	text-align: center;
}

.ds-success-box p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
}

@media ( max-width: 960px ) {
	.ds-date-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ds-summary-row,
	.ds-summary-row strong,
	.ds-summary-detail {
		text-align: left;
	}
}

@media ( max-width: 640px ) {
	.ds-form-shell {
		padding: 28px 20px;
	}

	.ds-date-grid,
	.ds-date-grid-inline {
		grid-template-columns: 1fr;
	}

	.ds-form-actions,
	.ds-summary-row,
	.ds-progress-meta {
		flex-direction: column;
		align-items: stretch;
	}

	.ds-button {
		width: 100%;
	}

	.ds-form-actions-sticky {
		padding-top: 14px;
	}

	.ds-form-shell h3 {
		font-size: 28px;
	}

	.ds-option-card strong,
	.ds-summary-row strong {
		font-size: 20px;
	}
}
