/**
 * Base resets for plugin screens.
 */
.yoopharmacy-html {
	box-sizing: border-box;
}
.yoopharmacy-html *,
.yoopharmacy-html *::before,
.yoopharmacy-html *::after {
	box-sizing: inherit;
}

.yoopharmacy-auth-body,
.yoopharmacy-app-body {
	margin: 0;
	min-height: 100vh;
	font-size: 15px;
	color: var(--yoopharmacy-gray-900);
	background: var(--yoopharmacy-gray-50);
	-webkit-font-smoothing: antialiased;
}

/* Fonts: see --yoopharmacy-font-script-mixed in tokens (Montserrat → Latin, Cairo → Arabic) */
html.yoopharmacy-html[dir="ltr"] .yoopharmacy-auth-body,
html.yoopharmacy-html[dir="ltr"] .yoopharmacy-app-body,
html.yoopharmacy-html[lang|="en"] .yoopharmacy-auth-body,
html.yoopharmacy-html[lang|="en"] .yoopharmacy-app-body {
	font-family: var(--yoopharmacy-font-ltr);
}

html.yoopharmacy-html[dir="rtl"] .yoopharmacy-auth-body,
html.yoopharmacy-html[dir="rtl"] .yoopharmacy-app-body {
	font-family: var(--yoopharmacy-font-rtl);
}

.yoopharmacy-auth[dir="rtl"] {
	font-family: var(--yoopharmacy-font-rtl);
}

.yoopharmacy-auth[dir="ltr"] {
	font-family: var(--yoopharmacy-font-ltr);
}

html.yoopharmacy-html[lang|="en"] .yoopharmacy-auth {
	font-family: var(--yoopharmacy-font-ltr);
}

/* Single-letter Arabic switcher label: force platform RTL stack (Cairo) on LTR shells */
.yoopharmacy-lang-toggle__ar {
	font-family: var(--yoopharmacy-font-rtl, "Montserrat", "Cairo", system-ui, sans-serif);
	font-weight: 600;
	font-synthesis: none;
}

a {
	color: var(--yoopharmacy-accent);
}

.yoopharmacy-custom-select__native {
	position: absolute !important;
	inline-size: 1px !important;
	block-size: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.yoopharmacy-custom-select {
	position: relative;
	inline-size: 100%;
	font-family: inherit;
}

.yoopharmacy-custom-select__button {
	inline-size: 100%;
	min-block-size: 2.55rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	padding: 0.55rem 0.75rem;
	padding-inline-start: 2.25rem;
	border: 1px solid var(--yoopharmacy-gray-200, #e5e7eb);
	border-radius: 0.5rem;
	background: #fff;
	color: var(--yoopharmacy-gray-900, #111827);
	font: inherit;
	line-height: 1.35;
	text-align: start;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.yoopharmacy-custom-select__button:hover {
	border-color: var(--yoopharmacy-gray-300, #d1d5db);
}

.yoopharmacy-custom-select__button:focus-visible,
.yoopharmacy-custom-select.is-open .yoopharmacy-custom-select__button {
	outline: none;
	border-color: var(--yoopharmacy-gray-300, #d1d5db);
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.07);
}

.yoopharmacy-custom-select.is-placeholder .yoopharmacy-custom-select__value {
	color: var(--yoopharmacy-gray-500, #6b7280);
}

.yoopharmacy-custom-select__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--yoopharmacy-gray-500, #6b7280);
	transition: transform 0.15s ease, color 0.15s ease;
}

.yoopharmacy-custom-select.is-open .yoopharmacy-custom-select__chevron {
	transform: rotate(180deg);
	color: var(--yoopharmacy-gray-500, #6b7280);
}

.yoopharmacy-custom-select__list {
	position: absolute;
	z-index: 80;
	inset-block-start: calc(100% + 0.3rem);
	inset-inline: 0;
	max-block-size: 14rem;
	overflow: auto;
	padding: 0.35rem;
	border: 1px solid var(--yoopharmacy-gray-200, #e5e7eb);
	border-radius: 0.65rem;
	background: #fff;
	box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12);
}

.yoopharmacy-custom-select__option {
	inline-size: 100%;
	display: block;
	padding: 0.55rem 0.7rem;
	border: 0;
	border-radius: 0.45rem;
	background: transparent;
	color: var(--yoopharmacy-gray-900, #111827);
	font: inherit;
	line-height: 1.35;
	text-align: start;
	cursor: pointer;
}

.yoopharmacy-custom-select__option:hover,
.yoopharmacy-custom-select__option:focus-visible {
	outline: none;
	background: var(--yoopharmacy-gray-50, #f9fafb);
	color: var(--yoopharmacy-gray-900, #111827);
}

.yoopharmacy-custom-select__option.is-selected {
	background: color-mix(in srgb, var(--yoopharmacy-accent, #eeb44e) 22%, #fff);
	color: var(--yoopharmacy-gray-900, #111827);
	font-weight: 600;
}

.yoopharmacy-custom-select__option.is-disabled,
.yoopharmacy-custom-select__option:disabled {
	color: var(--yoopharmacy-gray-400, #9ca3af);
	cursor: default;
}

.yoopharmacy-custom-select.is-disabled .yoopharmacy-custom-select__button {
	background: var(--yoopharmacy-gray-100, #f3f4f6);
	color: var(--yoopharmacy-gray-500, #6b7280);
	cursor: not-allowed;
}

.yoopharmacy-auth__select-wrap .yoopharmacy-custom-select__button {
	padding-inline-start: 2.25rem;
}
