/* ==========================================================================
   BestHome Plus — güncelleme şeridi
   ========================================================================== */

.bhpc-guncelle {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 99990;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 460px;
	margin: 0 auto;
	padding: 13px 14px;
	border-radius: 14px;
	background: linear-gradient(120deg, #241a10, #14110c);
	border: 1px solid rgba(201, 168, 120, .3);
	color: #f0e6d8;
	box-shadow: 0 18px 38px rgba(20, 17, 12, .34);
	font-family: 'Jost', 'Segoe UI', sans-serif;
	transform: translateY(140%);
	opacity: 0;
	transition: transform .38s cubic-bezier(.2, .8, .3, 1), opacity .38s ease;
}
.bhpc-guncelle--acik { transform: translateY(0); opacity: 1; }
.bhpc-guncelle--gizli { transform: translateY(140%); opacity: 0; pointer-events: none; }

.bhpc-guncelle__m { flex: 1; min-width: 0; }
.bhpc-guncelle__m b { display: block; font-size: 13px; font-weight: 500; line-height: 1.3; }
.bhpc-guncelle__m span { display: block; font-size: 11px; color: #a99d86; margin-top: 2px; line-height: 1.4; }

.bhpc-guncelle__ok {
	flex: none;
	background: linear-gradient(180deg, #d5b489, #c9a878);
	color: #241a0f;
	border: none;
	border-radius: 20px;
	font-family: inherit;
	font-size: 12px;
	font-weight: 500;
	padding: 9px 17px;
	cursor: pointer;
	white-space: nowrap;
	transition: filter .2s ease;
}
.bhpc-guncelle__ok:hover { filter: brightness(1.06); }
.bhpc-guncelle__ok:disabled { opacity: .6; cursor: default; }

.bhpc-guncelle__x {
	flex: none;
	background: none;
	border: none;
	color: #f0e6d8;
	font-size: 18px;
	line-height: 1;
	padding: 0 4px;
	opacity: .55;
	cursor: pointer;
}
.bhpc-guncelle__x:hover { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
	.bhpc-guncelle { transition: none; }
}
