

.top-title-img{
	position: absolute; 
	float: left; 
	max-height: 106px; 
	left:10px; 
	margin-top: -8px;
}
/* min 1400px */
@media (min-width:1400px){
	.top-title-img{ max-height: 200px; }
}

/* Google Reviews Button */
.snow-google-reviews-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #ffffff;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-left: 20px;
	white-space: nowrap;
}

.snow-google-reviews-btn:hover {
	background: #f8f9fa;
	box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
	transform: translateY(-2px);
	text-decoration: none;
	color: #333;
}

.snow-google-reviews-btn .google-icon {
	flex-shrink: 0;
	animation: starPulse 2s ease-in-out infinite;
}

.snow-google-reviews-btn .google-text {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}

.snow-google-reviews-btn .google-logo-text {
	display: inline-flex;
	font-weight: 700;
	letter-spacing: -0.5px;
}

/* Kolory liter Google */
.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

/* Animacja gwiazdki */
@keyframes starPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

/* Responsywność */
@media (max-width: 1200px) {
	.snow-google-reviews-btn {
		font-size: 13px;
		padding: 8px 16px;
		margin-left: 15px;
	}
	
	.snow-google-reviews-btn .google-icon {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 991px) {
	.snow-google-reviews-btn {
		margin-left: 10px;
		font-size: 12px;
		padding: 6px 12px;
		gap: 6px;
	}
	
	.snow-google-reviews-btn .google-icon {
		width: 16px;
		height: 16px;
	}
	
	.snow-google-reviews-btn .google-text {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}
}

@media (max-width: 768px) {
	.snow-google-reviews-btn {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 55px;
		padding: 5px 10px;
		font-size: 0;
		margin-left: 0;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		justify-content: center;
		gap: 0;
	}
	
	.snow-google-reviews-btn .google-text {
		display: none;
	}
	
	.snow-google-reviews-btn .google-icon {
		width: 20px;
		height: 20px;
	}
	
	.snow-google-reviews-btn::after {
		content: '';
		position: absolute;
		top: -2px;
		right: -2px;
		width: 10px;
		height: 10px;
		background: #34A853;
		border-radius: 50%;
		border: 2px solid white;
	}
}

@media (max-width: 480px) {
	.snow-google-reviews-btn {
		right: 55px;
		width: 36px;
		height: 36px;
	}
	
	.snow-google-reviews-btn .google-icon {
		width: 18px;
		height: 18px;
	}
}

/* Mobile Phone Button */
.snow-phone-btn {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #ffffff;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-left: 10px;
	white-space: nowrap;
}

.snow-phone-btn:hover {
	background: #f0fff0;
	box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
	transform: translateY(-2px);
	text-decoration: none;
	color: #333;
	border-color: #34A853;
}

.snow-phone-btn .phone-icon {
	font-size: 18px;
	color: #34A853;
}

.snow-phone-btn .phone-text {
	color: #333;
}

/* Widoczność na tablet */
@media (max-width: 991px) {
	.snow-phone-btn {
		display: inline-flex;
		margin-left: 10px;
		font-size: 12px;
		padding: 6px 12px;
		gap: 6px;
	}
	
	.snow-phone-btn .phone-icon {
		font-size: 16px;
	}
}

/* Widok mobilny - okrągła ikona */
@media (max-width: 768px) {
	.snow-phone-btn {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 100px;
		padding: 5px 10px;
		font-size: 0;
		margin-left: 0;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		justify-content: center;
		gap: 0;
		background: #34A853;
		border-color: #34A853;
	}
	
	.snow-phone-btn .phone-text {
		display: none;
	}
	
	.snow-phone-btn .phone-icon {
		width: 20px;
		height: 20px;
		font-size: 18px;
		color: #ffffff;
	}
	
	.snow-phone-btn:hover {
		background: #2d9248;
		border-color: #2d9248;
	}
}

@media (max-width: 480px) {
	.snow-phone-btn {
		right: 90px;
		width: 36px;
		height: 36px;
	}
	
	.snow-phone-btn .phone-icon {
		width: 18px;
		height: 18px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.snow-google-reviews-btn {
		right: 50px;
		width: 36px;
		height: 36px;
	}
	
	.snow-google-reviews-btn .google-icon {
		width: 18px;
		height: 18px;
	}
}

/* Wyłączenie animacji przycisków (telefon / opinie Google) w widoku mobilnym.
   Na dotyku „hover" nie znika, a podskok transformem psuł wyśrodkowanie ikon. */
@media (max-width: 991px) {
	.snow-google-reviews-btn,
	.snow-phone-btn {
		transition: none !important;
	}

	.snow-google-reviews-btn .google-icon {
		animation: none !important;
	}

	.snow-google-reviews-btn:hover,
	.snow-phone-btn:hover {
		transform: none !important;
	}
}

/* Gdy przyciski są zwiniętymi, wyśrodkowanymi ikonami — zachowaj pozycję przy dotknięciu. */
@media (max-width: 768px) {
	.snow-google-reviews-btn:hover,
	.snow-phone-btn:hover {
		transform: translateY(-50%) !important;
	}
}