@font-face {
	font-family: "YekanBakh";
	src:
		url("../font/woff2/YekanBakhFaNum-VF.woff2") format("woff2"),
		url("../font/woff/YekanBakhFaNum-VF.WOFF") format("woff");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--mashhadotagh-primary: #164AC8;
	--mashhadotagh-secondary: #7FB8E5;
	--mashhadotagh-background: #ffffff;
	--mashhadotagh-text: #1A1A1A;
	--mashhadotagh-muted: #6b7280;
	--mashhadotagh-border: #e5e7eb;
	--mashhadotagh-font-family: "YekanBakh", Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	direction: rtl;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mashhadotagh-background);
	color: var(--mashhadotagh-text);
	font-family: var(--mashhadotagh-font-family);
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--mashhadotagh-primary);
	text-decoration: none;
	outline: none;
}

a:hover,
a:focus {
	color: var(--mashhadotagh-secondary);
}

img {
	max-width: 100%;
	height: auto;
}

/* Global breadcrumb */
.site-breadcrumb {
	padding: 22px 0 8px;
	background: #ffffff;
}

.site-breadcrumb__inner {
	display: flex;
	justify-content: flex-start;
}

.site-breadcrumb .rank-math-breadcrumb,
.site-breadcrumb .rank-math-breadcrumb p {
	margin: 0;
	color: #9a9a9a;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
}

.site-breadcrumb .rank-math-breadcrumb p {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.site-breadcrumb .rank-math-breadcrumb a {
	color: #9a9a9a;
}

.site-breadcrumb .rank-math-breadcrumb a:hover,
.site-breadcrumb .rank-math-breadcrumb a:focus {
	color: var(--mashhadotagh-primary);
}

.site-breadcrumb .rank-math-breadcrumb .separator {
	color: #c8c8c8;
}

.site-breadcrumb .rank-math-breadcrumb .last {
	color: var(--mashhadotagh-text);
}

/* Fixed back to top button */
.site-back-to-top {
	position: fixed;
	z-index: 1200;
	left: 24px;
	bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 14px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 12px 28px rgba(22, 74, 200, 0.28);
	transform: translateY(14px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.site-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-back-to-top:hover,
.site-back-to-top:focus {
	background: #123fb0;
	color: #ffffff;
}

/* Mobile bottom navigation */
.mobile-bottom-nav {
	display: none;
}

.mobile-bottom-nav__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	color: #555555;
	text-decoration: none;
}

.mobile-bottom-nav__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #555555;
}

.mobile-bottom-nav__icon img {
	display: block;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.mobile-bottom-nav__title {
	overflow: hidden;
	width: 100%;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:focus {
	color: var(--mashhadotagh-primary);
}

.mobile-bottom-nav__item:hover .mobile-bottom-nav__title,
.mobile-bottom-nav__item:focus .mobile-bottom-nav__title {
	color: var(--mashhadotagh-primary);
}

button.mobile-bottom-nav__item {
	padding: 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	cursor: pointer;
}

.mobile-contact-sheet[hidden] {
	display: none;
}

.mobile-contact-sheet {
	position: fixed;
	z-index: 1600;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mobile-contact-sheet.is-open {
	opacity: 1;
	visibility: visible;
}

.mobile-contact-sheet__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.52);
}

.mobile-contact-sheet__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 480px);
	max-height: min(72vh, 620px);
	overflow-y: auto;
	padding: 22px 18px calc(24px + env(safe-area-inset-bottom));
	border-radius: 22px 22px 0 0;
	background: #ffffff;
	box-shadow: 0 -16px 50px rgba(26, 26, 26, 0.16);
	transform: translateY(100%);
	transition: transform 0.22s ease;
}

.mobile-contact-sheet.is-open .mobile-contact-sheet__panel {
	transform: translateY(0);
}

.mobile-contact-sheet__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.mobile-contact-sheet__header h2 {
	margin: 0;
	color: #1a1a1a;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}

.mobile-contact-sheet__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f8f8fa;
	color: #777777;
	cursor: pointer;
}

.mobile-contact-sheet__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-contact-sheet__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
	padding: 12px 16px;
	border: 1px solid #dfe3e8;
	border-radius: 11px;
	background: #ffffff;
	color: #1a1a1a;
	text-decoration: none;
}

.mobile-contact-sheet__phone-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.mobile-contact-sheet__phone-content strong {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
}

.mobile-contact-sheet__phone-content span {
	color: var(--mashhadotagh-primary);
	direction: ltr;
	font-size: 14px;
	line-height: 1.5;
	text-align: right;
}

.mobile-contact-sheet__list a > svg {
	flex: 0 0 auto;
	color: #555555;
}

.mobile-contact-sheet__empty {
	margin: 0;
	padding: 22px;
	border-radius: 12px;
	background: #f8f8fa;
	color: #777777;
	font-size: 14px;
	text-align: center;
}

body.mobile-contact-sheet-open {
	overflow: hidden;
}

/* Reusable hotel card */
.hotel-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	width: 100%;
	max-width: 312px;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(26, 26, 26, 0.08);
}

.hotel-card__image-link {
	position: relative;
	display: block;
	overflow: hidden;
	height: 208px;
	color: inherit;
}
/* 
.hotel-card__image-link::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 72px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 92%);
	content: "";
	pointer-events: none;
} */

.hotel-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-card__image {
	transform: scale(1.04);
}

.hotel-card__stars {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 6px 14px;
	border-radius: 8px;
	background: #ffffff;
	color: var(--mashhadotagh-primary);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.5;
	box-shadow: 0 10px 24px rgba(26, 26, 26, 0.08);
}

.hotel-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 16px 16px 18px;
	justify-content: space-between;
}

.hotel-card__title {
	margin: 0;
	color: var(--mashhadotagh-text);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
}

.hotel-card__title a {
	color: inherit;
}

.hotel-card__address {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 8px;
	color: #8a8a8a;
	font-size: 13px;
	line-height: 1.7;
}

.hotel-card__address svg {
	flex: 0 0 16px;
	color: var(--mashhadotagh-primary);
}

.hotel-card__features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.hotel-card__features li {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 30px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #1a1a1a;
	color: #ffffff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
}

.hotel-card__features svg {
	flex: 0 0 15px;
	color: #ffffff;
}

.hotel-card__price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 6px;
	min-height: 44px;
	margin-top: 25px;
	padding-top: 17px;
	margin-bottom: 18px;
	border-top: 1px solid #f0f0f0;
	color: #777777;
	font-size: 13px;
	line-height: 1.7;
}

.hotel-card__price-title {
	display: flex;
	align-items: center;
	gap: 5px;
	flex: 1 1 auto;
	color: #666666;
	font-size: 12px;
	font-weight: 500;
}

.hotel-card__price-title svg {
	flex: 0 0 16px;
	color: #9a9a9a;
}

.hotel-card__price-prefix {
	color: #999999;
	font-size: 12px;
	font-weight: 500;
}

.hotel-card__price-values {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
}

.hotel-card__price-current {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.hotel-card__price-discount {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	font-size: 11px;
	line-height: 1.5;
}

.hotel-card__price-discount del {
	color: #999999;
	text-decoration-color: var(--mashhadotagh-primary);
}

.hotel-card__price-discount span {
	padding: 2px 6px;
	border-radius: 6px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	font-weight: 700;
	white-space: nowrap;
}

.hotel-card__price strong {
	color: var(--mashhadotagh-primary);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.4;
}

.hotel-card__price small {
	color: #999999;
	font-size: 12px;
	font-weight: 500;
}

.hotel-card__button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin-top: auto;
	border-radius: 10px;
	background: #f5f5f5;
	color: var(--mashhadotagh-text);
	font-size: 15px;
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.hotel-card__button--phone{
	margin-top: 10px;
}
.hotel-card__button:hover,
.hotel-card__button:focus {
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(22, 74, 200, 0.28);
}

@media (max-width: 520px){
	.hotel-card__title{
    font-size: 15px;
}
	.hotel-card__address{
    font-size: 12px;
}
	.hotel-card__features{
    /* flex-wrap: nowrap; */
    /* overflow-y: auto; */
}
	.hotel-card__features li{
    white-space: nowrap;
    font-size: 10px;
}
}

/* Hotel archive */
.hotel-archive {
	padding-bottom: 72px;
	background: #ffffff;
}

.hotel-archive__hero {
	position: relative;
	padding: 50px 0 50px;
	background: #eef6fc url("../img/bg-archive.avif") center center / cover no-repeat;
}

.hotel-archive__hero::before {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	content: "";
}

.hotel-archive__hero > .container {
	position: relative;
	z-index: 1;
}

.hotel-archive__breadcrumb {
	margin-bottom: 28px;
}

.hotel-archive__breadcrumb .rank-math-breadcrumb,
.hotel-archive__breadcrumb .rank-math-breadcrumb p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
}

.hotel-archive__breadcrumb .rank-math-breadcrumb p {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.hotel-archive__breadcrumb .rank-math-breadcrumb a {
	color: rgba(255, 255, 255, 0.78);
}

.hotel-archive__breadcrumb .rank-math-breadcrumb a:hover,
.hotel-archive__breadcrumb .rank-math-breadcrumb a:focus,
.hotel-archive__breadcrumb .rank-math-breadcrumb .last {
	color: #ffffff;
}

.hotel-archive__breadcrumb .rank-math-breadcrumb .separator {
	color: rgba(255, 255, 255, 0.54);
}

.hotel-archive__heading {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.hotel-archive__heading span {
	margin-bottom: 4px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
}

.hotel-archive__heading h1 {
	position: relative;
	margin: 0;
	padding-bottom: 18px;
	color: #ffffff;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.4;
}

.hotel-archive__heading h1::before,
.hotel-archive__heading h1::after {
	position: absolute;
	bottom: 0;
	height: 3px;
	border-radius: 999px;
	content: "";
}

.hotel-archive__heading h1::before {
	right: 0;
	width: 42px;
	background: #ffffff;
}

.hotel-archive__heading h1::after {
	right: 52px;
	width: 78px;
	background: rgba(255, 255, 255, 0.42);
}

.hotel-archive__description {
	margin-top: 18px;
	color: #666666;
	font-size: 15px;
	line-height: 1.9;
}

.hotel-archive__description p {
	margin: 0;
}

.hotel-archive__description-section {
	padding: 36px 0 0;
}

.hotel-archive__content {
	padding-top: 18px;
}

.hotel-archive__layout {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.hotel-archive__results {
	flex: 1 1 auto;
	min-width: 0;
}

.hotel-archive-sort {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: max-content;
	max-width: 100%;
	margin-bottom: 24px;
	padding: 4px 8px;
	border-radius: 6px;
	background: #f8f8f8;
	color: #1a1a1a;
}

.hotel-archive-sort__label {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #666666;
	font-size: 13px;
	font-weight: 400;
	white-space: nowrap;
}

.hotel-archive-sort__label svg {
	color: #7a7a7a;
}

.hotel-archive-sort__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 4px 16px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #1a1a1a;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.hotel-archive-sort__item:hover,
.hotel-archive-sort__item.is-active {
	background: #ffffff;
	color: #1a1a1a;
}

.hotel-archive__list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.hotel-archive__list .hotel-card {
	flex: 0 0 calc(25% - 18px);
	max-width: none;
}

.hotel-archive__results .hotel-archive__list .hotel-card {
	flex-basis: calc(33.333% - 16px);
}

.hotel-archive__layout.is-loading .hotel-archive__list {
	opacity: 0.55;
	pointer-events: none;
}

.hotel-archive-filter {
	top: 110px;
	flex: 0 0 372px;
	overflow: hidden;
	border: 1px solid #dfe3ec;
	border-radius: 12px;
	background: #ffffff;
	color: #0f1633;
}

.hotel-archive-filter__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 75px;
	padding: 0 22px;
	border-bottom: 1px solid #dfe3ec;
}

.hotel-archive-filter__header-title {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hotel-archive-filter__header h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.hotel-archive-filter__header-title svg {
	color: #5574e8;
}

.hotel-archive-filter__header-actions,
.hotel-archive-filter__mobile-footer,
.hotel-archive-mobile-actions,
.hotel-archive-sort__sheet-head,
.hotel-archive-mobile-backdrop {
	display: none;
}

.hotel-archive-filter__mobile-scroll {
	display: contents;
}

.hotel-archive-filter__box {
	padding: 0 22px;
}

.hotel-archive-filter__box--search {
	padding-top: 20px;
	padding-bottom: 25px;
}

.hotel-archive-filter__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 56px;
	gap: 20px;
}

.hotel-archive-filter__heading {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.hotel-archive-filter__heading > svg {
	flex: 0 0 auto;
	color: #64708d;
}

.hotel-archive-filter__title {
	margin: 0;
	color: #0f1633;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.hotel-archive-filter__toggle {
	padding: 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	text-align: right;
	cursor: pointer;
}

.hotel-archive-filter__toggle:hover .hotel-archive-filter__title,
.hotel-archive-filter__toggle:focus-visible .hotel-archive-filter__title {
	color: #3759d7;
}

.hotel-archive-filter__toggle:focus-visible {
	outline: 2px solid #5574e8;
	outline-offset: 3px;
}

.hotel-archive-filter__chevron {
	width: 10px;
	height: 10px;
	margin-left: 4px;
	border-right: 1.7px solid #7f8ba5;
	border-bottom: 1.7px solid #7f8ba5;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
}

.hotel-archive-filter__chevron.is-open,
.hotel-archive-filter__toggle[aria-expanded="true"] .hotel-archive-filter__chevron {
	transform: rotate(225deg) translate(-2px, -2px);
}

.hotel-archive-filter__search {
	position: relative;
	margin-top: 6px;
}

.hotel-archive-filter__search input {
	width: 100%;
	min-height: 54px;
	padding: 0 18px 0 52px;
	border: 1px solid #cfd5e2;
	border-radius: 15px;
	background: #ffffff;
	color: var(--mashhadotagh-text);
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-archive-filter__search input::placeholder {
	color: #98a2bc;
	opacity: 1;
}

.hotel-archive-filter__search > svg {
	position: absolute;
	top: 50%;
	left: 18px;
	color: #56627f;
	pointer-events: none;
	transform: translateY(-50%);
}

.hotel-archive-filter__search input:focus {
	border-color: #5574e8;
	box-shadow: 0 0 0 3px rgba(85, 116, 232, 0.1);
}

.hotel-archive-filter__body {
	display: flex;
	flex-direction: column;
	gap: 11px;
	padding: 5px 0 22px;
}

.hotel-archive-filter__body--search {
	padding: 0;
}

.hotel-archive-filter__body--amenities {
	max-height: 300px;
	padding-left: 4px;
	padding-bottom: 22px;
	overflow-y: auto;
	scrollbar-width: thin;
	width: 100%;
}

.hotel-archive-filter__body--amenities::-webkit-scrollbar {
	width: 6px;
}

.hotel-archive-filter__body--amenities::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: #d8d8dc;
}

.hotel-archive-filter__box.is-collapsed .hotel-archive-filter__body {
	display: none;
}

.hotel-archive-filter__option {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	cursor: pointer;
}

.hotel-archive-filter__option input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--mashhadotagh-primary);
}

.hotel-archive-filter__body--stars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding-top: 10px;
}

.hotel-archive-filter__star-option {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 9px;
	min-height: 79px;
	padding: 10px 5px;
	border: 1px solid #d5dbe8;
	border-radius: 13px;
	background: #ffffff;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-archive-filter__star-option:hover {
	border-color: #aebbe0;
}

.hotel-archive-filter__star-option:has(input:focus-visible) {
	outline: 2px solid #5574e8;
	outline-offset: 2px;
}

.hotel-archive-filter__star-option:has(input:checked) {
	border-color: #5574e8;
	background: #f6f8ff;
	box-shadow: 0 0 0 1px rgba(85, 116, 232, 0.08);
}

.hotel-archive-filter__star-option:has(input:checked)::after {
	position: absolute;
	top: -8px;
	right: -7px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: #2938d2;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	content: "✓";
}

.hotel-archive-filter__star-option input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.hotel-archive-filter__star-option strong {
	color: #0f1633;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.hotel-archive-filter__stars {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 1px;
	color: #f4b73f;
}

.hotel-archive-filter__stars svg {
	width: 14px;
	height: 14px;
}

.hotel-archive-filter__option--text {
	color: var(--mashhadotagh-text);
	font-size: 14px;
	font-weight: 400;
}

.hotel-archive-filter__price-head {
	margin-bottom: 3px;
}

.hotel-archive-filter__price-head span {
	color: #98a2bc;
	font-size: 14px;
	font-weight: 400;
}

.hotel-archive-filter__range {
	position: relative;
	height: 46px;
	margin: 10px 14px 4px;
}

.hotel-archive-filter__range::before {
	position: absolute;
	top: 22px;
	right: 0;
	left: 0;
	height: 2px;
	background: #b6b6b6;
	content: "";
}

.hotel-archive-filter__range input[type="range"] {
	position: absolute;
	top: 9px;
	right: 0;
	width: 100%;
	height: 28px;
	margin: 0;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}

.hotel-archive-filter__range input[type="range"]::-webkit-slider-thumb {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(180deg, #f3f3f3 0%, #e4e4e4 100%);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
}

.hotel-archive-filter__range input[type="range"]::-moz-range-thumb {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(180deg, #f3f3f3 0%, #e4e4e4 100%);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	pointer-events: auto;
}

.hotel-archive-filter__prices {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: #1a1a1a;
	font-size: 13px;
	font-weight: 400;
}

.hotel-archive__load-more {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.hotel-archive__load-more.is-hidden {
	display: none;
}

.hotel-archive__load-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 50px;
	padding: 0 28px;
	border: 0;
	border-radius: 12px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.hotel-archive__load-button:hover {
	background: #123fb0;
}

.hotel-archive__load-button:disabled {
	cursor: wait;
	opacity: 0.72;
}

.hotel-archive__empty {
	display: none;
	padding: 42px;
	border-radius: 18px;
	background: #f8f8fa;
	color: #666666;
	font-size: 16px;
	text-align: center;
}

.hotel-archive__empty.is-visible {
	display: block;
}

.hotel-archive__empty p {
	margin: 0;
}

/* Reusable FAQ section */
.site-faq {
	padding: 64px 0 82px;
	background: #ffffff;
}

.site-faq__heading {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: 54px;
	text-align: center;
}

.site-faq__eyebrow {
	margin-bottom: 6px;
	color: #8f8f8f;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
}

.site-faq__heading h2 {
	position: relative;
	margin: 0;
	padding-bottom: 22px;
	color: var(--mashhadotagh-text);
	font-size: 31px;
	font-weight: 800;
	line-height: 1.35;
}

.site-faq__heading h2::before,
.site-faq__heading h2::after {
	position: absolute;
	bottom: 0;
	height: 3px;
	border-radius: 3px;
	content: "";
}

.site-faq__heading h2::before {
	right: calc(50% - 64px);
	width: 42px;
	background: var(--mashhadotagh-primary);
}

.site-faq__heading h2::after {
	right: calc(50% - 12px);
	width: 78px;
	background: #e3e3e3;
}

.site-faq__heading h2 span {
	color: var(--mashhadotagh-primary);
}

.site-faq__box {
	display: flex;
	overflow: hidden;
	min-height: 266px;
	border: 1px solid #e9e9e9;
	border-radius: 16px;
	background: #ffffff;
	direction: ltr;
}

.site-faq__answers,
.site-faq__questions {
	flex: 1 1 50%;
	min-width: 0;
}

.site-faq__answers {
	position: relative;
	padding: 24px 34px;
	border-right: 1px solid #eeeeee;
	color: #4f4f4f;
	font-size: 16px;
	line-height: 2;
	text-align: right;
	direction: rtl;
}

.site-faq__answer {
	display: none;
}

.site-faq__answer.is-active {
	display: block;
}

.site-faq__answer p {
	margin: 0 0 10px;
}

.site-faq__answer p:last-child {
	margin-bottom: 0;
}

.site-faq__questions {
	display: flex;
	flex-direction: column;
	direction: rtl;
}

.site-faq__question {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 66px;
	padding: 14px 14px 14px 24px;
	border: 0;
	border-bottom: 1px solid #eeeeee;
	background: #ffffff;
	color: var(--mashhadotagh-text);
	font-family: var(--mashhadotagh-font-family);
	font-size: 16px;
	font-weight: 500;
	text-align: right;
	cursor: pointer;
	transition: color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-faq__question:last-child {
	border-bottom: 0;
}

.site-faq__question:hover,
.site-faq__question:focus,
.site-faq__question.is-active {
	position: relative;
	z-index: 1;
	background: #ffffff;
	color: var(--mashhadotagh-primary);
	box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.site-faq__question-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin-left: 14px;
	border-radius: 50%;
	background: #7fb8e5;
	box-shadow: 0 8px 18px rgba(127, 184, 229, 0.32);
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
}

.site-faq__question-title {
	flex: 1 1 auto;
	min-width: 0;
}

.site-faq__question-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	color: #1a1a1a;
}

/* Blog archive */
.blog-archive {
	padding-bottom: 72px;
}

.blog-archive__hero {
	padding: 44px 0 34px;
	background: #ffffff;
}

.blog-archive__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.blog-archive__heading span {
	color: #8a8a8a;
	font-size: 15px;
	line-height: 1.7;
}

.blog-archive__heading h1 {
	position: relative;
	margin: 0;
	padding-bottom: 18px;
	color: var(--mashhadotagh-text);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.4;
}

.blog-archive__heading h1::before,
.blog-archive__heading h1::after {
	position: absolute;
	bottom: 0;
	height: 3px;
	border-radius: 999px;
	content: "";
}

.blog-archive__heading h1::before {
	right: 0;
	width: 42px;
	background: var(--mashhadotagh-primary);
}

.blog-archive__heading h1::after {
	right: 52px;
	width: 78px;
	background: #e3e3e3;
}

.blog-archive__description {
	max-width: 720px;
	margin-top: 18px;
	color: #666666;
	font-size: 15px;
	line-height: 1.9;
}

.blog-archive__description p {
	margin: 0;
}

.blog-archive__content {
	padding: 22px 0 0;
}

.blog-archive__list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.blog-card {
	display: flex;
	flex: 0 0 calc(33.333% - 16px);
	flex-direction: column;
	overflow: hidden;
	min-width: 0;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(26, 26, 26, 0.08);
}

.blog-card__image-link {
	display: block;
	overflow: hidden;
	height: 220px;
	background: #f5f5f5;
}

.blog-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image {
	transform: scale(1.04);
}

.blog-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 20px;
}

.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
	color: #8a8a8a;
	font-size: 13px;
	line-height: 1.7;
}

.blog-card__title {
	margin: 0;
	color: var(--mashhadotagh-text);
	font-size: 19px;
	font-weight: 900;
	line-height: 1.6;
}

.blog-card__title a {
	color: inherit;
}

.blog-card__excerpt {
	margin: 12px 0 22px;
	color: #666666;
	font-size: 14px;
	line-height: 1.9;
}

.blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	color: var(--mashhadotagh-primary);
	font-size: 14px;
	font-weight: 800;
}

.blog-card__link svg {
	flex: 0 0 auto;
}

.blog-archive__pagination {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.blog-archive__pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.blog-archive__pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	background: #f5f5f5;
	color: var(--mashhadotagh-text);
	font-size: 14px;
	font-weight: 800;
}

.blog-archive__pagination .page-numbers.current,
.blog-archive__pagination .page-numbers:hover,
.blog-archive__pagination .page-numbers:focus {
	background: var(--mashhadotagh-primary);
	color: #ffffff;
}

/* Single post */
.single-post-page {
	padding: 0px 0 72px;
	background: #ffffff;
}

.single-post-page__inner {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

.single-post-page__main {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 28px;
	min-width: 0;
}

.single-author-box,
.single-related-posts,
.comments-area,
.single-post-sidebar__box {
	border-radius: 20px;
	background: #f8f8fa;
}

.single-post-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.single-post-card__box {
	overflow: hidden;
	border-radius: 20px;
	background: #f8f8fa;
}

.single-post-card__header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 156px;
	padding: 32px 42px;
}

.single-post-card__header-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 760px;
}

.single-post-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin-bottom: 14px;
	color: #777777;
	font-size: 14px;
	line-height: 1.7;
}

.single-post-card__meta a {
	color: inherit;
}

.single-post-card__title {
	margin: 0;
	color: var(--mashhadotagh-text);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
}

.single-post-card__thumbnail {
	margin: 0;
}

.single-post-card__thumbnail img {
	display: block;
	width: 100%;
	max-height: 540px;
	object-fit: cover;
}

.single-post-card__content {
	padding: 38px 46px 44px;
	color: #555555;
	font-size: 16px;
	line-height: 2.1;
}

.single-post-card__content h2,
.single-post-card__content h3,
.single-post-card__content h4 {
	margin: 32px 0 14px;
	color: var(--mashhadotagh-text);
	font-weight: 900;
	line-height: 1.6;
}

.single-post-card__content h2 {
	font-size: 26px;
}

.single-post-card__content h3 {
	font-size: 22px;
}

.single-post-card__content h4 {
	font-size: 19px;
}

.single-post-card__content p {
	margin: 0 0 20px;
}

.single-post-card__content img {
	border-radius: 14px;
}

.single-author-box {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px;
}

.single-author-box__avatar {
	display: flex;
	flex: 0 0 88px;
	overflow: hidden;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: #eeeeee;
}

.single-author-box__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-author-box__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.single-author-box__body span {
	color: var(--mashhadotagh-primary);
	font-size: 13px;
	font-weight: 800;
}

.single-author-box__body h2 {
	margin: 0;
	color: var(--mashhadotagh-text);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.5;
}

.single-author-box__body p {
	margin: 0;
	color: #666666;
	font-size: 14px;
	line-height: 1.9;
}

.single-related-posts,
.comments-area {
	padding: 28px;
}

.single-section-heading {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-bottom: 22px;
}

.single-section-heading span {
	color: #888888;
	font-size: 14px;
}

.single-section-heading h2,
.comments-title,
.comment-reply-title {
	margin: 0;
	color: var(--mashhadotagh-text);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.5;
}

.single-related-posts__list {
	display: flex;
	gap: 20px;
}

.single-related-posts__list .blog-card {
	flex-basis: calc(33.333% - 14px);
	box-shadow: none;
}

.single-post-sidebar {
	position: sticky;
	top: 104px;
	display: flex;
	flex: 0 0 320px;
	flex-direction: column;
	gap: 20px;
}

.single-post-sidebar__box {
	padding: 22px;
}

.single-post-sidebar__box h2,
.single-post-sidebar .widget-title {
	margin: 0 0 18px;
	color: var(--mashhadotagh-text);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.single-post-sidebar__posts {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-post-sidebar__posts a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--mashhadotagh-text);
}

.single-post-sidebar__posts img {
	flex: 0 0 72px;
	width: 72px;
	height: 58px;
	border-radius: 10px;
	object-fit: cover;
}

.single-post-sidebar__posts span {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
}

.comment-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}

.comment-list .comment-body {
	padding: 18px;
	border-radius: 14px;
	background: #ffffff;
}

.comment-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 13px;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--mashhadotagh-text);
	font-weight: 900;
}

.comment-author img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.comment-content {
	color: #555555;
	font-size: 14px;
	line-height: 1.9;
}

.comment-content p {
	margin: 0 0 12px;
}

.comment-respond {
	margin-top: 28px;
}

.comment-form {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 18px;
}

.comment-form p {
	margin: 0;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
	flex: 1 1 calc(33.333% - 11px);
}

.comment-form-comment {
	flex: 1 1 100%;
}

.comment-form label {
	display: block;
	margin-bottom: 7px;
	color: var(--mashhadotagh-text);
	font-size: 13px;
	font-weight: 800;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	border: 0;
	border-radius: 12px;
	background: #ffffff;
	color: var(--mashhadotagh-text);
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

.comment-form input {
	height: 50px;
	padding: 0 14px;
}

.comment-form textarea {
	min-height: 140px;
	padding: 14px;
	resize: vertical;
}

.comment-form .form-submit {
	display: flex;
	justify-content: flex-start;
	width: 100%;
}

.comment-form .submit {
	min-width: 150px;
	min-height: 50px;
	border: 0;
	border-radius: 12px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
}

/* Static pages */
.site-page {
	padding-bottom: 72px;
	background: #ffffff;
}

.site-page__inner {
	padding-top: 24px;
}

.site-page-card {
	overflow: hidden;
	border-radius: 20px;
	background: #f8f8fa;
}

.site-page-card__header {
	padding: 34px 40px 24px;
	border-bottom: 1px solid #e5e5e5;
}

.site-page-card__title {
	margin: 0;
	color: var(--mashhadotagh-text);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.5;
}

.site-page-card__content {
	padding: 34px 40px 42px;
	color: #555555;
	font-size: 16px;
	line-height: 2.1;
}

.site-page-card__content h2,
.site-page-card__content h3,
.site-page-card__content h4 {
	margin: 30px 0 14px;
	color: var(--mashhadotagh-text);
	font-weight: 900;
	line-height: 1.6;
}

.site-page-card__content h2 {
	font-size: 26px;
}

.site-page-card__content h3 {
	font-size: 22px;
}

.site-page-card__content h4 {
	font-size: 19px;
}

.site-page-card__content p {
	margin: 0 0 20px;
}

.site-page-card__content img {
	border-radius: 14px;
}

/* Classic editor content */
:where(.single-post-card__content, .site-page-card__content) {
	overflow-wrap: break-word;
}

:where(.single-post-card__content, .site-page-card__content)::after {
	display: table;
	clear: both;
	content: "";
}

:where(.single-post-card__content, .site-page-card__content) > :first-child {
	margin-top: 0;
}

:where(.single-post-card__content, .site-page-card__content) > :last-child {
	margin-bottom: 0;
}

:where(.single-post-card__content, .site-page-card__content) h1,
:where(.single-post-card__content, .site-page-card__content) h2,
:where(.single-post-card__content, .site-page-card__content) h3,
:where(.single-post-card__content, .site-page-card__content) h4,
:where(.single-post-card__content, .site-page-card__content) h5,
:where(.single-post-card__content, .site-page-card__content) h6 {
	clear: both;
	margin: 1.6em 0 0.6em;
	color: var(--mashhadotagh-text);
	font-weight: 800;
	line-height: 1.55;
}

:where(.single-post-card__content, .site-page-card__content) h1 { font-size: 30px; }
:where(.single-post-card__content, .site-page-card__content) h2 { font-size: 26px; }
:where(.single-post-card__content, .site-page-card__content) h3 { font-size: 22px; }
:where(.single-post-card__content, .site-page-card__content) h4 { font-size: 19px; }
:where(.single-post-card__content, .site-page-card__content) h5 { font-size: 17px; }
:where(.single-post-card__content, .site-page-card__content) h6 { font-size: 15px; }

:where(.single-post-card__content, .site-page-card__content) p,
:where(.single-post-card__content, .site-page-card__content) ul,
:where(.single-post-card__content, .site-page-card__content) ol,
:where(.single-post-card__content, .site-page-card__content) dl,
:where(.single-post-card__content, .site-page-card__content) table,
:where(.single-post-card__content, .site-page-card__content) blockquote,
:where(.single-post-card__content, .site-page-card__content) pre,
:where(.single-post-card__content, .site-page-card__content) figure {
	margin-top: 0;
	margin-bottom: 22px;
}

:where(.single-post-card__content, .site-page-card__content) ul,
:where(.single-post-card__content, .site-page-card__content) ol {
	padding-right: 1.5em;
	padding-left: 0;
}

:where(.single-post-card__content, .site-page-card__content) li {
	margin-bottom: 7px;
}

:where(.single-post-card__content, .site-page-card__content) li::marker {
	color: var(--mashhadotagh-primary);
	font-weight: 700;
}

:where(.single-post-card__content, .site-page-card__content) a {
	color: var(--mashhadotagh-primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

:where(.single-post-card__content, .site-page-card__content) a:hover,
:where(.single-post-card__content, .site-page-card__content) a:focus-visible {
	color: #0f3698;
}

:where(.single-post-card__content, .site-page-card__content) blockquote {
	position: relative;
	padding: 22px 28px 22px 24px;
	border-right: 4px solid var(--mashhadotagh-primary);
	border-radius: 12px 0 0 12px;
	background: #eef3ff;
	color: #303b55;
	font-size: 17px;
	font-style: normal;
}

:where(.single-post-card__content, .site-page-card__content) blockquote > :last-child {
	margin-bottom: 0;
}

:where(.single-post-card__content, .site-page-card__content) blockquote cite {
	display: block;
	margin-top: 10px;
	color: #6b7280;
	font-size: 14px;
	font-style: normal;
}

:where(.single-post-card__content, .site-page-card__content) table {
	display: block;
	width: 100% !important;
	max-width: 100%;
	overflow-x: auto;
	border-spacing: 0;
	border-collapse: collapse;
	white-space: nowrap;
	height: auto !important;
}

:where(.single-post-card__content, .site-page-card__content) th,
:where(.single-post-card__content, .site-page-card__content) td {
	padding: 12px 15px;
	border: 1px solid #dde2eb;
	text-align: right;
	vertical-align: middle;
}

:where(.single-post-card__content, .site-page-card__content) th {
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	font-weight: 700;
}

:where(.single-post-card__content, .site-page-card__content) tbody tr:nth-child(even) {
	background: #f2f5fa;
}

/* Tables inserted through WordPress editors and rich-text fields. */
:where(
	.entry-content,
	.hotel-archive__description,
	.blog-archive__description,
	.hotel-about-box__content,
	.about-intro__description,
	.home-collapsible-content__body,
	.home-about__description,
	.home-page,
	.site-faq__answer
) table {
	display: block;
	width: 100% !important;
	max-width: 100%;
	height: auto !important;
	margin: 0 0 22px;
	overflow-x: auto;
	border-spacing: 0;
	border-collapse: collapse;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

:where(
	.entry-content,
	.hotel-archive__description,
	.blog-archive__description,
	.hotel-about-box__content,
	.about-intro__description,
	.home-collapsible-content__body,
	.home-about__description,
	.home-page,
	.site-faq__answer
) :where(th, td) {
	padding: 12px 15px;
	border: 1px solid #dde2eb;
	text-align: right;
	vertical-align: middle;
}

:where(
	.entry-content,
	.hotel-archive__description,
	.blog-archive__description,
	.hotel-about-box__content,
	.about-intro__description,
	.home-collapsible-content__body,
	.home-about__description,
	.home-page,
	.site-faq__answer
) th {
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	font-weight: 700;
}

:where(
	.entry-content,
	.hotel-archive__description,
	.blog-archive__description,
	.hotel-about-box__content,
	.about-intro__description,
	.home-collapsible-content__body,
	.home-about__description,
	.home-page,
	.site-faq__answer
) tbody tr:nth-child(even) {
	background: #f2f5fa;
}

:where(.single-post-card__content, .site-page-card__content) img {
	max-width: 100%;
	height: auto;
}

:where(.single-post-card__content, .site-page-card__content) figure,
:where(.single-post-card__content, .site-page-card__content) .wp-caption {
	max-width: 100%;
}

:where(.single-post-card__content, .site-page-card__content) figcaption,
:where(.single-post-card__content, .site-page-card__content) .wp-caption-text,
:where(.single-post-card__content, .site-page-card__content) .gallery-caption {
	margin-top: 8px;
	color: #777777;
	font-size: 13px;
	line-height: 1.8;
	text-align: center;
}

:where(.single-post-card__content, .site-page-card__content) .aligncenter {
	display: block;
	clear: both;
	margin: 28px auto;
}

:where(.single-post-card__content, .site-page-card__content) .alignright {
	float: right;
	margin: 8px 0 22px 28px;
}

:where(.single-post-card__content, .site-page-card__content) .alignleft {
	float: left;
	margin: 8px 28px 22px 0;
}

:where(.single-post-card__content, .site-page-card__content) .alignnone {
	margin: 8px 0 22px;
}

:where(.single-post-card__content, .site-page-card__content) .gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

:where(.single-post-card__content, .site-page-card__content) .gallery-item {
	margin: 0;
}

:where(.single-post-card__content, .site-page-card__content) iframe,
:where(.single-post-card__content, .site-page-card__content) video {
	max-width: 100%;
	border: 0;
	border-radius: 12px;
}

:where(.single-post-card__content, .site-page-card__content) pre {
	direction: ltr;
	overflow-x: auto;
	padding: 18px 20px;
	border-radius: 10px;
	background: #172033;
	color: #f8fafc;
	font-family: Consolas, Monaco, monospace;
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
	white-space: pre;
}

:where(.single-post-card__content, .site-page-card__content) :not(pre) > code,
:where(.single-post-card__content, .site-page-card__content) kbd {
	padding: 2px 7px;
	border-radius: 5px;
	background: #e8edf5;
	color: #263348;
	font-family: Consolas, Monaco, monospace;
	font-size: 0.88em;
}

:where(.single-post-card__content, .site-page-card__content) hr {
	clear: both;
	margin: 34px 0;
	border: 0;
	border-top: 1px solid #dfe3ea;
}

:where(.single-post-card__content, .site-page-card__content) dt {
	color: var(--mashhadotagh-text);
	font-weight: 800;
}

:where(.single-post-card__content, .site-page-card__content) dd {
	margin: 0 22px 14px 0;
}

@media (max-width: 767px) {
	:where(.single-post-card__content, .site-page-card__content) h1 { font-size: 26px; }
	:where(.single-post-card__content, .site-page-card__content) h2 { font-size: 23px; }
	:where(.single-post-card__content, .site-page-card__content) h3 { font-size: 20px; }

	:where(.single-post-card__content, .site-page-card__content) blockquote {
		padding: 18px 20px;
		font-size: 16px;
	}

	:where(.single-post-card__content, .site-page-card__content) .alignright,
	:where(.single-post-card__content, .site-page-card__content) .alignleft {
		float: none;
		margin: 22px auto;
	}

	:where(.single-post-card__content, .site-page-card__content) .alignright,
	:where(.single-post-card__content, .site-page-card__content) .alignleft,
	:where(.single-post-card__content, .site-page-card__content) .alignright img,
	:where(.single-post-card__content, .site-page-card__content) .alignleft img {
		display: block;
	}
}

.container {
	width: min(1320px, calc(100% - 32px));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	display: none;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 8px 12px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	clip: auto;
}

.site-header {
	position: relative;
	z-index: 10;
}

body.home .site-header {
	/* background-color: #ffffff42; */
}

body:not(.home) .site-header {
    box-shadow: 0 0 20px 0 #00000017;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 128px;
	padding-block: 22px;
}

.site-header__nav-group {
	display: flex;
	align-items: center;
	gap: 54px;
	flex: 1 1 auto;
	min-width: 0;
}

.site-branding {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	overflow: hidden;
	text-indent: -200px;
}
.site-logo,
.custom-logo-link {
	display: flex;
	align-items: center;
}

.site-branding__mobile-logo {
	display: none;
}

.site-logo img,
.custom-logo {
	display: block;
	width: 140px;
	height: auto;
}

.site-logo--text {
	color: var(--mashhadotagh-primary);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation li {
	position: relative;
}

.main-navigation .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 30;
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 0;
	min-width: 220px;
	padding: 10px;
	border: 1px solid rgba(22, 74, 200, 0.08);
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(26, 26, 26, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.main-navigation .sub-menu .sub-menu {
	top: -10px;
	right: 100%;
	margin-right: 10px;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 44px;
	color: var(--mashhadotagh-text);
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
}

.main-navigation .sub-menu a {
	justify-content: flex-start;
	min-height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	font-size: 14px;
}

.main-navigation .menu-item-has-children > a::after {
	width: 6px;
	height: 6px;
	margin-right: 10px;
	border-bottom: 1.5px solid currentColor;
	border-left: 1.5px solid currentColor;
	content: "";
	transform: rotate(-45deg);
	margin-top: -3px;
}

.main-navigation .sub-menu .menu-item-has-children > a::before {
	margin-right: auto;
	margin-left: 0;
	transform: rotate(45deg);
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a {
	color: var(--mashhadotagh-primary);
}

.main-navigation > ul > .current-menu-item > a::before,
.main-navigation > ul > .current_page_item > a::before,
.main-navigation > ul > .current-menu-ancestor > a::before {
	position: absolute;
	right: 50%;
	bottom: -10px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--mashhadotagh-primary);
	content: "";
	transform: translateX(50%);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 25px;
	flex: 0 0 auto;
}

.header-support,
.header-auth {
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.header-auth .title-auth {
	font-weight: 500;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 24px;
	letter-spacing: 0.15px;
}
.header-support {
	gap: 11px;
	color: var(--mashhadotagh-primary);
	font-weight: 700;
}

.header-support:hover,
.header-support:focus {
	color: var(--mashhadotagh-primary);
}

.header-support__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 27px;
	padding-inline: 14px;
	border: 1px solid var(--mashhadotagh-primary);
	border-radius: 999px;
	background: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.header-support__number {
color: #164AC8;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0px;
}
.header-support__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #e8eefc;
	color: var(--mashhadotagh-primary);
}

.header-auth {
	gap: 10px;
	padding: 5px 6px 5px 15px;
	border-radius: 13px;
	background: var(--mashhadotagh-primary);
	box-shadow: 0 4px 40px 0 rgba(22, 74, 200, 0.35);
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
}

.header-auth:hover,
.header-auth:focus {
	color: #ffffff;
	background: #103da7;
}

.header-auth__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #ffffff;
}

/* Mobile header drawer */
.site-header__mobile-toggle,
.site-header__mobile-close {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--mashhadotagh-text);
	cursor: pointer;
}

.site-header__mobile-overlay {
	position: fixed;
	inset: 0;
	z-index: 98;
	display: none;
	background: rgba(26, 26, 26, 0.42);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.site-header__mobile-panel {
	position: fixed;
	inset: 0 0 0 auto;
	z-index: 99;
	display: flex;
	flex-direction: column;
	width: min(82vw, 340px);
	padding: 24px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(26, 26, 26, 0.16);
	transform: translateX(105%);
	transition: transform 0.28s ease;
}

.site-header__mobile-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 22px;
	border-bottom: 1px solid #eeeeee;
}

.site-header__mobile-logo {
	display: flex;
	align-items: center;
}

.site-header__mobile-logo img,
.site-header__mobile-logo .custom-logo {
	width: 100px;
	height: auto;
}

.site-header__mobile-close {
	display: flex;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #f8f8fa;
}

.site-header__mobile-nav {
	padding: 24px 0;
}

.site-header__mobile-nav ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__mobile-nav .sub-menu {
	display: none;
}

.site-header__mobile-nav li {
	position: relative;
}

.site-header__mobile-nav a {
	display: flex;
	align-items: center;
	min-height: 46px;
	padding: 0 12px;
	border-radius: 12px;
	color: var(--mashhadotagh-text);
	font-size: 15px;
	font-weight: 700;
}

.site-header__mobile-nav .menu-item-has-children > a {
	padding-left: 48px;
}

.site-header__mobile-nav .mobile-submenu-toggle {
	position: absolute;
	top: 5px;
	left: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 10px;
	background: #f1f5ff;
	color: var(--mashhadotagh-primary);
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.site-header__mobile-nav .mobile-submenu-toggle:hover,
.site-header__mobile-nav .mobile-submenu-toggle:focus {
	background: #e6eeff;
}

.site-header__mobile-nav .is-submenu-open > .mobile-submenu-toggle svg {
	transform: rotate(180deg);
}

.site-header__mobile-nav .is-submenu-open > .sub-menu {
	display: flex;
}

.site-header__mobile-nav .sub-menu {
	gap: 4px;
	margin: 3px 12px 7px 0;
	padding: 5px 10px 5px 0;
	border-right: 1px solid #e6eeff;
}

.site-header__mobile-nav .sub-menu a {
	min-height: 40px;
	font-size: 14px;
	font-weight: 600;
}

.site-header__mobile-nav a:hover,
.site-header__mobile-nav a:focus,
.site-header__mobile-nav .current-menu-item > a,
.site-header__mobile-nav .current_page_item > a {
	background: #f1f5ff;
	color: var(--mashhadotagh-primary);
}

.site-header__mobile-socials {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding-top: 22px;
	border-top: 1px solid #eeeeee;
	justify-content: center;
}

.site-header__mobile-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
}

.site-header__mobile-support {
	display: flex;
	align-items: center;
	justify-content: center;
	/* flex-direction: row-reverse; */
	gap: 10px;
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid #eeeeee;
	color: var(--mashhadotagh-primary);
}

.site-header__mobile-support:hover,
.site-header__mobile-support:focus {
	color: var(--mashhadotagh-primary);
}

.site-header__mobile-support-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #e8eefc;
	color: var(--mashhadotagh-primary);
}

.site-header__mobile-support-number {
	color: var(--mashhadotagh-primary);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	white-space: nowrap;
}

.site-header__mobile-support-number span {
	color: #999999;
	font-weight: 500;
}

.site-header__mobile-support-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	padding-inline: 13px;
	border: 1px solid var(--mashhadotagh-primary);
	border-radius: 999px;
	background: #ffffff;
	color: var(--mashhadotagh-primary);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
}

body.mobile-menu-open {
	overflow: hidden;
}

body.mobile-menu-open .site-header__mobile-overlay {
	display: block;
	opacity: 1;
}

body.mobile-menu-open .site-header__mobile-panel {
	transform: translateX(0);
}

.site-main {
	/* padding-block: 48px; */
}

.entry,
.no-results,
.error-404,
.comments-area {
	margin-bottom: 40px;
}

.entry-title,
.page-title {
	margin: 0 0 20px;
	color: var(--mashhadotagh-text);
	line-height: 1.3;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-thumbnail {
	display: block;
	margin-bottom: 24px;
}

.entry-thumbnail img {
	display: block;
	border-radius: 8px;
}

.search-form {
	display: flex;
	gap: 8px;
	max-width: 520px;
}

.search-field {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--mashhadotagh-border);
	border-radius: 6px;
	font: inherit;
}

.search-submit {
	padding: 10px 16px;
	border: 0;
	border-radius: 6px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	font: inherit;
	cursor: pointer;
}

/* Site footer */
.site-footer {
	overflow: hidden;
	background: #0b2250;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
	padding: 48px 0 0;
}

.site-footer__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 78px;
	padding-bottom: 46px;
}

.site-footer__about {
	display: flex;
	flex: 0 0 390px;
	flex-direction: column;
	text-align: justify;
}

.site-footer__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	margin-bottom: 22px;
}

.site-footer__logo img {
	display: block;
	width: 82px;
	height: auto;
}

.site-footer__about p {
	margin: 0;
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.95;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 28px;
}

.site-footer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: rgba(22, 74, 200, 0.24);
	color: #ffffff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus {
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	transform: translateY(-2px);
}

.site-footer__menus {
	display: flex;
	flex: 1 1 auto;
	align-items: flex-start;
	justify-content: space-between;
	gap: 56px;
	min-width: 0;
}

.site-footer__menu {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	min-width: 170px;
}

.site-footer__menu span {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 28px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.4;
	white-space: nowrap;
}

.site-footer__menu span::after {
	display: block;
	flex: 1 1 auto;
	height: 2px;
	min-width: 72px;
	background: rgba(255, 255, 255, 0.9);
	content: "";
}

.site-footer__menu ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu a {
	display: flex;
	align-items: center;
	gap: 18px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 15px;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.site-footer__menu a::before {
	display: block;
	width: 13px;
	height: 2px;
	background: rgba(255, 255, 255, 0.38);
	content: "";
}

.site-footer__menu a:hover,
.site-footer__menu a:focus {
	color: #ffffff;
}

.site-footer__middle {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	padding: 34px 0 38px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__trust {
	display: flex;
	flex: 0 0 275px;
	align-items: center;
	gap: 20px;
}

.site-footer__trust-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
}

.site-footer__trust strong,
.site-footer__contact-title {
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	white-space: nowrap;
}

.site-footer__contact {
	display: flex;
	flex-direction: row-reverse;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
}

.site-footer__contact-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 58px;
	padding-right: 28px;
	text-align: right;
}

.site-footer__contact-item:not(:last-of-type)::after {
	position: absolute;
	top: 6px;
	right: 0;
	width: 1px;
	height: 46px;
	background: rgba(255, 255, 255, 0.07);
	content: "";
}

.site-footer__contact-item--wide {
	min-width: 370px;
}

.site-footer__contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: rgba(22, 74, 200, 0.22);
	color: #ffffff;
}

.site-footer__contact-item span:not(.site-footer__contact-icon) {
	display: block;
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	line-height: 1.3;
}

.site-footer__contact-item strong {
	display: block;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
	white-space: nowrap;
}

.site-footer__contact-item strong a {
	color: inherit;
}

.site-footer__contact-item strong a:hover,
.site-footer__contact-item strong a:focus {
	color: inherit;
}

.site-footer__bottom {
	position: relative;
	min-height: 82px;
}

.site-footer__bottom-inner {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	justify-content: space-between;
	gap: 24px;
	min-height: 82px;
}

.site-footer__credit {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
}

.site-footer__copyright {
	position: relative;
	display: flex;
	flex: 0 1 730px;
	align-items: center;
	justify-content: center;
	min-height: 82px;
	padding: 0 36px 0 110px;
	background: #7fb8e5;
	color: #0b2250;
	clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.site-footer__copyright p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}

.site-footer__back-top {
	position: absolute;
	top: 0;
	left: -90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 82px;
	background: var(--mashhadotagh-primary);
	color: #ffffff;
	clip-path: polygon(56% 0%, 100% 0%, 76% 100%, 36% 100%);
}
.site-footer__back-top svg{
	margin-left: 85px;
}
.site-footer__back-top:hover,
.site-footer__back-top:focus {
	color: #ffffff;
	background: #123fad;
}

@media (max-width: 1024px) {
	.hotel-archive__layout {
		flex-direction: column;
	}

	.hotel-archive-filter {
		position: static;
		flex-basis: auto;
		width: 100%;
	}

	.hotel-archive__results {
		width: 100%;
	}

	.hotel-archive-sort {
		width: 100%;
		flex-wrap: wrap;
	}

	.hotel-archive__list .hotel-card {
		flex-basis: calc(33.333% - 16px);
	}

	.site-header__inner {
		flex-wrap: wrap;
		gap: 18px 28px;
		min-height: auto;
		padding-block: 18px;
	}

	.site-header__nav-group {
		flex-wrap: wrap;
		gap: 18px 28px;
		width: 100%;
	}

	.main-navigation ul {
		justify-content: flex-start;
		gap: 22px;
	}

	.site-footer__top {
		flex-direction: column;
		gap: 44px;
	}

	.site-footer__about {
		flex-basis: auto;
		width: 100%;
		max-width: 520px;
		margin-inline: auto;
	}

	.site-footer__menus {
		width: 100%;
		gap: 28px;
	}

	.site-footer__middle,
	.site-footer__contact {
		flex-wrap: wrap;
		justify-content: center;
	}

	.site-footer__trust {
		flex-basis: 100%;
		justify-content: center;
	}

	.site-footer__copyright {
		flex-basis: 620px;
	}

}

@media (max-width: 768px) {
	body.has-mobile-bottom-nav {
		padding-bottom: 74px;
	}

	body.hotel-archive-panel-open {
		overflow: hidden;
	}

	.hotel-archive-mobile-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		order: -2;
		width: 100%;
		gap: 14px;
	}

	.hotel-archive-mobile-actions button {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 13px;
		min-height: 49px;
		padding: 8px 14px;
		border: 1px solid #d9dce4;
		border-radius: 11px;
		background: #ffffff;
		color: #151515;
		font-family: inherit;
		font-size: 15px;
		font-weight: 500;
		box-shadow: 0 3px 8px rgba(18, 26, 49, 0.05);
		cursor: pointer;
	}

	.hotel-archive-filter {
		position: fixed;
		z-index: 1900;
		inset: 0;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100dvh;
		padding: 0;
		overflow: hidden;
		border: 0;
		border-radius: 0;
		background: #f4f6fb;
		opacity: 0;
		visibility: hidden;
		transform: translateX(100%);
		transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.25s ease;
	}

	.hotel-archive-filter.is-mobile-open {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	.hotel-archive-filter__header {
		position: relative;
		z-index: 3;
		flex: 0 0 76px;
		min-height: 76px;
		padding: 0 18px;
		background: #ffffff;
	}

	.hotel-archive-filter__mobile-scroll {
		display: block;
		flex: 1 1 auto;
		min-height: 0;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding-bottom: 12px;
		-webkit-overflow-scrolling: touch;
	}

	.hotel-archive-filter__header-actions {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.hotel-archive-filter__header-actions button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		border-radius: 12px;
		background: transparent;
		color: #72809e;
		cursor: pointer;
	}

	.hotel-archive-filter__header-actions .hotel-archive-filter__clear {
		border: 1px solid #d5dbe8;
	}

	.hotel-archive-filter__header-actions .hotel-archive-filter__clear[hidden] {
		display: none;
	}

	.hotel-archive-filter__box,
	.hotel-archive-filter__box--search {
		margin: 11px 10px 0;
		padding: 10px 15px 20px;
		border: 1px solid #dce2ed;
		border-radius: 16px;
		background: #ffffff;
	}

	.hotel-archive-filter__box--search {
		padding-top: 8px;
	}

	.hotel-archive-filter__row {
		min-height: 54px;
	}

	.hotel-archive-filter__chevron {
		display: none;
	}

	.hotel-archive-filter__toggle {
		pointer-events: none;
	}

	.hotel-archive-filter__box.is-collapsed .hotel-archive-filter__body {
		display: flex;
	}

	.hotel-archive-filter__box.is-collapsed .hotel-archive-filter__body--stars {
		display: grid;
	}

	.hotel-archive-filter__body {
		padding-bottom: 4px;
	}

	.hotel-archive-filter__body--amenities {
		max-height: none;
		overflow: visible;
	}

	.hotel-archive-filter__body--stars {
		gap: 10px;
		padding-top: 8px;
	}

	.hotel-archive-filter__star-option {
		min-height: 78px;
	}

	.hotel-archive-filter__mobile-footer {
		position: relative;
		z-index: 4;
		display: flex;
		flex: 0 0 auto;
		align-items: stretch;
		gap: 10px;
		min-height: 88px;
		padding: 13px 14px calc(13px + env(safe-area-inset-bottom));
		border-top: 1px solid #dce2ed;
		background: #ffffff;
		box-shadow: 0 -8px 24px rgba(15, 22, 51, 0.06);
	}

	.hotel-archive-filter__apply {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 1 1 auto;
		gap: 12px;
		border: 0;
		border-radius: 13px;
		background: #2938d2;
		color: #ffffff;
		font-family: inherit;
		font-size: 14px;
		font-weight: 700;
		cursor: pointer;
	}

	.hotel-archive-filter__apply:disabled {
		opacity: 0.65;
		cursor: wait;
	}

	.hotel-archive-filter__result-count {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 94px;
		flex-direction: column;
		border-radius: 13px;
		background: #fbfcff;
		line-height: 1.5;
	}

	.hotel-archive-filter__result-count strong {
		color: #2938d2;
		font-size: 13px;
	}

	.hotel-archive-filter__result-count small {
		color: #9aa4bd;
		font-size: 11px;
	}

	.hotel-archive-sort {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1902;
		display: flex;
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 22px 20px calc(24px + env(safe-area-inset-bottom));
		border-radius: 28px 28px 0 0;
		background: #ffffff;
		opacity: 0;
		visibility: hidden;
		transform: translateY(105%);
		transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.25s ease;
	}

	.hotel-archive-sort.is-mobile-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.hotel-archive-sort::before {
		width: 42px;
		height: 5px;
		margin: -12px auto 3px;
		border-radius: 99px;
		background: #d6d8dc;
		content: "";
	}

	.hotel-archive-sort__sheet-head {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		margin-bottom: 10px;
	}

	.hotel-archive-sort__sheet-head > div {
		display: flex;
		flex-direction: column;
	}

	.hotel-archive-sort__sheet-head strong {
		font-size: 20px;
	}

	.hotel-archive-sort__sheet-head span {
		color: #9a9a9a;
		font-size: 13px;
	}

	.hotel-archive-sort__sheet-head button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #7d879a;
		cursor: pointer;
	}

	.hotel-archive-sort__label {
		display: none;
	}

	.hotel-archive-sort__item {
		justify-content: flex-start;
		width: 100%;
		min-height: 51px;
		padding: 10px 16px;
		border: 1px solid #e2d7ff;
		border-radius: 12px;
		background: #ffffff;
		font-size: 13px;
		font-weight: 500;
	}

	.hotel-archive-sort__item:hover,
	.hotel-archive-sort__item.is-active {
		border-color: #7c61ef;
		background: #faf8ff;
		color: #2c24a8;
	}

	.hotel-archive-mobile-backdrop:not([hidden]) {
		position: fixed;
		z-index: 1901;
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgba(16, 20, 31, 0.66);
	}

	.mobile-bottom-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1300;
		display: flex;
		align-items: center;
		justify-content: space-around;
		min-height: 64px;
		padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
		border-top: 1px solid #eeeeee;
		background: #ffffff;
		box-shadow: 0 -10px 28px rgba(26, 26, 26, 0.08);
	}

	.site-back-to-top {
		bottom: 88px;
	}

	.hotel-archive__hero {
		padding: 32px 0 22px;
	}

	.hotel-archive__heading h1 {
		font-size: 28px;
	}

	.hotel-archive__list .hotel-card {
		flex-basis: calc(50% - 12px);
	}

	.hotel-archive__results .hotel-archive__list .hotel-card {
		flex-basis: calc(50% - 12px);
	}

	.site-faq {
		padding: 44px 0 56px;
	}

	.site-faq__heading {
		margin-bottom: 32px;
	}

	.site-faq__heading h2 {
		font-size: 25px;
	}

	.site-faq__box {
		flex-direction: column-reverse;
	}

	.site-faq__answers {
		border-top: 1px solid #eeeeee;
		border-right: 0;
		padding: 22px;
		font-size: 15px;
	}

	.site-faq__question {
		min-height: 62px;
		padding-inline: 12px;
		font-size: 15px;
	}

	.blog-card {
		flex-basis: calc(50% - 12px);
	}

	.single-post-page__inner {
		flex-direction: column;
	}

	.single-post-page__main,
	.single-post-sidebar {
		width: 100%;
	}

	.single-post-sidebar {
		position: static;
		flex-basis: auto;
	}

	.single-related-posts__list {
		flex-wrap: wrap;
	}

	.single-related-posts__list .blog-card {
		flex-basis: calc(50% - 10px);
	}

	.comment-form-author,
	.comment-form-email,
	.comment-form-url {
		flex-basis: 100%;
	}

	.site-header__inner {
		position: relative;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 0;
		min-height: 64px;
		padding-block: 8px;
	}

	.site-header__mobile-toggle {
		display: flex;
		order: 1;
		width: 44px;
		height: 44px;
		color: #27475b;
	}

	.site-header__nav-group {
		order: 2;
		flex: 0 0 auto;
		justify-content: center;
		width: auto;
		min-width: 0;
	}

	.site-branding {
		justify-content: center;
	}

	.site-branding__mobile-logo {
		display: flex;
	}

	.site-branding__mobile-logo + .custom-logo-link,
	.site-branding__mobile-logo + .site-logo {
		display: none;
	}

	.site-logo img,
	.custom-logo {
		width: 100px;
	}

	.main-navigation {
		display: none;
	}

	.site-header__actions {
		order: 3;
		gap: 6px;
	}

	.header-support {
		display: flex;
		gap: 0;
		width: 44px;
		height: 44px;
		color: #27475b;
	}

	.header-support:hover,
	.header-support:focus {
		color: var(--mashhadotagh-primary);
	}

	.header-support__badge,
	.header-support__number {
		display: none;
	}

	.header-support__icon {
		width: 44px;
		height: 44px;
		background: transparent;
		color: currentColor;
	}

	.header-support__icon svg path {
		fill: currentColor;
	}

	.header-auth {
		width: 44px;
		height: 44px;
		padding: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		color: #27475b;
	}

	.header-auth:hover,
	.header-auth:focus {
		background: transparent;
		color: var(--mashhadotagh-primary);
	}

	.header-auth .title-auth {
		display: none;
	}

	.header-auth__icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
		border-radius: 0;
		background: transparent;
	}

	.header-auth__icon svg path {
		fill: currentColor;
	}

	.site-footer__inner,
	.search-form {
		align-items: stretch;
		flex-direction: column;
	}

	.site-footer__inner {
		padding-top: 40px;
	}

	.site-footer__menus {
		flex-wrap: wrap;
	}

	.site-footer__menu {
		flex-basis: calc(50% - 14px);
	}

	.site-footer__contact {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.site-footer__contact-title {
		order: -1;
		text-align: center;
	}

	.site-footer__contact-item,
	.site-footer__contact-item--wide {
		width: 100%;
		min-width: 0;
		padding-right: 0;
	}

	.site-footer__contact-item::after {
		display: none;
	}

	.site-footer__bottom-inner {
		flex-direction: column-reverse;
		gap: 0;
		width: 100%;
	}

	.site-footer__credit {
		justify-content: center;
		min-height: 58px;
	}

	.site-footer__copyright {
		flex-basis: auto;
		width: 100%;
		padding: 0 98px 0 24px;
		clip-path: none;
	}

}

@media (max-width: 480px) {
	.container {
		width: min(100% - 24px, 1320px);
	}

	.hotel-archive__heading h1 {
		font-size: 26px;
	}

	.hotel-archive__list .hotel-card {
		flex-basis: 100%;
	}

	.hotel-archive__results .hotel-archive__list .hotel-card {
		flex-basis: 100%;
	}

	.blog-archive__heading h1 {
		font-size: 26px;
	}

	.blog-card {
		flex-basis: 100%;
	}

	.blog-card__image-link {
		height: 190px;
	}

	.single-post-card__content,
	.single-related-posts,
	.comments-area {
		padding: 22px;
	}

	.single-post-card__header {
		min-height: 132px;
		padding: 26px 24px;
	}

	.single-post-card__title {
		font-size: 25px;
	}

	.single-related-posts__list .blog-card {
		flex-basis: 100%;
	}

	.single-author-box {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-page-card__header,
	.site-page-card__content {
		padding: 22px;
	}

	.site-page-card__title {
		font-size: 25px;
	}

	body.home .site-header{
		background-color: #ffffff82;
		box-shadow: 0 10px 10px 0 #0000001a;
	}

	.site-header__inner {
		gap: 0;
		padding-block: 8px;
	}

	.site-header__nav-group {
		gap: 0;
	}

	.site-logo img,
	.custom-logo {
		width: 72px;
	}

	.site-header__actions {
		flex: 0 0 auto;
		justify-content: center;
	}

	.header-auth {
		gap: 0;
		width: 44px;
		height: 44px;
		padding: 0;
	}

	.header-auth__icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}

	.site-header__mobile-panel {
		width: min(86vw, 320px);
		padding: 20px;
	}

	.site-header__mobile-support {
		gap: 8px;
		/* justify-content: flex-start; */
	}

	.site-header__mobile-support-number {
		font-size: 16px;
	}

	.site-header__mobile-support-badge {
		padding-inline: 10px;
		font-size: 12px;
	}

	.site-footer__top {
		gap: 36px;
		padding-bottom: 34px;
	}

	.site-footer__about {
		align-items: flex-start;
		text-align: right;
	}

	.site-footer__about p {
		font-size: 14px;
		line-height: 1.9;
	}

	.site-footer__socials {
		align-self: center;
	}

	.site-footer__menus {
		flex-direction: column;
		gap: 34px;
	}

	.site-footer__menu {
		flex-basis: auto;
		width: 100%;
	}

	.site-footer__menu h3 {
		margin-bottom: 18px;
		font-size: 16px;
	}

	.site-footer__menu ul {
		gap: 14px;
	}

	.site-footer__middle {
		padding: 28px 0 32px;
	}

	.site-footer__trust {
		align-items: center;
		justify-content: flex-start;
	}

	.site-footer__contact-item {
		gap: 12px;
	}

	.site-footer__contact-item strong {
		font-size: 14px;
		white-space: normal;
	}

	.site-footer__copyright {
		min-height: 76px;
		padding: 0 82px 0 18px;
	}

	.site-footer__copyright p {
		font-size: 13px;
	}

	.site-footer__back-top {
		width: 72px;
		height: 76px;
	}

}


.jalali-range-picker {
	position: absolute;
	z-index: 1000;
	display: none;
	width: 320px;
	padding: 16px;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
}

.jalali-range-picker.is-open {
	display: block;
	z-index: 9999;
}

.jalali-range-picker__header,
.jalali-range-picker__weekdays,
.jalali-range-picker__days {
	display: flex;
}

.jalali-range-picker__header {
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.jalali-range-picker__title {
	color: var(--mashhadotagh-text);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
}

.jalali-range-picker__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 10px;
	background: #eef3ff;
	color: var(--mashhadotagh-primary);
	font-family: var(--mashhadotagh-font-family);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.jalali-range-picker__weekdays {
	align-items: center;
	margin-bottom: 8px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 700;
}

.jalali-range-picker__weekdays span,
.jalali-range-picker__empty,
.jalali-range-picker__day {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 14.285%;
	height: 38px;
}

.jalali-range-picker__days {
	flex-wrap: wrap;
	align-items: center;
}

.jalali-range-picker__day {
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--mashhadotagh-text);
	font-family: var(--mashhadotagh-font-family);
	font-size: 14px;
	cursor: pointer;
}

.jalali-range-picker__day:hover,
.jalali-range-picker__day:focus {
	background: #eef3ff;
	color: var(--mashhadotagh-primary);
}

.jalali-range-picker__day.is-today {
	box-shadow: inset 0 0 0 1px var(--mashhadotagh-secondary);
}

.jalali-range-picker__day.is-start,
.jalali-range-picker__day.is-end {
	background: var(--mashhadotagh-primary);
	color: #ffffff;
}

.jalali-range-picker__day.is-in-range {
	background: #eef3ff;
	color: var(--mashhadotagh-primary); 
}

.jalali-range-picker__day:disabled {
	color: #c7c7c7;
	cursor: not-allowed;
}

.jalali-range-picker__day:disabled:hover,
.jalali-range-picker__day:disabled:focus {
	background: transparent;
	color: #c7c7c7;
}
