

			/* ---------------------------------------------------------------
		 * Booking success popup
		 * --------------------------------------------------------------- */
.eden-booking-spinner{
	width:42px;
	height:42px;
	margin:auto;
	border:4px solid #d8eedd;
	border-top-color:#157a4b;
	border-radius:50%;
	animation:edenBookingSpin .8s linear infinite;
}

@keyframes edenBookingSpin{
	to{
		transform:rotate(360deg);
	}
}

.eden-login-gate-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.eden-login-gate-modal.is-open {
	display: flex;
}

.eden-login-gate-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 12, 20, 0.62);
	backdrop-filter: blur(4px);
}

.eden-login-gate-modal__box {
	position: relative;
	z-index: 1;
	width: min(100%, 410px);
	padding: 34px 28px 26px;
	text-align: center;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.eden-login-gate-modal__close {
	position: absolute;
	top: 10px;
	left: 14px;
	border: 0;
	background: transparent;
	font-size: 30px;
	line-height: 1;
	color: #777;
	cursor: pointer;
}

.eden-login-gate-modal__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #f8edf2;
	font-size: 28px;
}

.eden-login-gate-modal__box h3 {
	margin: 0 0 10px;
	font-size: 20px;
	color: #24131c;
}

.eden-login-gate-modal__box p {
	margin: 0 0 22px;
	line-height: 2;
	color: #6c5a62;
}

.eden-login-gate-modal__button {
	display: block;
	width: 100%;
	padding: 13px 18px;
	border-radius: 12px;
	background: #9c3159;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	transition: 0.2s ease;
}

.eden-login-gate-modal__button:hover {
	background: #7e2345;
	transform: translateY(-1px);
}

.eden-login-gate-modal__cancel {
	margin-top: 13px;
	border: 0;
	background: transparent;
	color: #777;
	cursor: pointer;
	font: inherit;
}

body.eden-login-gate-open {
	overflow: hidden;
}

		.eden-booking-success-modal {
			display: none;
			position: fixed;
			inset: 0;
			z-index: 999999;
			align-items: center;
			justify-content: center;
			padding: 18px;
			direction: rtl;
		}

		.eden-booking-success-modal.is-open {
			display: flex;
		}

		.eden-booking-success-modal__overlay {
			position: absolute;
			inset: 0;
			background: rgba(13, 39, 26, 0.62);
			backdrop-filter: blur(4px);
			-webkit-backdrop-filter: blur(4px);
		}

		.eden-booking-success-modal__box {
			position: relative;
			z-index: 2;
			width: min(100%, 440px);
			max-height: calc(100vh - 36px);
			overflow-y: auto;
			padding: 30px 24px 24px;
			border: 1px solid rgba(21, 122, 75, 0.18);
			border-radius: 22px;
			background: #ffffff;
			box-shadow: 0 22px 65px rgba(0, 0, 0, 0.3);
			text-align: center;
			animation: eden-booking-modal-show .25s ease-out;
		}

		@keyframes eden-booking-modal-show {
			from {
				opacity: 0;
				transform: translateY(18px) scale(.97);
			}

			to {
				opacity: 1;
				transform: translateY(0) scale(1);
			}
		}

		.eden-booking-success-modal__close {
			position: absolute;
			top: 12px;
			left: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 34px;
			height: 34px;
			padding: 0;
			border: 0;
			border-radius: 50%;
			background: #edf5f0;
			color: #315441;
			font-size: 25px;
			line-height: 1;
			cursor: pointer;
			transition: background .2s ease, transform .2s ease;
		}

		.eden-booking-success-modal__close:hover {
			background: #dcefe3;
			transform: rotate(90deg);
		}

		.eden-booking-success-modal__icon {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 66px;
			height: 66px;
			margin: 0 auto 14px;
			border-radius: 50%;
			background: var(--eden-green-light);
			color: var(--eden-green);
			font-size: 35px;
			font-weight: 800;
			box-shadow: inset 0 0 0 1px var(--eden-green-border);
		}

		.eden-booking-success-modal h3 {
			margin: 0 0 18px;
			color: var(--eden-green-dark);
			font-size: 19px;
			font-weight: 800;
		}

		.eden-booking-success-details {
			text-align: right;
		}

		.eden-booking-success-details__row {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			gap: 14px;
			padding: 10px 0;
			border-bottom: 1px solid #edf2ee;
			color: var(--eden-muted);
			font-size: 14px;
			line-height: 1.8;
		}

		.eden-booking-success-details__row:last-of-type {
			border-bottom: 0;
		}

		.eden-booking-success-details__row strong {
			max-width: 65%;
			color: var(--eden-text);
			font-weight: 700;
			text-align: left;
		}

		.eden-booking-success-details__message {
			margin: 17px 0 0;
			padding: 12px 14px;
			border-radius: 12px;
			background: var(--eden-green-light);
			color: var(--eden-green-dark);
			font-size: 14px;
			font-weight: 600;
			line-height: 2;
			text-align: center;
		}

		.eden-booking-success-modal__button {
			width: 100%;
			margin-top: 20px;
			padding: 13px 16px;
			border: 0;
			border-radius: 12px;
			background: var(--eden-green);
			color: #fff;
			font: inherit;
			font-size: 15px;
			font-weight: 700;
			cursor: pointer;
			transition: background .2s ease, transform .2s ease;
		}

		.eden-booking-success-modal__button:hover {
			background: var(--eden-green-dark);
			transform: translateY(-1px);
		}

		body.eden-booking-modal-open {
			overflow: hidden;
		}

		@media (max-width: 480px) {
			.eden-booking-success-modal__box {
				padding: 28px 18px 18px;
				border-radius: 18px;
			}

			.eden-booking-success-details__row {
				gap: 8px;
				font-size: 13px;
			}
		}

	
	
		#eden-booking-app {
			--eden-green: #157a4b;
			--eden-green-dark: #0e5c38;
			--eden-green-light: #e6f4ec;
			--eden-green-border: #bfe3cf;
			--eden-text: #1f2d26;
			--eden-muted: #6b7d72;
			--eden-radius: 14px;

			max-width: 720px;
			margin: 30px auto;
			padding: 28px 24px;
			background: #ffffff;
			border: 1px solid var(--eden-green-border);
			border-radius: 20px;
			box-shadow: 0 10px 35px rgba(21, 122, 75, 0.08);
			color: var(--eden-text);
			line-height: 1.8;
		}

		#eden-booking-app * {
			box-sizing: border-box;
		}

		/* --- Steps --- */

		#eden-booking-app .eden-step {
			margin-bottom: 28px;
		}

		#eden-booking-app .eden-step-title {
			display: flex;
			align-items: center;
			gap: 10px;
			font-weight: 700;
			font-size: 16px;
			margin-bottom: 12px;
		}

		#eden-booking-app .eden-step-num {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 30px;
			height: 30px;
			border-radius: 50%;
			background: var(--eden-green);
			color: #fff;
			font-size: 14px;
			flex-shrink: 0;
		}

		#eden-booking-app .eden-hint {
			color: var(--eden-muted);
			font-size: 14px;
			margin: 4px 0;
		}

		/* --- Inputs --- */

		#eden-booking-app select,
		#eden-booking-app input[type="text"],
		#eden-booking-app input[type="tel"],
		#eden-booking-app textarea {
			width: 100%;
			padding: 12px 14px;
			margin: 4px 0 12px;
			border: 1.5px solid var(--eden-green-border);
			border-radius: var(--eden-radius);
			background: #fff;
			font: inherit;
			color: var(--eden-text);
			transition: border-color .2s, box-shadow .2s;
		}

		#eden-booking-app select:focus,
		#eden-booking-app input:focus,
		#eden-booking-app textarea:focus {
			outline: none;
			border-color: var(--eden-green);
			box-shadow: 0 0 0 3px rgba(21, 122, 75, 0.15);
		}

		/* --- Service cards --- */

		#eden-booking-app .eden-services {
			display: flex;
			flex-direction: column;
			gap: 10px;
		}

		#eden-booking-app .eden-service-card {
			display: flex;
			align-items: center;
			gap: 12px;
			padding: 12px 16px;
			border: 1.5px solid var(--eden-green-border);
			border-radius: var(--eden-radius);
			cursor: pointer;
			transition: border-color .2s, background .2s;
			margin: 0;
		}

		#eden-booking-app .eden-service-card:hover {
			border-color: var(--eden-green);
		}

		#eden-booking-app .eden-service-card.is-checked {
			border-color: var(--eden-green);
			background: var(--eden-green-light);
		}

		#eden-booking-app .eden-service-card input[type="checkbox"] {
			width: 20px;
			height: 20px;
			margin: 0;
			flex-shrink: 0;
			accent-color: var(--eden-green);
			cursor: pointer;
		}

		#eden-booking-app .eden-service-name {
			font-weight: 600;
			flex-grow: 1;
		}

		#eden-booking-app .eden-service-meta {
			display: flex;
			flex-direction: column;
			align-items: flex-end;
			gap: 2px;
			flex-shrink: 0;
			text-align: left;
		}

		#eden-booking-app .eden-service-duration {
			font-size: 13px;
			color: var(--eden-muted);
		}

		#eden-booking-app .eden-service-price {
			font-size: 14px;
			font-weight: 700;
			color: var(--eden-green-dark);
		}

		#eden-booking-app .eden-cart-summary {
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			gap: 8px;
			margin-top: 12px;
			padding: 12px 16px;
			border-radius: var(--eden-radius);
			background: var(--eden-green);
			color: #fff;
			font-weight: 600;
			font-size: 14px;
		}

		/* --- Calendar --- */

		#eden-booking-app .eden-calendar {
			border: 1.5px solid var(--eden-green-border);
			border-radius: var(--eden-radius);
			padding: 16px;
			background: #fff;
		}

		#eden-booking-app .eden-cal-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 12px;
		}

		#eden-booking-app .eden-cal-title {
			font-weight: 700;
			font-size: 16px;
			color: var(--eden-green-dark);
		}

		#eden-booking-app .eden-cal-nav {
			width: 36px;
			height: 36px;
			border: 1.5px solid var(--eden-green-border);
			border-radius: 10px;
			background: #fff;
			color: var(--eden-green);
			font-size: 20px;
			line-height: 1;
			cursor: pointer;
			transition: background .2s;
		}

		#eden-booking-app .eden-cal-nav:hover:not(:disabled) {
			background: var(--eden-green-light);
		}

		#eden-booking-app .eden-cal-nav:disabled {
			opacity: 0.35;
			cursor: default;
		}

		#eden-booking-app .eden-cal-weekdays,
		#eden-booking-app .eden-cal-grid {
			display: grid;
			grid-template-columns: repeat(7, 1fr);
			gap: 6px;
		}

		#eden-booking-app .eden-cal-weekdays span {
			text-align: center;
			font-size: 13px;
			font-weight: 700;
			color: var(--eden-muted);
			padding: 4px 0;
		}

		#eden-booking-app .eden-cal-day {
			aspect-ratio: 1;
			display: flex;
			align-items: center;
			justify-content: center;
			border: 1.5px solid transparent;
			border-radius: 10px;
			background: var(--eden-green-light);
			color: var(--eden-text);
			font: inherit;
			font-size: clamp(12px, 3.5vw, 15px); /* به‌جای 15px ثابت */
			cursor: pointer;
			transition: background .15s, border-color .15s, transform .1s;
		}

		#eden-booking-app .eden-cal-day:hover:not(.is-disabled) {
			border-color: var(--eden-green);
			transform: scale(1.05);
		}

		#eden-booking-app .eden-cal-day.is-today {
			font-weight: 700;
		}

		#eden-booking-app .eden-cal-day.is-selected {
			background: var(--eden-green);
			border-color: var(--eden-green-dark);
			color: #fff;
			font-weight: 700;
		}

		#eden-booking-app .eden-cal-day.is-disabled {
			background: #f4f6f5;
			color: #c2cbc6;
			cursor: default;
		}

		/* --- Slots --- */

		#eden-booking-app .eden-slot-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
			gap: 10px;
		}

		#eden-booking-app .eden-slot {
			padding: 10px 6px;
			border: 1.5px solid var(--eden-green-border);
			border-radius: var(--eden-radius);
			background: #fff;
			color: var(--eden-text);
			font: inherit;
			font-size: 14px;
			cursor: pointer;
			transition: border-color .2s, background .2s;
		}

		#eden-booking-app .eden-slot:hover {
			border-color: var(--eden-green);
			background: var(--eden-green-light);
		}

		#eden-booking-app .eden-slot.selected {
			background: var(--eden-green);
			border-color: var(--eden-green-dark);
			color: #fff;
			font-weight: 700;
		}

		/* --- Submit button & message --- */

		#eden-booking-app .eden-btn-primary {
			width: 100%;
			padding: 14px;
			border: none;
			border-radius: var(--eden-radius);
			background: var(--eden-green);
			color: #fff;
			font: inherit;
			font-size: 16px;
			font-weight: 700;
			cursor: pointer;
			transition: background .2s;
		}

		#eden-booking-app .eden-btn-primary:hover:not(:disabled) {
			background: var(--eden-green-dark);
		}

		#eden-booking-app .eden-btn-primary:disabled {
			opacity: 0.6;
			cursor: default;
		}

		#eden-booking-app .eden-message {
			margin-top: 8px;
			font-size: 14px;
			font-weight: 600;
			min-height: 22px;
		}

		#eden-booking-app .eden-message.is-success {
			color: var(--eden-green-dark);
			background: var(--eden-green-light);
			border: 1.5px solid var(--eden-green-border);
			border-radius: var(--eden-radius);
			padding: 12px 16px;
		}

		#eden-booking-app .eden-message.is-error {
			color: #a12626;
			background: #fdeeee;
			border: 1.5px solid #f2c9c9;
			border-radius: var(--eden-radius);
			padding: 12px 16px;
		}

	/* --- اصلاحیه ریسپانسیو برای موبایل --- */
@media (max-width: 480px) {
    #eden-booking-app {
        padding: 20px 14px !important;
        margin: auto  !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    #eden-booking-app .eden-service-card {
        flex-wrap: wrap;
    }

    #eden-booking-app .eden-service-meta {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: flex-start;
        padding-right: 32px;
    }

    #eden-booking-app .eden-cal-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 6px;
    }

    #eden-booking-app .eden-cal-day {
        min-height: 36px;
        font-size: clamp(11px, 3vw, 15px);
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    #eden-booking-app .eden-cal-grid {
        gap: 4px;
    }
    
    #eden-booking-app .eden-cal-day {
        font-size: clamp(10px, 2.8vw, 13px);
        min-height: 32px;
        border-radius: 6px;
    }
    
    #eden-booking-app {
        padding: 0 4px !important;
    }
}
