/* Hayat vendor registration wizard */

.hayat-vreg-controller {
	display: none;
}

.hayat-vreg-controller.is-preview {
	display: block;
}

/* Step panel transitions */
.hayat-vreg-anim {
	transition: opacity 0.28s ease, transform 0.28s ease;
	will-change: opacity, transform;
}

.hayat-vreg-anim.is-vreg-dir-next.is-vreg-exit {
	opacity: 0;
	transform: translate3d(-28px, 0, 0);
	pointer-events: none;
}

.hayat-vreg-anim.is-vreg-dir-next.is-vreg-enter {
	opacity: 0;
	transform: translate3d(28px, 0, 0);
}

.hayat-vreg-anim.is-vreg-dir-prev.is-vreg-exit {
	opacity: 0;
	transform: translate3d(28px, 0, 0);
	pointer-events: none;
}

.hayat-vreg-anim.is-vreg-dir-prev.is-vreg-enter {
	opacity: 0;
	transform: translate3d(-28px, 0, 0);
}

.hayat-vreg-anim.is-vreg-active {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.hayat-vreg-steps__dot,
.hayat-vreg-steps__label,
.hayat-vreg-steps__item:not(:last-child)::after {
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
	.hayat-vreg-anim,
	.hayat-vreg-steps__dot,
	.hayat-vreg-steps__label,
	.hayat-vreg-steps__item:not(:last-child)::after {
		transition: none !important;
	}
}

.hayat-vreg-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1.5px dashed #4caf50;
	background: #e8f5e9;
	color: #2e7d32;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	direction: rtl;
}

.hayat-vreg-steps {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	direction: rtl;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hayat-vreg-steps__item {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
}

.hayat-vreg-steps__item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 18px;
	right: calc(50% + 22px);
	left: calc(-50% + 22px);
	border-top: 2px dashed #d0d0d0;
	z-index: 0;
	pointer-events: none;
}

.hayat-vreg-steps__item.is-completed:not(:last-child)::after,
.hayat-vreg-steps__item.is-current:not(:last-child)::after {
	border-top-color: #4caf50;
}

.hayat-vreg-steps__dot {
	position: relative;
	z-index: 1;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	background: #ececec;
	color: #222;
	box-sizing: border-box;
}

.hayat-vreg-steps__item.is-completed .hayat-vreg-steps__dot,
.hayat-vreg-steps__item.is-current .hayat-vreg-steps__dot {
	background: #4caf50;
	color: #fff;
}

.hayat-vreg-steps__item.is-current .hayat-vreg-steps__dot {
	box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.2);
}

.hayat-vreg-steps__check {
	display: none;
	width: 16px;
	height: 16px;
}

.hayat-vreg-steps__item.is-completed .hayat-vreg-steps__check,
.hayat-vreg-steps__item.is-current .hayat-vreg-steps__check {
	display: block;
}

.hayat-vreg-steps__item.is-completed .hayat-vreg-steps__num,
.hayat-vreg-steps__item.is-current .hayat-vreg-steps__num {
	display: none;
}

.hayat-vreg-steps__label {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.5;
	padding: 0 4px;
}

.hayat-vreg-steps__item.is-completed .hayat-vreg-steps__label,
.hayat-vreg-steps__item.is-current .hayat-vreg-steps__label {
	color: #4caf50;
}

.hayat-vreg-form {
	direction: rtl;
	text-align: right;
}

.hayat-vreg-form__header {
	text-align: center;
	margin-bottom: 0;
}

.hayat-vreg-form__title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	color: #111;
	line-height: 1.5;
}

.hayat-vreg-form__desc {
	margin: 0 auto;
	max-width: 520px;
	font-size: 14px;
	font-weight: 400;
	color: #666;
	line-height: 1.8;
}

.hayat-vreg-form__divider {
	border: 0;
	border-top: 1px solid #e6e6e6;
	margin: 28px 0;
}

.hayat-vreg-form__fields {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.hayat-vreg-field__label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #222;
}

.hayat-vreg-field__req {
	display: inline-block;
	margin-inline-start: 4px;
	color: #e53935;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	vertical-align: baseline;
}

/* Outer box — same pattern as comment form (.hayat-input-element) */
.hayat-vreg-field .hayat-input-element {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 52px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #f3f3f3;
	border: 1.5px solid transparent;
	box-sizing: border-box;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hayat-vreg-field .hayat-input-element.hayat-vreg-field__box--textarea {
	align-items: stretch;
	min-height: 120px;
}

.hayat-vreg-field.is-valid .hayat-input-element {
	border-color: #4caf50;
	background: #fff;
}

.hayat-vreg-field.is-invalid .hayat-input-element {
	border-color: #e53935;
	background: #fff;
}

/* Native input must be invisible — kill theme/browser chrome */
.hayat-vreg-form .style-free-input,
.hayat-vreg-form .style-free-input:focus,
.hayat-vreg-form .style-free-input:active,
.hayat-vreg-form .style-free-input:hover {
	background: transparent !important;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
	min-height: 0 !important;
	border-radius: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	font-size: 15px;
	color: #222;
	font-family: inherit;
	text-align: right;
	direction: rtl;
	line-height: 1.6;
}

.hayat-vreg-form input.style-free-input:invalid,
.hayat-vreg-form textarea.style-free-input:invalid {
	box-shadow: none !important;
	outline: none !important;
}

.hayat-vreg-field__req,
.hayat-vreg-field__req:hover {
	text-decoration: none;
	border: 0;
	cursor: default;
}

.hayat-vreg-form textarea.style-free-input {
	resize: vertical;
	min-height: 92px !important;
	line-height: 1.7;
}

.hayat-vreg-form .style-free-input::placeholder {
	color: #9a9a9a;
	opacity: 1;
}

.hayat-vreg-field__box--slug {
	gap: 8px;
}

.hayat-vreg-field__prefix {
	flex: 0 0 auto;
	font-size: 13px;
	color: #888;
	direction: ltr;
	unicode-bidi: isolate;
	white-space: nowrap;
	line-height: 1.4;
}

.hayat-vreg-field__slug,
.hayat-vreg-form .style-free-input.hayat-vreg-field__slug {
	text-align: left !important;
	direction: ltr !important;
}

.hayat-vreg-field__hint,
.hayat-vreg-field__counter {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	color: #8a8a8a;
	line-height: 1.6;
	text-align: right;
}

.hayat-vreg-field.is-invalid .hayat-vreg-field__hint {
	display: none !important;
}

.hayat-vreg-field__error {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	color: #e53935;
	line-height: 1.5;
}

.hayat-vreg-field__error[hidden] {
	display: none !important;
}

/* Step 2 — image dropzones (login/comment upload style) */
.hayat-vreg-dropzone {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 168px;
	padding: 28px 20px;
	box-sizing: border-box;
	border: 1.5px dashed #4caf50;
	border-radius: 16px;
	background: #f4f7f4;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
}

.hayat-vreg-dropzone.is-dragover {
	background: #eaf5ea;
	border-style: solid;
	box-shadow: inset 0 0 0 2px rgba(76, 175, 80, 0.15);
}

.hayat-vreg-field.is-valid .hayat-vreg-dropzone {
	border-color: #4caf50;
	border-style: dashed;
	background: #f4f7f4;
}

.hayat-vreg-field.is-invalid .hayat-vreg-dropzone {
	border-color: #e53935;
	border-style: dashed;
	background: #fff8f8;
}

.hayat-vreg-dropzone__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	pointer-events: none;
}

.hayat-vreg-dropzone.has-file .hayat-vreg-dropzone__empty {
	display: none;
}

.hayat-vreg-dropzone__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	color: #4caf50;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.hayat-vreg-dropzone__icon svg {
	display: block;
}

.hayat-vreg-dropzone__action {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
}

.hayat-vreg-dropzone__click {
	color: #4caf50;
	font-weight: 700;
}

.hayat-vreg-dropzone__text {
	color: #555;
	font-weight: 500;
}

.hayat-vreg-dropzone__hint {
	display: block;
	font-size: 12px;
	color: #8a8a8a;
	line-height: 1.6;
}

.hayat-vreg-dropzone__preview {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
}

.hayat-vreg-dropzone__preview[hidden] {
	display: none !important;
}

.hayat-vreg-dropzone.has-file .hayat-vreg-dropzone__preview {
	display: flex !important;
}

.hayat-vreg-dropzone__media {
	overflow: hidden;
	background: #fff;
	box-sizing: border-box;
}

.hayat-vreg-dropzone--circle .hayat-vreg-dropzone__media {
	width: 112px;
	height: 112px;
	border-radius: 50%;
	border: 2px solid #4caf50;
}

.hayat-vreg-dropzone--rect .hayat-vreg-dropzone__media {
	width: min(100%, 320px);
	height: 96px;
	border-radius: 14px;
}

.hayat-vreg-dropzone__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hayat-vreg-dropzone__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #e91e8c;
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	line-height: 1.4;
	cursor: pointer;
}

.hayat-vreg-dropzone__remove:hover {
	opacity: 0.85;
}

.hayat-vreg-dropzone__trash {
	display: block;
	flex: 0 0 auto;
}

.hayat-vreg-dropzone__remove-text {
	line-height: 1;
}

.hayat-vreg-dropzone__input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Step 3 — product categories */
.hayat-vreg-cats {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-height: 360px;
	overflow-x: hidden;
	overflow-y: auto;
	padding-left: 4px;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.hayat-vreg-cats::-webkit-scrollbar {
	width: 6px;
}

.hayat-vreg-cats::-webkit-scrollbar-thumb {
	background: #cfcfcf;
	border-radius: 999px;
}

.hayat-vreg-cats::-webkit-scrollbar-track {
	background: transparent;
}

.hayat-vreg-cats__empty {
	margin: 0;
	padding: 16px;
	text-align: center;
	color: #888;
	font-size: 14px;
}

.hayat-vreg-cat {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 14px;
	box-sizing: border-box;
	border: 1.5px dashed transparent;
	border-radius: 18px;
	background: #f3f3f3;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	direction: rtl;
	text-align: right;
}

.hayat-vreg-cat.is-selected {
	background: #eaf6ea;
	border-color: #4caf50;
}

.hayat-vreg-field.is-invalid .hayat-vreg-cats {
	outline: none;
}

.hayat-vreg-field.is-invalid .hayat-vreg-cat {
	box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.25);
}

.hayat-vreg-cat__thumb {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hayat-vreg-cat__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hayat-vreg-cat__thumb-fallback {
	display: inline-flex;
	color: #b0b0b0;
}

.hayat-vreg-cat__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hayat-vreg-cat__title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #111;
	line-height: 1.4;
}

.hayat-vreg-cat__desc {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #888;
	line-height: 1.5;
}

.hayat-vreg-cat__check {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 7px;
	border: 1.5px solid #ddd;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-sizing: border-box;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hayat-vreg-cat__tick {
	display: none;
}

.hayat-vreg-cat.is-selected .hayat-vreg-cat__check {
	background: #4caf50;
	border-color: #4caf50;
}

.hayat-vreg-cat.is-selected .hayat-vreg-cat__tick {
	display: block;
}

.hayat-vreg-cat__input {
	position: absolute !important;
	opacity: 0 !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	pointer-events: none !important;
}

/* Step 4 — address + custom location selects */
.hayat-vreg-select {
	position: relative;
	width: 100%;
}

.hayat-vreg-select.is-disabled {
	opacity: 0.65;
	pointer-events: none;
}

.hayat-vreg-select__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 52px;
	padding: 14px 16px;
	border: 1.5px solid transparent;
	border-radius: 14px;
	background: #f3f3f3;
	box-sizing: border-box;
	cursor: pointer;
	font: inherit;
	text-align: right;
	direction: rtl;
	color: #222;
}

.hayat-vreg-field.is-valid .hayat-vreg-select__trigger {
	border-color: #4caf50;
	background: #fff;
}

.hayat-vreg-field.is-invalid .hayat-vreg-select__trigger {
	border-color: #e53935;
	background: #fff;
}

.hayat-vreg-select.is-open .hayat-vreg-select__trigger {
	border-color: #4caf50;
}

.hayat-vreg-select__value {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 15px;
	line-height: 1.5;
}

.hayat-vreg-select__value.is-placeholder {
	color: #9a9a9a;
}

.hayat-vreg-select__chevron {
	flex: 0 0 auto;
	display: inline-flex;
	color: #555;
	transition: transform 0.2s ease;
}

.hayat-vreg-select.is-open .hayat-vreg-select__chevron {
	transform: rotate(180deg);
}

.hayat-vreg-select__panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	z-index: 40;
	max-height: 220px;
	overflow: auto;
	padding: 8px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.hayat-vreg-select__panel[hidden] {
	display: none !important;
}

.hayat-vreg-select__option {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #222;
	font: inherit;
	font-size: 14px;
	text-align: right;
	cursor: pointer;
}

.hayat-vreg-select__option:hover,
.hayat-vreg-select__option.is-active {
	background: #eaf6ea;
}

.hayat-vreg-field__box--phone {
	justify-content: space-between;
	gap: 12px;
}

.hayat-vreg-field__phone-example {
	flex: 0 0 auto;
	font-size: 12px;
	color: #9a9a9a;
	white-space: nowrap;
	direction: rtl;
	pointer-events: none;
}

.hayat-vreg-field__box--phone .style-free-input {
	flex: 1 1 auto;
	min-width: 0;
}

.hayat-vreg-agree {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	cursor: pointer;
	user-select: none;
	direction: rtl;
	text-align: right;
}

.hayat-vreg-agree__input {
	position: absolute !important;
	opacity: 0 !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	pointer-events: none !important;
}

.hayat-vreg-agree__box {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	border: 1.5px solid #d0d5dd;
	border-radius: 6px;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-sizing: border-box;
}

.hayat-vreg-agree__box svg {
	display: none;
}

.hayat-vreg-agree__input:checked + .hayat-vreg-agree__box {
	background: #4caf50;
	border-color: #4caf50;
}

.hayat-vreg-agree__input:checked + .hayat-vreg-agree__box svg {
	display: block;
}

.hayat-vreg-agree__text {
	flex: 1 1 auto;
	font-size: 13px;
	line-height: 1.7;
	color: #333;
}

.hayat-vreg-agree__mark {
	color: #4caf50;
	font-weight: 700;
}

/* Step 5 — terms list + required agrees */
.hayat-vreg-terms {
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: 100%;
	max-height: 320px;
	margin: 0 0 28px;
	padding: 0 4px 0 8px;
	list-style: none;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.hayat-vreg-terms::-webkit-scrollbar {
	width: 6px;
}

.hayat-vreg-terms::-webkit-scrollbar-thumb {
	background: #cfcfcf;
	border-radius: 999px;
}

.hayat-vreg-terms::-webkit-scrollbar-track {
	background: transparent;
}

.hayat-vreg-term {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	direction: rtl;
	text-align: right;
}

.hayat-vreg-term__num {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
	color: #111;
}

.hayat-vreg-term__body {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	line-height: 1.8;
}

.hayat-vreg-term__title {
	font-weight: 700;
	color: #111;
	margin-inline-end: 4px;
}

.hayat-vreg-term__text {
	font-weight: 400;
	color: #555;
}

.hayat-vreg-form__fields--agrees {
	gap: 16px;
}

.hayat-vreg-field--agree .hayat-vreg-agree {
	align-items: center;
}

.hayat-vreg-field--agree.is-invalid .hayat-vreg-agree__box {
	border-color: #e53935;
}

.hayat-vreg-field--agree.is-invalid .hayat-vreg-agree__text {
	color: #e53935;
}

.hayat-vreg-nav {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	direction: rtl;
	width: 100%;
}

.hayat-vreg-nav__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 28px;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.hayat-vreg-nav__next {
	background: #4caf50;
	color: #fff;
}

.hayat-vreg-nav__next:hover {
	background: #43a047;
}

.hayat-vreg-nav__prev {
	background: #f0f0f0;
	color: #333;
}

.hayat-vreg-nav__prev:hover {
	background: #e6e6e6;
}

.hayat-vreg-nav__btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

.hayat-vreg-nav__btn[hidden] {
	display: none !important;
}

.hayat-vreg-nav__next.is-loading {
	opacity: 0.85;
}

.hayat-vreg-nav__status {
	flex: 1 0 100%;
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.6;
	text-align: center;
}

.hayat-vreg-nav__status.is-error {
	color: #e53935;
}

.hayat-vreg-nav__status.is-success {
	color: #2e7d32;
}

.hayat-vreg-nav__status.is-info {
	color: #555;
}

.hayat-vreg-nav__status[hidden] {
	display: none !important;
}

/* Toast notifications */
.hayat-vreg-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 99999;
	max-width: min(92vw, 420px);
	padding: 14px 18px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
	direction: rtl;
	box-sizing: border-box;
	opacity: 0;
	transform: translateX(-50%) translateY(calc(100% + 24px));
	transition: transform 0.28s ease, opacity 0.28s ease;
	pointer-events: none;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.hayat-vreg-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.hayat-vreg-toast[hidden] {
	display: block !important;
	opacity: 0;
	transform: translateX(-50%) translateY(calc(100% + 24px));
}

.hayat-vreg-toast--error {
	background: #fdecea;
	border: 1px solid #f5c6cb;
	color: #c62828;
}

.hayat-vreg-toast--success {
	background: #e8f5e9;
	border: 1px solid #a5d6a7;
	color: #2e7d32;
}

.hayat-vreg-toast--info {
	background: #fff8e6;
	border: 1px solid #ffe7a5;
	color: #8a6d00;
}

@media (prefers-reduced-motion: reduce) {
	.hayat-vreg-toast {
		transition: none;
	}
}

.hayat-vreg-nav__icon {
	display: inline-flex;
	line-height: 0;
}

@media (max-width: 767px) {
	.hayat-vreg-steps__label {
		font-size: 11px;
	}

	.hayat-vreg-steps__dot {
		width: 30px;
		height: 30px;
		font-size: 11px;
	}

	.hayat-vreg-steps__item:not(:last-child)::after {
		top: 15px;
		right: calc(50% + 18px);
		left: calc(-50% + 18px);
	}

	.hayat-vreg-form__title {
		font-size: 18px;
	}

	.hayat-vreg-field__prefix {
		font-size: 11px;
	}
}

/* —— Store URL copy widget —— */
.hayat-store-url-copy {
	width: 100%;
	direction: rtl;
}

.hayat-store-url-copy__label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #1a1a1a;
	margin-bottom: 10px;
	text-align: right;
}

.hayat-store-url-copy__row {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 10px;
	width: 100%;
}

.hayat-store-url-copy__url {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #e8f5e9;
	border-radius: 12px;
	padding: 14px 16px;
}

.hayat-store-url-copy__url-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #1a1a1a;
	line-height: 0;
}

.hayat-store-url-copy__url-icon img,
.hayat-store-url-copy__url-icon svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.hayat-store-url-copy__url-text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	line-height: 1.4;
	color: #1a1a1a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	direction: ltr;
	text-align: left;
}

.hayat-store-url-copy__btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 14px 18px;
	background: #e8f5e9;
	color: #4caf50;
	border: 1.5px dashed #66bb6a;
	border-radius: 12px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	font-family: inherit;
	transition: background-color 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.hayat-store-url-copy__btn:hover {
	background: #dff0e0;
}

.hayat-store-url-copy__btn:focus-visible {
	outline: 2px solid #4caf50;
	outline-offset: 2px;
}

.hayat-store-url-copy__btn.is-copied {
	color: #2e7d32;
	border-color: #2e7d32;
}

.hayat-store-url-copy__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	line-height: 0;
	flex: 0 0 auto;
}

.hayat-store-url-copy__btn-icon img,
.hayat-store-url-copy__btn-icon svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

@media (max-width: 767px) {
	.hayat-store-url-copy__row {
		flex-wrap: nowrap;
		align-items: stretch;
	}

	.hayat-store-url-copy__url {
		flex: 1 1 auto;
		min-width: 0;
	}

	.hayat-store-url-copy__btn {
		flex: 0 0 auto;
		width: 48px;
		min-width: 48px;
		padding: 0;
		gap: 0;
	}

	.hayat-store-url-copy__btn-text {
		display: none;
	}
}
