/* ============================================================
   Factorland download bottom sheet
   Ported from the static homepage. Prefixed `fl-` to stay
   isolated from the Techbiz theme styles.
   ============================================================ */

.fl-sheet-overlay {
	position: fixed;
	inset: 0;
	background: rgba(34, 48, 60, .45);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility 0s linear .25s;
	z-index: 99999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.fl-sheet-overlay.fl-open {
	opacity: 1;
	visibility: visible;
	transition: opacity .25s ease;
}

.fl-bottom-sheet {
	background: #fff;
	width: 100%;
	max-width: 460px;
	border-radius: 24px 24px 0 0;
	padding: 10px 22px calc(24px + env(safe-area-inset-bottom));
	transform: translateY(100%);
	transition: transform .32s cubic-bezier(.32, .72, 0, 1);
	box-shadow: 0 -8px 30px rgba(34, 48, 60, .18);
	font-family: 'Vazirmatn', 'IRANSans', sans-serif;
	direction: rtl;
}

.fl-sheet-overlay.fl-open .fl-bottom-sheet {
	transform: translateY(0);
}

.fl-sheet-handle {
	width: 40px;
	height: 4px;
	border-radius: 2px;
	background: #E5DAC8;
	margin: 8px auto 18px;
}

.fl-sheet-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.fl-sheet-header h3 {
	font-family: 'IRANYekanX', 'Vazirmatn', sans-serif;
	font-size: 15.5px;
	font-weight: 700;
	color: #22303C;
	margin: 0;
}

.fl-sheet-close {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #F6F6F6;
	color: #A8A8A8;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
}

.fl-sheet-close svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.fl-sheet-list {
	display: flex;
	flex-direction: column;
}

.fl-sheet-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	text-decoration: none;
	border-bottom: 1px solid #F3F1EC;
}

.fl-sheet-row:last-child {
	border-bottom: none;
}

.fl-sheet-row .fl-icon-chip {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #F6F6F6;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fl-sheet-row .fl-icon-chip img {
	display: block;
}

.fl-sheet-row-text {
	flex: 1;
	min-width: 0;
	text-align: right;
}

.fl-sheet-row-text strong {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: #22303C;
}

.fl-sheet-row-text span {
	display: block;
	font-size: 11px;
	color: #93999F;
	margin-top: 2px;
}

.fl-sheet-row .fl-chevron {
	width: 18px;
	height: 18px;
	color: #C3C3C3;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.fl-sheet-open {
	overflow: hidden;
}
