/* =====================================================================
   Appointment Booking Pro — public desk
   A standalone, theme-free sheet. Everything is scoped under .abp-shell
   so the shortcode is also safe to drop inside a themed page.
   ================================================================== */

/* The site's own typeface, served from the plugin so the desk looks the
   same with or without an internet connection. */
@font-face {
	font-family: "IRANSans";
	src: url("../fonts/iransans.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "IRANSans";
	src: url("../fonts/iransans-bold.woff2") format("woff2");
	font-weight: 700;
	font-display: swap;
}

:root {
	--abp-accent: #6b8f68;
	--abp-accent-deep: #2f4030;
	--abp-surface: #f8f7f2;
	--abp-page: #e2e8e0;
	--abp-field: #dbe3d8;
	--abp-heading: #2f4030;
	--abp-label: #4a6147;

	--abp-ink: #22301f;
	--abp-ink-soft: #6d7c6b;
	--abp-line: rgba(47, 64, 48, .12);
	--abp-danger: #b4453c;
	--abp-warn: #b8863a;

	--abp-radius: 26px;
	--abp-radius-sm: 16px;
	--abp-pill: 999px;

	--abp-shadow-sm: 0 2px 6px rgba(34, 48, 31, .06);
	--abp-shadow: 0 18px 45px -22px rgba(34, 48, 31, .45);
	--abp-shadow-lg: 0 44px 90px -40px rgba(34, 48, 31, .55);

	--abp-ease: cubic-bezier(.22, 1, .36, 1);
	--abp-sans: "IRANSans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--abp-urdu: "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", "Segoe UI", Tahoma, sans-serif;
	--abp-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* ---------- standalone document reset ---------- */

html.abp-html,
body.abp-standalone {
	margin: 0;
	padding: 0;
	min-height: 100%;
	background: var(--abp-page);
	-webkit-text-size-adjust: 100%;
}

body.abp-standalone {
	font-family: var(--abp-sans);
	color: var(--abp-ink);
	overflow-x: hidden;
}

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

/* several components set display explicitly, so [hidden] needs the last word */
.abp-shell [hidden] { display: none !important; }

/* =====================================================================
   Shell & atmosphere
   ================================================================== */

.abp-shell {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(18px, 4vw, 48px) clamp(16px, 4vw, 44px);
	background:
		radial-gradient(1200px 620px at 12% -8%, rgba(255, 255, 255, .75), transparent 60%),
		radial-gradient(900px 520px at 105% 12%, rgba(107, 143, 104, .22), transparent 62%),
		var(--abp-page);
	font-family: var(--abp-sans);
	color: var(--abp-ink);
	line-height: 1.6;
	isolation: isolate;
	max-width: 100%;
	overflow-x: clip;
}

.abp-aurora {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.abp-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: .55;
	will-change: transform;
}

.abp-orb-1 {
	width: 420px;
	height: 420px;
	top: -140px;
	left: -110px;
	background: rgba(107, 143, 104, .55);
	animation: abp-drift-a 22s var(--abp-ease) infinite alternate;
}

.abp-orb-2 {
	width: 340px;
	height: 340px;
	bottom: -120px;
	right: -80px;
	background: rgba(47, 64, 48, .32);
	animation: abp-drift-b 27s var(--abp-ease) infinite alternate;
}

.abp-orb-3 {
	width: 260px;
	height: 260px;
	top: 44%;
	left: 46%;
	background: rgba(255, 255, 255, .7);
	animation: abp-drift-c 19s var(--abp-ease) infinite alternate;
}

@keyframes abp-drift-a { to { transform: translate3d(90px, 70px, 0) scale(1.15); } }
@keyframes abp-drift-b { to { transform: translate3d(-80px, -60px, 0) scale(1.1); } }
@keyframes abp-drift-c { to { transform: translate3d(-120px, 90px, 0) scale(.85); } }

/* =====================================================================
   Layout
   ================================================================== */

.abp-stage {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
	gap: clamp(18px, 2.6vw, 34px);
	align-items: start;
	max-width: 1240px;
	margin: 0 auto;
}

/* ---------- side rail ---------- */

.abp-aside {
	position: sticky;
	top: clamp(18px, 4vw, 48px);
	border-radius: var(--abp-radius);
	background:
		radial-gradient(520px 300px at 110% -10%, rgba(107, 143, 104, .5), transparent 65%),
		linear-gradient(168deg, var(--abp-accent-deep), color-mix(in srgb, var(--abp-accent-deep) 78%, #000));
	color: rgba(255, 255, 255, .92);
	overflow: hidden;
	box-shadow: var(--abp-shadow-lg);
	animation: abp-rise .8s var(--abp-ease) both;
}

.abp-aside::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(115deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 11px);
	pointer-events: none;
}

.abp-aside-inner {
	position: relative;
	padding: clamp(26px, 3vw, 38px);
}

.abp-brandmark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 20px;
	border-radius: 22px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .16);
	color: #fff;
	backdrop-filter: blur(6px);
	animation: abp-float 6s ease-in-out infinite;
}

.abp-brandmark img,
.abp-brandmark .abp-emblem {
	display: block;
	width: 46px;
	height: 46px;
	object-fit: contain;
}

/* the bundled emblem is a dark shape; invert it on the dark rail */
.abp-brandmark .abp-emblem { filter: brightness(0) invert(1); opacity: .95; }

@keyframes abp-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.abp-aside-title {
	margin: 0;
	font-size: clamp(1.25rem, 1.8vw, 1.55rem);
	font-weight: 800;
	letter-spacing: -.01em;
	line-height: 1.25;
	color: #fff;
}

.abp-aside-tagline {
	margin: 8px 0 26px;
	font-size: .9rem;
	color: rgba(255, 255, 255, .62);
}

.abp-aside-facts {
	list-style: none;
	margin: 0;
	padding: 22px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .14);
}

.abp-aside-facts li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 2px 14px;
	padding: 11px 0;
	border-bottom: 1px dashed rgba(255, 255, 255, .1);
}

.abp-aside-facts li:last-child { border-bottom: 0; }

.abp-fact-key {
	flex: 1 1 auto;
	min-width: 0;
	font-size: .78rem;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
}

.abp-fact-val {
	flex: 0 0 auto;
	font-size: .9rem;
	font-weight: 700;
	color: #fff;
	text-align: right;
	white-space: nowrap;
}

.abp-aside-contact {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	font-size: .85rem;
	color: rgba(255, 255, 255, .62);
}

.abp-aside-contact p { margin: 0 0 6px; }

/* ---------- today's expected visitors ---------- */

.abp-aside-today {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
	padding: 16px 18px;
	border-radius: var(--abp-radius-sm);
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .14);
}

.abp-today-count {
	flex: 0 0 auto;
	min-width: 52px;
	padding: 6px 10px;
	border-radius: 14px;
	background: var(--abp-accent);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
}

.abp-today-label {
	font-size: .8rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, .78);
}

/* ---------- punctuality note ---------- */

.abp-aside-note {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	padding: 16px 18px;
	border-radius: var(--abp-radius-sm);
	background: rgba(0, 0, 0, .18);
	border-left: 3px solid var(--abp-accent);
}

.abp-note-icon {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: var(--abp-accent);
	opacity: .9;
}

.abp-aside-note p {
	margin: 0;
	font-size: .82rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, .8);
}

/* ---------- main panel ---------- */

.abp-main { min-width: 0; }

.abp-panel {
	position: relative;
	padding: clamp(24px, 3.4vw, 46px);
	border-radius: var(--abp-radius);
	background: var(--abp-surface);
	box-shadow: var(--abp-shadow-lg);
	overflow: hidden;
	animation: abp-rise .9s .08s var(--abp-ease) both;
}

.abp-panel::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--abp-accent), transparent);
	opacity: .8;
}

@keyframes abp-rise {
	from { opacity: 0; transform: translateY(26px) scale(.985); }
	to { opacity: 1; transform: none; }
}

.abp-head {
	text-align: center;
	margin-bottom: 30px;
}

.abp-head-mark {
	display: inline-flex;
	color: var(--abp-accent-deep);
	margin-bottom: 14px;
}

.abp-head-mark img { width: 58px; height: 58px; object-fit: contain; }

.abp-title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.2;
	color: var(--abp-heading);
}

/* ---------- titled groups inside a step ---------- */

.abp-section {
	margin: 0 0 22px;
	padding: 18px 18px 6px;
	border-radius: var(--abp-radius-sm);
	background: rgba(255, 255, 255, .5);
	border: 1px solid rgba(47, 64, 48, .07);
}

.abp-section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: -4px 0 16px;
}

.abp-section-num {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	flex: 0 0 auto;
	border-radius: 9px;
	background: var(--abp-accent);
	color: #fff;
	font-size: .74rem;
	font-weight: 800;
}

.abp-section-head h3 {
	margin: 0;
	font-size: .84rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--abp-heading);
}

.abp-section-head p {
	margin: 2px 0 0;
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--abp-ink-soft);
}

.abp-subtitle {
	margin: 10px auto 0;
	max-width: 46ch;
	font-size: .98rem;
	color: var(--abp-ink-soft);
}

/* =====================================================================
   Stepper
   ================================================================== */

.abp-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(8px, 2vw, 26px);
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
	counter-reset: abp;
}

.abp-steps li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--abp-ink-soft);
	font-size: .86rem;
	font-weight: 600;
	transition: color .35s var(--abp-ease);
}

.abp-steps li + li::before {
	content: "";
	width: clamp(16px, 4vw, 46px);
	height: 2px;
	margin-right: 4px;
	border-radius: 2px;
	background: var(--abp-line);
	transition: background .4s var(--abp-ease);
}

.abp-steps li span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--abp-field);
	color: var(--abp-accent-deep);
	font-size: .85rem;
	font-weight: 800;
	transition: transform .4s var(--abp-ease), background .35s, color .35s, box-shadow .35s;
}

.abp-steps li em { font-style: normal; }

.abp-steps li.is-active { color: var(--abp-accent-deep); }

.abp-steps li.is-active span {
	background: var(--abp-accent);
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 0 0 6px rgba(107, 143, 104, .16);
}

.abp-steps li.is-done span {
	background: var(--abp-accent-deep);
	color: #fff;
}

.abp-steps li.is-done + li::before,
.abp-steps li.is-active + li::before { background: var(--abp-accent); }

/* =====================================================================
   Steps & fields
   ================================================================== */

.abp-step { display: none; }

.abp-step.is-active {
	display: block;
	animation: abp-step-in .5s var(--abp-ease) both;
}

.abp-step.is-active.is-back { animation-name: abp-step-in-back; }

@keyframes abp-step-in {
	from { opacity: 0; transform: translateX(26px); }
	to { opacity: 1; transform: none; }
}

@keyframes abp-step-in-back {
	from { opacity: 0; transform: translateX(-26px); }
	to { opacity: 1; transform: none; }
}

.abp-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 18px;
}

.abp-field { margin-bottom: 18px; }

.abp-field > label,
.abp-field-label {
	display: inline-block;
	margin: 0 0 8px 4px;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--abp-label);
	cursor: default;
}

.abp-field > label[data-ur],
.abp-field-label[data-ur],
.abp-steps em[data-ur],
.abp-consent span[data-ur] {
	position: relative;
	border-bottom: 1px dotted rgba(47, 64, 48, .35);
	cursor: help;
}

.abp-control {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: var(--abp-pill);
	background: var(--abp-field);
	box-shadow: inset 0 0 0 1px rgba(47, 64, 48, .04), var(--abp-shadow-sm);
	transition: box-shadow .3s var(--abp-ease), transform .3s var(--abp-ease), background .3s;
}

.abp-control:focus-within {
	background: #fff;
	transform: translateY(-2px);
	box-shadow:
		inset 0 0 0 2px var(--abp-accent),
		0 14px 28px -18px rgba(47, 64, 48, .6);
}

.abp-control .abp-icon {
	position: absolute;
	left: 20px;
	width: 20px;
	height: 20px;
	color: var(--abp-accent-deep);
	opacity: .55;
	pointer-events: none;
	transition: opacity .3s, transform .3s var(--abp-ease);
}

.abp-control:focus-within .abp-icon {
	opacity: 1;
	transform: scale(1.06);
}

.abp-control input,
.abp-control select,
.abp-control textarea {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	padding: 17px 20px 17px 52px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--abp-ink);
	border-radius: inherit;
	appearance: none;
	-webkit-appearance: none;
}

.abp-control input::placeholder,
.abp-control textarea::placeholder {
	color: rgba(47, 64, 48, .4);
}

.abp-control select {
	cursor: pointer;
	padding-right: 46px;
}

.abp-select-chevron {
	position: absolute;
	right: 18px;
	left: auto !important;
	width: 22px;
	height: 22px;
	opacity: .5;
	pointer-events: none;
}

.abp-control-area {
	border-radius: var(--abp-radius-sm);
	align-items: flex-start;
}

.abp-control-area textarea {
	padding: 16px 20px;
	min-height: 118px;
	resize: vertical;
	line-height: 1.65;
}

.abp-counter {
	position: absolute;
	right: 18px;
	font-size: .74rem;
	font-weight: 700;
	font-family: var(--abp-mono);
	color: var(--abp-ink-soft);
	letter-spacing: .02em;
	pointer-events: none;
	transition: color .25s;
}

.abp-counter.is-full { color: var(--abp-accent); }
.abp-counter.is-over { color: var(--abp-danger); }

.abp-note {
	min-height: 18px;
	margin: 6px 6px 0;
	font-size: .79rem;
	line-height: 1.45;
	color: var(--abp-ink-soft);
}

.abp-note-hint { color: rgba(47, 64, 48, .5); }

.abp-field.is-invalid .abp-control {
	background: #fdf2f1;
	box-shadow: inset 0 0 0 2px var(--abp-danger);
	animation: abp-shake .42s var(--abp-ease);
}

.abp-field.is-invalid .abp-note {
	color: var(--abp-danger);
	font-weight: 600;
}

/* the calendar and the slot grid have no .abp-control to highlight */
.abp-field.is-invalid .abp-calendar,
.abp-field.is-invalid .abp-slots {
	box-shadow: inset 0 0 0 2px var(--abp-danger);
	animation: abp-shake .42s var(--abp-ease);
}

.abp-field.is-valid .abp-control {
	box-shadow: inset 0 0 0 1.5px rgba(107, 143, 104, .55), var(--abp-shadow-sm);
}

@keyframes abp-shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-7px); }
	40% { transform: translateX(6px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(3px); }
}

.abp-chars {
	float: right;
	font-family: var(--abp-mono);
	font-size: .74rem;
	opacity: .65;
}

/* =====================================================================
   Calendar
   ================================================================== */

.abp-calendar {
	padding: 16px;
	border-radius: var(--abp-radius-sm);
	background: var(--abp-field);
	box-shadow: var(--abp-shadow-sm);
}

.abp-cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.abp-cal-head strong {
	font-size: 1rem;
	font-weight: 800;
	color: var(--abp-accent-deep);
	letter-spacing: -.01em;
}

.abp-cal-nav {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .7);
	color: var(--abp-accent-deep);
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: transform .25s var(--abp-ease), background .25s;
}

.abp-cal-nav:hover:not(:disabled) {
	background: #fff;
	transform: scale(1.1);
}

.abp-cal-nav:disabled { opacity: .3; cursor: not-allowed; }

.abp-cal-dow,
.abp-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}

.abp-cal-dow {
	margin-bottom: 6px;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: rgba(47, 64, 48, .45);
	text-align: center;
}

.abp-cal-day {
	position: relative;
	aspect-ratio: 1;
	/* square on a phone, but never a giant tile on a wide panel */
	max-height: 54px;
	min-height: 38px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 13px;
	background: transparent;
	font-family: inherit;
	font-size: .92rem;
	font-weight: 600;
	color: var(--abp-accent-deep);
	cursor: pointer;
	transition: transform .25s var(--abp-ease), background .25s, color .25s, box-shadow .25s;
	animation: abp-pop .35s var(--abp-ease) both;
}

.abp-cal-day.is-blank {
	visibility: hidden;
	pointer-events: none;
}

.abp-cal-day:hover:not(:disabled) {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: var(--abp-shadow-sm);
}

.abp-cal-day:disabled {
	color: rgba(47, 64, 48, .25);
	cursor: not-allowed;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}

.abp-cal-day.is-selected {
	background: var(--abp-accent);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(107, 143, 104, .2);
	transform: translateY(-2px);
}

.abp-cal-day.is-today::after {
	content: "";
	position: absolute;
	bottom: 6px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--abp-accent-deep);
}

.abp-cal-day.is-selected.is-today::after { background: #fff; }

.abp-cal-day .abp-cal-dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.abp-cal-day .abp-cal-dot.open { background: var(--abp-accent); }
.abp-cal-day .abp-cal-dot.few { background: var(--abp-warn); }
.abp-cal-day.is-selected .abp-cal-dot { background: #fff !important; }

@keyframes abp-pop {
	from { opacity: 0; transform: scale(.82); }
	to { opacity: 1; transform: none; }
}

.abp-cal-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed rgba(47, 64, 48, .16);
	font-size: .74rem;
	color: var(--abp-ink-soft);
}

.abp-cal-legend span { display: inline-flex; align-items: center; gap: 6px; }

.abp-cal-legend .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

.abp-cal-legend .dot.open { background: var(--abp-accent); }
.abp-cal-legend .dot.few { background: var(--abp-warn); }
.abp-cal-legend .dot.closed { background: rgba(47, 64, 48, .22); }

.abp-cal-loading {
	position: relative;
	pointer-events: none;
}

.abp-cal-loading .abp-cal-grid { opacity: .35; }

/* =====================================================================
   Time slots
   ================================================================== */

.abp-slots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
	gap: 9px;
	min-height: 62px;
	padding: 16px;
	border-radius: var(--abp-radius-sm);
	background: var(--abp-field);
	box-shadow: var(--abp-shadow-sm);
}

.abp-slots-empty,
.abp-slots-msg {
	grid-column: 1 / -1;
	margin: 0;
	padding: 10px 4px;
	text-align: center;
	font-size: .88rem;
	color: var(--abp-ink-soft);
}

.abp-slot {
	position: relative;
	padding: 12px 6px;
	border: 0;
	border-radius: 13px;
	background: rgba(255, 255, 255, .75);
	font-family: var(--abp-mono);
	font-size: .87rem;
	font-weight: 700;
	letter-spacing: .01em;
	color: var(--abp-accent-deep);
	cursor: pointer;
	overflow: hidden;
	transition: transform .25s var(--abp-ease), background .25s, color .25s, box-shadow .25s;
	animation: abp-pop .3s var(--abp-ease) both;
}

.abp-slot:hover:not(:disabled) {
	background: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 22px -14px rgba(47, 64, 48, .7);
}

.abp-slot.is-selected {
	background: var(--abp-accent);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(107, 143, 104, .2);
	transform: translateY(-3px);
}

.abp-slot:disabled {
	background: rgba(255, 255, 255, .28);
	color: rgba(47, 64, 48, .32);
	cursor: not-allowed;
}

.abp-slot.is-taken { text-decoration: line-through; }

/* remaining places, shown only when a slot seats more than one visitor */
.abp-slot-left {
	position: absolute;
	top: 4px;
	right: 5px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(107, 143, 104, .22);
	color: var(--abp-accent-deep);
	font-family: var(--abp-sans);
	font-size: .62rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
}

.abp-slot-left.is-last { background: rgba(184, 134, 58, .28); color: #7d5a1c; }
.abp-slot.is-selected .abp-slot-left { background: rgba(255, 255, 255, .3); color: #fff; }

.abp-slot-break {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 16px;
	border-radius: 13px;
	background: repeating-linear-gradient(
		135deg,
		rgba(47, 64, 48, .09) 0 8px,
		rgba(47, 64, 48, .04) 8px 16px
	);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--abp-accent-deep);
	animation: abp-pop .3s var(--abp-ease) both;
}

.abp-slot-break svg { width: 17px; height: 17px; opacity: .7; }

.abp-slots.is-loading { opacity: .5; }

/* =====================================================================
   Review, consent, alert
   ================================================================== */

.abp-review {
	margin-bottom: 22px;
	padding: 20px 22px;
	border-radius: var(--abp-radius-sm);
	background: linear-gradient(160deg, rgba(107, 143, 104, .12), rgba(107, 143, 104, .04));
	border: 1px solid rgba(107, 143, 104, .22);
}

.abp-review h3 {
	margin: 0 0 14px;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--abp-accent);
}

.abp-review dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 9px 18px;
	margin: 0;
}

.abp-review dt {
	font-size: .8rem;
	color: var(--abp-ink-soft);
	white-space: nowrap;
}

.abp-review dd {
	margin: 0;
	font-size: .92rem;
	font-weight: 700;
	color: var(--abp-accent-deep);
	word-break: break-word;
}

.abp-captcha {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.abp-captcha-img {
	position: relative;
	flex: 0 0 auto;
	border-radius: var(--abp-radius-sm);
	overflow: hidden;
	background: var(--abp-field);
	box-shadow: var(--abp-shadow-sm);
	line-height: 0;
}

.abp-captcha-img img {
	display: block;
	width: 230px;
	height: 74px;
	max-width: 100%;
	object-fit: cover;
	user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
}

#abp-captcha-reload {
	position: absolute;
	right: 6px;
	bottom: 6px;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .88);
	color: var(--abp-accent-deep);
	cursor: pointer;
	transition: transform .4s var(--abp-ease), background .25s;
}

#abp-captcha-reload:hover {
	background: #fff;
	transform: rotate(180deg);
}

#abp-captcha-reload svg { width: 16px; height: 16px; }

.abp-captcha .abp-control {
	flex: 1 1 170px;
	min-width: 150px;
}

.abp-captcha .abp-control input {
	font-family: var(--abp-mono);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: .45em;
	text-align: center;
	padding-left: 46px;
	padding-right: 10px;
}

.abp-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 4px 0 24px;
	padding: 14px 16px;
	border-radius: var(--abp-radius-sm);
	background: rgba(255, 255, 255, .6);
	font-size: .88rem;
	color: var(--abp-ink-soft);
	cursor: pointer;
	transition: background .25s;
}

.abp-consent:hover { background: #fff; }

.abp-consent input {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	accent-color: var(--abp-accent);
	cursor: pointer;
}

.abp-alert {
	display: none;
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: var(--abp-radius-sm);
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.55;
}

.abp-alert.is-error {
	display: block;
	background: #fdf2f1;
	color: var(--abp-danger);
	border: 1px solid rgba(180, 69, 60, .25);
	animation: abp-shake .45s var(--abp-ease);
}

.abp-alert.is-info {
	display: block;
	background: rgba(107, 143, 104, .12);
	color: var(--abp-accent-deep);
	border: 1px solid rgba(107, 143, 104, .3);
}

/* =====================================================================
   Buttons
   ================================================================== */

.abp-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 26px;
}

.abp-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 34px;
	border: 0;
	border-radius: var(--abp-pill);
	background: var(--abp-accent);
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .01em;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 16px 30px -18px rgba(47, 64, 48, .9);
	transition: transform .3s var(--abp-ease), box-shadow .3s var(--abp-ease), background .25s, opacity .25s;
}

.abp-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .32) 48%, transparent 66%);
	transform: translateX(-120%);
	transition: transform .75s var(--abp-ease);
}

.abp-btn:hover:not(:disabled) {
	transform: translateY(-3px);
	box-shadow: 0 24px 42px -20px rgba(47, 64, 48, .95);
}

.abp-btn:hover:not(:disabled)::after { transform: translateX(120%); }

.abp-btn:active:not(:disabled) { transform: translateY(-1px) scale(.99); }

.abp-btn:disabled { opacity: .6; cursor: not-allowed; }

.abp-btn .abp-icon { width: 19px; height: 19px; }

.abp-btn.ghost {
	background: transparent;
	color: var(--abp-accent-deep);
	box-shadow: inset 0 0 0 1.5px rgba(47, 64, 48, .18);
}

.abp-btn.ghost:hover:not(:disabled) {
	background: rgba(47, 64, 48, .06);
	box-shadow: inset 0 0 0 1.5px rgba(47, 64, 48, .3);
}

.abp-submit { min-width: 210px; }

.abp-spinner {
	display: none;
	width: 19px;
	height: 19px;
	border: 2.5px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: abp-spin .7s linear infinite;
}

.abp-btn.is-busy .abp-btn-text { opacity: .55; }
.abp-btn.is-busy .abp-spinner { display: block; }

@keyframes abp-spin { to { transform: rotate(360deg); } }

/* =====================================================================
   Success state
   ================================================================== */

.abp-success {
	animation: abp-rise .6s var(--abp-ease) both;
}

.abp-success-head {
	text-align: center;
	margin-bottom: 26px;
}

.abp-tick {
	position: relative;
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--abp-accent);
	color: #fff;
	box-shadow: 0 0 0 0 rgba(107, 143, 104, .5);
	animation: abp-ping 1.6s var(--abp-ease) .2s 2;
}

.abp-tick svg { width: 42px; height: 42px; }

@keyframes abp-ping {
	0% { box-shadow: 0 0 0 0 rgba(107, 143, 104, .45); }
	70% { box-shadow: 0 0 0 26px rgba(107, 143, 104, 0); }
	100% { box-shadow: 0 0 0 0 rgba(107, 143, 104, 0); }
}

.abp-success h2 {
	margin: 0;
	font-size: clamp(1.35rem, 2.6vw, 1.8rem);
	font-weight: 800;
	color: var(--abp-accent-deep);
	letter-spacing: -.02em;
}

.abp-success-sub {
	margin: 10px auto 0;
	max-width: 44ch;
	font-size: .94rem;
	color: var(--abp-ink-soft);
}

.abp-success-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

.abp-success-actions .abp-btn { min-height: 50px; padding: 0 26px; font-size: .93rem; }

.abp-success-sub strong { color: var(--abp-accent-deep); font-weight: 700; }

/* ---------- the two things to quote back to us ---------- */

.abp-keys {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 12px;
	margin: 0 0 26px;
}

.abp-key {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px 20px;
	border: 1.5px dashed rgba(47, 64, 48, .22);
	border-radius: var(--abp-radius-sm);
	background: rgba(255, 255, 255, .6);
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	overflow: hidden;
	transition: border-color .25s var(--abp-ease), background .25s, transform .25s var(--abp-ease);
}

.abp-key:hover {
	background: #fff;
	border-color: var(--abp-accent);
	transform: translateY(-2px);
}

.abp-key.is-primary {
	background: linear-gradient(160deg, rgba(107, 143, 104, .16), rgba(107, 143, 104, .05));
	border-style: solid;
	border-color: rgba(107, 143, 104, .4);
}

.abp-key-label {
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--abp-label);
}

.abp-key-value {
	font-family: var(--abp-mono);
	font-size: clamp(1.15rem, 3.4vw, 1.6rem);
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.2;
	color: var(--abp-accent-deep);
	word-break: break-all;
}

.abp-key.is-primary .abp-key-value {
	font-size: clamp(1.4rem, 4.6vw, 2rem);
	color: var(--abp-accent);
}

.abp-key-token { font-size: .82rem; letter-spacing: .02em; opacity: .85; }

.abp-key-hint {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .72rem;
	font-weight: 600;
	color: var(--abp-ink-soft);
}

.abp-key-hint svg { width: 13px; height: 13px; }

/* the confirmation flash after a copy */
.abp-key::after {
	content: "Copied";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: var(--abp-accent);
	color: #fff;
	font-size: .95rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: 0;
	transform: scale(.96);
	pointer-events: none;
	transition: opacity .2s var(--abp-ease), transform .2s var(--abp-ease);
}

.abp-key.is-copied::after { opacity: 1; transform: none; }

/* the card rendered inline after a booking */
.abp-success-card { display: flex; justify-content: center; }
.abp-success .abp-card { margin: 0 auto; width: 100%; }

.abp-success-foot {
	margin: 22px 0 0;
	padding-top: 18px;
	border-top: 1px dashed var(--abp-line);
	font-size: .82rem;
	line-height: 1.75;
	color: var(--abp-ink-soft);
	text-align: center;
}

/* =====================================================================
   Urdu tooltip
   ================================================================== */

.abp-tooltip {
	position: fixed;
	z-index: 60;
	max-width: 260px;
	padding: 11px 16px 14px;
	border-radius: 14px;
	background: var(--abp-accent-deep);
	color: #fff;
	font-family: var(--abp-urdu);
	font-size: 1.02rem;
	line-height: 2.1;
	text-align: right;
	box-shadow: 0 22px 40px -20px rgba(0, 0, 0, .8);
	opacity: 0;
	transform: translateY(6px) scale(.96);
	pointer-events: none;
	transition: opacity .22s var(--abp-ease), transform .22s var(--abp-ease);
}

.abp-tooltip.is-visible {
	opacity: 1;
	transform: none;
}

.abp-tooltip::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: var(--abp-tip-x, 50%);
	width: 12px;
	height: 12px;
	margin-left: -6px;
	background: inherit;
	transform: rotate(45deg);
	border-radius: 2px;
}

.abp-tooltip.is-below::after {
	bottom: auto;
	top: -6px;
}

/* =====================================================================
   Misc
   ================================================================== */

.abp-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.abp-foot-note {
	margin: 26px 0 0;
	padding-top: 20px;
	border-top: 1px dashed var(--abp-line);
	font-size: .82rem;
	line-height: 1.7;
	color: var(--abp-ink-soft);
	text-align: center;
}

.abp-colophon {
	margin: 18px 0 0;
	text-align: center;
	font-size: .78rem;
	color: rgba(47, 64, 48, .45);
}

/* =====================================================================
   Responsive
   ================================================================== */

@media (max-width: 980px) {
	.abp-stage {
        display: grid !important;
        grid-template-columns: 1fr !important;
      }
      
      .abp-main {
        order: 1 !important; /* قرار گرفتن بخش اصلی در بالا */
      }
      
      .abp-aside {
        order: 2 !important; /* قرار گرفتن سایدبار در پایین */
      }
	.abp-aside {
		position: static;
		animation-delay: 0s;
	}

	.abp-aside-inner { padding: 24px; }

	.abp-aside-facts {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 20px;
	}
}

@media (max-width: 640px) {
	.abp-shell { padding: 14px 12px 26px; }

	.abp-row { grid-template-columns: 1fr; }

	.abp-panel { padding: 22px 18px 26px; border-radius: 22px; }

	.abp-aside-facts { grid-template-columns: 1fr; }

	.abp-aside-facts li { flex-direction: column; align-items: flex-start; }

	.abp-fact-val { text-align: left; }

	.abp-steps li em { display: none; }

	.abp-steps li + li::before { width: 26px; }

	.abp-actions { flex-direction: column-reverse; }

	.abp-actions .abp-btn { width: 100%; }

	.abp-slots { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); padding: 12px; }

	.abp-captcha { flex-direction: column; align-items: stretch; }

	.abp-captcha-img { align-self: center; }

	.abp-review dl { grid-template-columns: 1fr; gap: 2px; }

	.abp-review dd { margin-bottom: 10px; }

	.abp-tooltip { max-width: 76vw; }
}

@media (prefers-reduced-motion: reduce) {
	.abp-shell *,
	.abp-shell *::before,
	.abp-shell *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}
