/* Sabit alt iletişim — WhatsApp & Telefon */
:root {
	--sticky-contact-z: 1001;
	--sticky-contact-h-desktop: 58px;
	--sticky-contact-h-mobile: 108px;
}

body {
	padding-bottom: calc(var(--sticky-contact-h-desktop) + env(safe-area-inset-bottom, 0px));
}

.sticky-contact {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: var(--sticky-contact-z);
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 -10px 36px rgba(38, 38, 38, 0.14);
}

.sticky-contact__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: var(--sticky-contact-h-desktop);
	padding: 12px 20px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.sticky-contact__btn:focus-visible {
	outline: 2px solid var(--accent-color);
	outline-offset: -2px;
}

.sticky-contact__btn--wa {
	position: relative;
	overflow: hidden;
	background: #1c1c1c;
	color: #fff;
}

.sticky-contact__btn--wa::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #7d5613 0%, #b8862c 55%, #966919 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.sticky-contact__btn--wa > * {
	position: relative;
	z-index: 1;
}

.sticky-contact__btn--wa:hover {
	color: #fff;
}

.sticky-contact__btn--wa:hover::before {
	opacity: 1;
}

.sticky-contact__btn--phone {
	background: var(--primary-color, #262626);
	color: #fff;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-contact__btn--phone:hover {
	background: #1a1a1a;
	color: #fff;
}

.sticky-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	font-size: 17px;
	flex-shrink: 0;
}

.sticky-contact__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
}

.sticky-contact__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.82;
	line-height: 1;
}

.sticky-contact__value {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

@media (max-width: 767px) {
	body {
		padding-bottom: calc(var(--sticky-contact-h-mobile) + env(safe-area-inset-bottom, 0px));
	}

	.sticky-contact {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
	}

	.sticky-contact__btn {
		min-height: 54px;
		padding: 10px 18px;
		justify-content: flex-start;
	}

	.sticky-contact__btn--phone {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.sticky-contact__icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.sticky-contact__value {
		font-size: 13px;
	}
}

@media (max-width: 420px) {
	.sticky-contact__value {
		font-size: 12px;
	}
}
