/*
Theme Name:     Amazia Theme
Theme URI:      https://amazia-shop.de/
Description:    Child Theme for DIVI Theme
Author:         Frank Rumler
Author URI:     https://rumler.com/
Template:       Divi
Version:        1.2
License: 		GNU General Public License
Last updated:	2026.06.03
*/

/* 18+ age verification 
 * moved to DIVI theme options */

/* GOOGLE MAP */
body #et-main-area #main-content iframe {
	width: 100%;
}

/* GOOGLE REVIEWS SECTION
-------------------------------------------------------------- */
.reviews-section-top {
	padding: 2rem 0 0;
	background: #222;
	color: antiquewhite;
}
.reviews-section-main {
	padding: 2rem 0;
	background: #222;
	color: antiquewhite;
}
.reviews-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 0 0 28px;
	flex-wrap: wrap;
	text-align: center;
}

.reviews-score {
	font-size: 3.4rem;
	font-weight: 800;
	line-height: 1;
	color: antiquewhite;
}

.reviews-stars-big,
.review-stars {
	color: #d9a441;
	letter-spacing: 2px;
}

.reviews-stars-big {
	font-size: 1.25rem;
}

.reviews-count {
	color: #cfc2ad;
	font-weight: 600;
}

.reviews-google-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1em 2em;
	border-radius: 999px;
	background: antiquewhite;
	color: #111;
	font-weight: 700;
	text-decoration: none;
	transition: all .25s ease;
}

.reviews-google-link:hover {
	background: #d9a441;
	color: #111;
}

.reviews-carousel {
	position: relative;
	overflow: hidden;
}

.reviews-track {
	display: flex;
	transition: transform .82s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

.reviews-slide {
	min-width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.review-card {
	background: #111;
	border-radius: 18px;
	padding: 1.4rem 1.3rem;
	box-shadow: 0 14px 34px rgba(0,0,0,0.32);
	border: 1px solid rgba(250,235,215,0.12);
}

.review-stars {
	font-size: 1rem;
	margin-bottom: .8rem;
}

.review-text {
	margin: 0 0 1rem;
	line-height: 1.55;
	color: antiquewhite;
}

.review-author {
	color: #cfc2ad;
	font-size: .95rem;
	font-weight: 700;
}

.reviews-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
}

.reviews-prev,
.reviews-next {
	width: 38px;
	height: 28px;
	border: 0;
	border-radius: 50px;
	padding: 0 5px 1em;
	background: antiquewhite;
	color: #111;
	font-size: x-large;
	line-height: 1;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}
.reviews-prev {
	position: relative;
    top: 5px;
}

.reviews-prev:hover,
.reviews-next:hover {
	background: #d9a441;
}

.reviews-dots {
	display: flex;
	gap: 8px;
}

.reviews-dots button {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: #8b7d68;
	cursor: pointer;
}

.reviews-dots button.is-active {
	background: #d9a441;
	width: 22px;
}

@media (max-width: 980px) {
	.reviews-slide {
		grid-template-columns: 1fr;
	}
}