/* Asharikandi PWA — install button and iOS sheet */

.rlp-install[hidden] { display: none !important; }

.rlp-install__button {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .7rem 1.3rem;
	border: 1px solid currentColor;
	border-radius: 3px;
	background: transparent;
	color: var(--theme-color, #A8442A);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease;
}

.rlp-install__button:hover {
	background: var(--theme-color, #A8442A);
	color: #fff;
}

.rlp-install__button:focus-visible {
	outline: 2px solid var(--theme-color, #A8442A);
	outline-offset: 2px;
}

.rlp-install__button svg { width: 17px; height: 17px; flex: 0 0 auto; }

/* iOS instructions */

.rlp-ios {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: rgba(46, 38, 34, .55);
	padding: 1rem;
}

.rlp-ios[hidden] { display: none; }

.rlp-ios__panel {
	position: relative;
	width: 100%;
	max-width: 420px;
	padding: 1.75rem 1.5rem 1.5rem;
	background: #fff;
	border-radius: 10px;
	animation: rlp-rise .2s ease;
}

@keyframes rlp-rise {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: none; }
}

.rlp-ios__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #8A7F76;
	cursor: pointer;
}

.rlp-ios__close:hover { background: #f2efec; color: #2E2622; }
.rlp-ios__close svg { width: 12px; height: 12px; display: block; margin: 0 auto; }

.rlp-ios__panel h3 {
	margin: 0 0 1rem;
	font-family: var(--font-family-heading, inherit);
	font-size: 1.15rem;
	color: var(--text-color, #2E2622);
}

.rlp-ios__steps {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
	font-size: .92rem;
	line-height: 1.75;
	color: #4a423d;
}

.rlp-ios__note { margin: 0; font-size: .78rem; color: #8A7F76; }

@media (min-width: 600px) {
	.rlp-ios { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
	.rlp-ios__panel { animation: none; }
}
