/* Floweralba full-screen mobile menu. */

.floweralba-mobile-menu[hidden] {
	display: none !important;
}

.floweralba-mobile-menu {
	--flower-mobile-accent: #ff5481;
	--flower-mobile-text: #242429;
	--flower-mobile-muted: #7d8089;
	--flower-mobile-line: #ececef;
	--flower-mobile-soft: #fafafb;
	position: fixed;
	inset: 0;
	z-index: 10050;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(-100%, 0, 0);
	transition: transform 280ms cubic-bezier(.22, .75, .25, 1), opacity 180ms ease, visibility 0s linear 280ms;
	background: #fff;
	color: var(--flower-mobile-text);
	font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.floweralba-mobile-menu.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
	transition-delay: 0s;
}

html.floweralba-mobile-menu-open,
body.floweralba-mobile-menu-open {
	overflow: hidden !important;
	overscroll-behavior: none;
}

.floweralba-mobile-menu *,
.floweralba-mobile-menu *::before,
.floweralba-mobile-menu *::after {
	box-sizing: border-box;
}

.floweralba-mobile-menu a {
	text-decoration: none;
}

.floweralba-mobile-menu button {
	font: inherit;
}

.floweralba-mobile-menu__screen {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background: #fff;
}

.floweralba-mobile-menu__topbar {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr) 84px;
	align-items: center;
	flex: 0 0 auto;
	min-height: calc(62px + env(safe-area-inset-top));
	padding: env(safe-area-inset-top) 12px 0;
	border-bottom: 1px solid var(--flower-mobile-line);
	background: rgba(255, 255, 255, .98);
}

.floweralba-mobile-menu__brand {
	overflow: hidden;
	color: var(--flower-mobile-text);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.floweralba-mobile-menu__icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	outline: none;
	background: transparent;
	color: var(--flower-mobile-text);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.floweralba-mobile-menu__icon-button:hover,
.floweralba-mobile-menu__icon-button:focus-visible {
	background: #f5f5f7;
}

.floweralba-mobile-menu__svg-icon {
	display: block;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
}

.floweralba-mobile-menu__icon-button .floweralba-mobile-menu__svg-icon {
	width: 26px;
	height: 26px;
}

.floweralba-mobile-menu__top-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
}

.floweralba-mobile-menu__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.floweralba-mobile-menu__content {
	width: min(100%, 620px);
	margin: 0 auto;
	padding: 28px 22px calc(34px + env(safe-area-inset-bottom));
}

.floweralba-mobile-menu__profile {
	display: flex;
	align-items: center;
	gap: 15px;
	min-height: 74px;
}

.floweralba-mobile-menu__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 68px;
	width: 68px;
	height: 68px;
	overflow: hidden;
	border-radius: 50%;
	background: #f0f0f2;
	color: #b0b2b8;
}

.floweralba-mobile-menu__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.floweralba-mobile-menu__avatar > .mi {
	font-size: 39px;
}

.floweralba-mobile-menu__profile-copy {
	min-width: 0;
}

.floweralba-mobile-menu__profile-copy > strong,
.floweralba-mobile-menu__profile-name strong {
	display: block;
	color: var(--flower-mobile-text);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
}

.floweralba-mobile-menu__profile-name {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 5px;
}

.floweralba-mobile-menu__profile-name span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 3px 9px;
	border-radius: 999px;
	background: #fff0f4;
	color: #e84b76;
	font-size: 11px;
	font-weight: 700;
}

.floweralba-mobile-menu__profile-copy > a {
	display: inline-flex;
	align-items: center;
	margin-top: 2px;
	color: var(--flower-mobile-muted);
	font-size: 13px;
	font-weight: 500;
}

.floweralba-mobile-menu__profile-copy > a .floweralba-mobile-menu__svg-icon {
	width: 16px;
	height: 16px;
}

.floweralba-mobile-menu__auth-links {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
}

.floweralba-mobile-menu__auth-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 7px 16px;
	border: 1px solid #dedfe3;
	border-radius: 10px;
	color: #52545b;
	font-size: 13px;
	font-weight: 600;
}

.floweralba-mobile-menu__auth-links a:first-child {
	border-color: var(--flower-mobile-accent);
	background: var(--flower-mobile-accent);
	color: #fff;
}

.floweralba-mobile-menu__quick {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 26px;
}

.floweralba-mobile-menu__quick-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
	min-height: 98px;
	padding: 13px 6px 11px;
	border-radius: 15px;
	background: var(--flower-mobile-soft);
	color: var(--flower-mobile-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.floweralba-mobile-menu__quick-item:not(.is-coming):hover,
.floweralba-mobile-menu__quick-item:not(.is-coming):focus-visible {
	background: #fff3f6;
}

.floweralba-mobile-menu__quick-item > .floweralba-mobile-menu__svg-icon {
	width: 27px;
	height: 27px;
	color: var(--flower-mobile-accent);
}

.floweralba-mobile-menu__quick-item.is-coming {
	color: #888b93;
	cursor: default;
}

.floweralba-mobile-menu__quick-item.is-coming > .floweralba-mobile-menu__svg-icon {
	color: #adb0b7;
}

.floweralba-mobile-menu__quick-item small {
	position: absolute;
	top: 7px;
	right: 7px;
	padding: 2px 6px;
	border-radius: 999px;
	background: #ededf0;
	color: #8c8e96;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.5;
}

.floweralba-mobile-menu__section {
	margin-top: 28px;
	padding-top: 25px;
	border-top: 1px solid var(--flower-mobile-line);
}

.floweralba-mobile-menu__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.floweralba-mobile-menu__section-head h2 {
	margin: 0;
	color: var(--flower-mobile-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.floweralba-mobile-menu__section-head > a {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	color: #858891;
	font-size: 12px;
	font-weight: 600;
}

.floweralba-mobile-menu__section-head > a .floweralba-mobile-menu__svg-icon {
	width: 17px;
	height: 17px;
}

.floweralba-mobile-menu__recent-status,
.floweralba-mobile-menu__recent-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 92px;
	padding: 20px;
	border-radius: 14px;
	background: var(--flower-mobile-soft);
	color: #8a8d95;
	font-size: 13px;
	line-height: 1.55;
	text-align: center;
}

.floweralba-mobile-menu__recent-empty {
	flex-direction: column;
	gap: 7px;
}

.floweralba-mobile-menu__recent-empty[hidden],
.floweralba-mobile-menu__recent-list[hidden],
.floweralba-mobile-menu__recent-status[hidden] {
	display: none !important;
}

.floweralba-mobile-menu__recent-empty .floweralba-mobile-menu__svg-icon {
	width: 29px;
	height: 29px;
	color: #b2b4ba;
}

.floweralba-mobile-menu__recent-empty p {
	margin: 0;
}

.floweralba-mobile-menu__recent-list {
	display: grid;
	gap: 2px;
}

.floweralba-mobile-menu__recent-item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	min-height: 66px;
	padding: 5px 0;
	color: var(--flower-mobile-text);
}

.floweralba-mobile-menu__recent-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	overflow: hidden;
	border-radius: 13px;
	background: #f1f1f3;
	color: #a3a5ac;
}

.floweralba-mobile-menu__recent-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.floweralba-mobile-menu__recent-thumb .mi {
	font-size: 26px;
}

.floweralba-mobile-menu__recent-copy {
	display: grid;
	min-width: 0;
	gap: 3px;
}

.floweralba-mobile-menu__recent-copy strong,
.floweralba-mobile-menu__recent-copy small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.floweralba-mobile-menu__recent-copy strong {
	color: var(--flower-mobile-text);
	font-size: 14px;
	font-weight: 700;
}

.floweralba-mobile-menu__recent-copy small {
	color: var(--flower-mobile-muted);
	font-size: 11px;
	font-weight: 500;
}

.floweralba-mobile-menu__recent-item > .mi {
	color: #b2b4ba;
	font-size: 18px;
}

.floweralba-mobile-menu__shortcuts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	border-top: 1px solid var(--flower-mobile-line);
	border-left: 1px solid var(--flower-mobile-line);
	border-radius: 14px;
}

.floweralba-mobile-menu__shortcuts a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	min-height: 56px;
	padding: 10px 14px;
	border-right: 1px solid var(--flower-mobile-line);
	border-bottom: 1px solid var(--flower-mobile-line);
	background: #fff;
	color: #3b3c42;
	font-size: 13px;
	font-weight: 600;
	-webkit-tap-highlight-color: transparent;
}

.floweralba-mobile-menu__shortcuts a:hover,
.floweralba-mobile-menu__shortcuts a:focus-visible {
	background: var(--flower-mobile-soft);
}

.floweralba-mobile-menu__shortcuts a .floweralba-mobile-menu__svg-icon {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	color: #6f727a;
}

.floweralba-mobile-menu__shortcuts a span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.floweralba-mobile-menu__logout {
	display: inline-flex;
	margin-top: 24px;
	padding: 5px 0;
	color: #858891;
	font-size: 12px;
	font-weight: 500;
}

@media only screen and (min-width: 1201px) {
	.floweralba-mobile-menu {
		display: none !important;
	}
}

@media only screen and (max-width: 380px) {
	.floweralba-mobile-menu__content {
		padding-right: 18px;
		padding-left: 18px;
	}

	.floweralba-mobile-menu__topbar {
		grid-template-columns: 76px minmax(0, 1fr) 76px;
		padding-right: 8px;
		padding-left: 8px;
	}

	.floweralba-mobile-menu__profile-copy > strong,
	.floweralba-mobile-menu__profile-name strong {
		font-size: 17px;
	}

	.floweralba-mobile-menu__quick-item {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.floweralba-mobile-menu {
		transition: none;
	}
}
