.google-maps-block {
	margin-top: 40px;
	background: #ffffff;
	border-radius: 24px;
	padding: 35px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.04);
	border: 1px solid rgba(0,0,0,0.03);
}
.gmaps-top {
	padding-bottom: 25px;
	border-bottom: 1px solid #f0f0f0;
	margin-bottom: 30px;
}
.gmaps-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gmaps-title {
	font-size: 26px;
	font-weight: 900;
	color: #050a14;
	text-decoration: none;
	letter-spacing: -0.03em;
	transition: color 0.3s ease;
}
.gmaps-title:hover {
	color: #0a58ca;
}
.gmaps-rating-line {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 15px;
	color: #4b5563;
}
.gmaps-rating {
	color: #111;
	font-weight: 900;
	background: #f8f9fa;
	padding: 2px 10px;
	border-radius: 6px;
}
.gmaps-stars {
	position: relative;
	display: inline-block;
	font-size: 18px;
	letter-spacing: 2px;
}
.gmaps-stars-bg {
	color: #e5e7eb;
}
.gmaps-stars-fg {
	color: #ffc107;
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	width: calc(var(--rating) / 5 * 100%);
	text-shadow: 0 0 12px rgba(255,193,7,0.4);
}
.google-maps-photos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin: 30px 0;
}
.google-maps-photo {
	overflow: hidden;
	border-radius: 16px;
	background: #f1f5f9;
}
.google-maps-photo img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.google-maps-photo:hover img {
	transform: scale(1.05);
}
.google-maps-reviews {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}
.google-maps-review {
	background: #fcfcfd;
	padding: 24px;
	border-radius: 20px;
	border: 1px solid #f1f5f9;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}
.google-maps-review:hover {
	background: #ffffff;
	border-color: #0a58ca33;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.google-review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}
.google-review-header strong {
	font-size: 15px;
	color: #1e293b;
	font-weight: 700;
}
.google-review-rating {
	font-size: 12px;
	background: #fff9e6;
	color: #b28900;
	padding: 4px 12px;
	border-radius: 50px;
	font-weight: 800;
	border: 1px solid #ffecb3;
}
.google-review-text {
	font-size: 14px;
	line-height: 1.8;
	color: #64748b;
	font-weight: 400;
}
.google-maps-link {
	text-align: center;
	margin-top: 20px;
}
.google-maps-link a {
	display: inline-block;
	padding: 14px 32px;
	background: #050a14;
	color: #ffffff;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.google-maps-link a:hover {
	background: #0a58ca;
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(10,88,202,0.2);
}
@media (max-width: 640px) {
	.google-maps-block {
		padding: 25px 20px;
	}
	.google-maps-photos {
		grid-template-columns: repeat(2, 1fr);
	}
	.google-maps-photo img {
		height: 120px;
	}
	.google-maps-reviews {
		grid-template-columns: 1fr;
	}
}