.sdm-search,
.sdm-form-shell,
.sdm-booking-form-wrap,
.sdm-dashboard,
.sdm-single {
	--sdm-green: #0F4C3A;
	--sdm-teal: #0B6B5A;
	--sdm-gold: #D6A84F;
	--sdm-title: #08251F;
	--sdm-text: #2F3A36;
	--sdm-border: #dfe7e3;
	--sdm-soft: #f6faf8;
	box-sizing: border-box;
	color: var(--sdm-text);
	font-family: Tahoma, Arial, sans-serif;
}

.sdm-search *,
.sdm-form-shell *,
.sdm-booking-form-wrap *,
.sdm-dashboard *,
.sdm-single * {
	box-sizing: border-box;
}

.sdm-search a,
.sdm-grid-wrap a,
.sdm-single a {
	text-decoration: none;
}

.sdm-search-form,
.sdm-form,
.sdm-dashboard,
.sdm-single section,
.sdm-side-box,
.sdm-subscription-box {
	background: #fff;
	border: 1px solid var(--sdm-border);
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(8, 37, 31, 0.06);
	padding: 18px;
}

.sdm-search-row,
.sdm-form-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.sdm-search-row + .sdm-search-row,
.sdm-form-step + .sdm-form-step {
	margin-top: 16px;
}

.sdm-search label span,
.sdm-form label span {
	color: var(--sdm-title);
	display: block;
	font-weight: 700;
	margin-bottom: 7px;
}

.sdm-search input,
.sdm-search select,
.sdm-form input,
.sdm-form select,
.sdm-form textarea,
.sdm-booking-row select,
.sdm-booking-row textarea {
	background: #fff;
	border: 1px solid var(--sdm-border);
	border-radius: 8px;
	color: var(--sdm-text);
	min-height: 42px;
	padding: 9px 11px;
	width: 100%;
}

.sdm-search-row-compact {
	align-items: end;
	grid-template-columns: minmax(220px, 1fr) auto auto auto;
}

.sdm-check {
	align-items: center;
	display: flex;
	gap: 8px;
	min-height: 42px;
}

.sdm-check input {
	min-height: 0;
	width: auto;
}

.sdm-btn,
.sdm-load-more {
	align-items: center;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	gap: 7px;
	justify-content: center;
	line-height: 1.4;
	min-height: 40px;
	padding: 9px 13px;
	transition: transform .15s ease, box-shadow .15s ease;
	white-space: nowrap;
}

.sdm-btn:hover,
.sdm-load-more:hover {
	box-shadow: 0 8px 20px rgba(8, 37, 31, 0.12);
	transform: translateY(-1px);
}

.sdm-btn-primary {
	background: var(--sdm-green);
	color: #fff;
}

.sdm-btn-whatsapp {
	background: #128c55;
	color: #fff;
}

.sdm-btn-phone {
	background: var(--sdm-teal);
	color: #fff;
}

.sdm-btn-details,
.sdm-load-more {
	background: #f9efd7;
	color: #6f4f09;
}

.sdm-search-results {
	margin-top: 20px;
}

.sdm-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.sdm-card {
	background: #fff;
	border: 1px solid var(--sdm-border, #dfe7e3);
	border-radius: 8px;
	box-shadow: 0 12px 26px rgba(8, 37, 31, 0.06);
	overflow: hidden;
	position: relative;
}

.sdm-card-premium {
	border-color: rgba(214, 168, 79, 0.65);
	box-shadow: 0 16px 34px rgba(214, 168, 79, 0.16);
}

.sdm-card-image {
	aspect-ratio: 4 / 3;
	background: #eef4f1;
	display: block;
	position: relative;
}

.sdm-card-image img,
.sdm-single-image img,
.sdm-gallery img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sdm-premium-badge {
	align-items: center;
	background: var(--sdm-gold, #D6A84F);
	border-radius: 999px;
	color: #241800;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 5px;
	inset-inline-start: 10px;
	padding: 6px 10px;
	position: absolute;
	top: 10px;
}

.sdm-card-body {
	padding: 15px;
}

.sdm-card-kicker,
.sdm-single-kicker {
	color: var(--sdm-teal);
	font-size: 13px;
	font-weight: 800;
	margin: 0 0 5px;
}

.sdm-card-title {
	font-size: 20px;
	line-height: 1.35;
	margin: 0 0 8px;
}

.sdm-card-title a,
.sdm-single h1,
.sdm-single h2,
.sdm-dashboard h2,
.sdm-form h3 {
	color: var(--sdm-title);
}

.sdm-card-location,
.sdm-card-excerpt,
.sdm-single-location {
	color: var(--sdm-text);
	margin: 8px 0;
}

.sdm-card-location,
.sdm-single-location {
	align-items: center;
	display: flex;
	gap: 7px;
}

.sdm-card-actions,
.sdm-single-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.sdm-empty-state {
	background: #fff;
	border: 1px dashed var(--sdm-border, #dfe7e3);
	border-radius: 8px;
	padding: 26px;
	text-align: center;
}

.sdm-load-more {
	margin: 18px auto 0;
}

.sdm-form-step {
	border-bottom: 1px solid var(--sdm-border);
	padding-bottom: 16px;
}

.sdm-choice-grid,
.sdm-plan-grid,
.sdm-stat-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.sdm-choice-grid label,
.sdm-plan-choice,
.sdm-stat-grid div,
.sdm-booking-row {
	background: var(--sdm-soft);
	border: 1px solid var(--sdm-border);
	border-radius: 8px;
	padding: 12px;
}

.sdm-choice-grid input,
.sdm-plan-choice input {
	margin-inline-end: 6px;
}

.sdm-choice-grid span,
.sdm-plan-choice span {
	display: block;
	margin-top: 7px;
}

.sdm-notice {
	border-radius: 8px;
	font-weight: 700;
	margin-bottom: 14px;
	padding: 12px 14px;
}

.sdm-notice-success {
	background: #e7f5ee;
	color: #0d5132;
}

.sdm-notice-error {
	background: #fff0f0;
	color: #8f1d1d;
}

.sdm-hp {
	left: -9999px;
	position: absolute;
}

.sdm-dashboard-head,
.sdm-booking-row {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
}

.sdm-dashboard-head p {
	color: var(--sdm-teal);
	font-weight: 800;
	margin: 0;
}

.sdm-dashboard-head h2 {
	margin: 4px 0 0;
}

.sdm-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0;
}

.sdm-tabs button {
	background: #fff;
	border: 1px solid var(--sdm-border);
	border-radius: 8px;
	color: var(--sdm-text);
	cursor: pointer;
	font-weight: 700;
	padding: 10px 13px;
}

.sdm-tabs button.is-active {
	background: var(--sdm-green);
	color: #fff;
}

.sdm-tab-panel {
	display: none;
}

.sdm-tab-panel.is-active {
	display: block;
}

.sdm-stat-grid strong {
	color: var(--sdm-green);
	display: block;
	font-size: 28px;
}

.sdm-booking-list {
	display: grid;
	gap: 12px;
}

.sdm-booking-row > div {
	flex: 1;
	min-width: 180px;
}

.sdm-single {
	margin: 0 auto;
	max-width: 1180px;
	padding: 28px 16px;
}

.sdm-breadcrumbs {
	color: var(--sdm-text);
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

.sdm-single-hero {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(260px, 380px) 1fr;
	margin-bottom: 24px;
}

.sdm-single-image {
	aspect-ratio: 4 / 3;
	background: #eef4f1;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.sdm-single-summary {
	align-self: center;
}

.sdm-single h1 {
	font-size: 40px;
	line-height: 1.2;
	margin: 0 0 10px;
}

.sdm-scientific-title {
	color: var(--sdm-teal);
	font-weight: 800;
}

.sdm-single-layout {
	display: grid;
	gap: 22px;
	grid-template-columns: 1fr 300px;
}

.sdm-single-main {
	display: grid;
	gap: 18px;
}

.sdm-rich-text {
	line-height: 1.9;
}

.sdm-term-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sdm-term-chip {
	background: #eef7f4;
	border: 1px solid #d5e8e1;
	border-radius: 999px;
	color: var(--sdm-green);
	display: inline-flex;
	font-weight: 700;
	padding: 7px 11px;
}

.sdm-gallery {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.sdm-gallery a {
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	overflow: hidden;
}

.sdm-map-link {
	color: var(--sdm-teal);
	font-weight: 800;
}

.sdm-related {
	margin-top: 24px;
}

@media (max-width: 760px) {
	.sdm-search-row-compact,
	.sdm-single-hero,
	.sdm-single-layout {
		grid-template-columns: 1fr;
	}

	.sdm-dashboard-head,
	.sdm-booking-row {
		align-items: stretch;
		flex-direction: column;
	}

	.sdm-single h1 {
		font-size: 30px;
	}

	.sdm-btn,
	.sdm-load-more {
		width: 100%;
	}
}
