/* ========================================
   BALIE & SAUNY STYLESHEET
   Dedicated styles for hot tubs and saunas product pages
   ======================================== */

/* ========================================
   TYPOGRAPHY & LISTS
   ======================================== */

/* Clean list styling (no bullets) */
.ul-clean {
	list-style: none;
	padding-left: 0;
	display: grid;
	gap: 0.5rem;
}
.ul-clean li {
	border-bottom: 1px solid #eee;
	padding: 0.6rem 0;
	line-height: 1.6;
}
.ul-clean li strong {
	font-weight: bold;
	color: #5f3a3b;
	letter-spacing: 1px;
}

/* ========================================
   PRICING DISPLAY
   ======================================== */

.price {
	display: grid;
	gap: 0.25rem;
	margin: 0.4rem 0 0.6rem;
}
.price__main {
	font-size: 2.2rem;
	color: #5f3a3b;
}
.price__alt {
	font-size: 1.4rem;
	color: #666;
}

/* ========================================
   PRODUCT LAYOUT & SPACING
   ======================================== */

.product {
	padding-block: 4rem;
	/* background: rgb(239, 232, 226); */
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-i {
	background: #fff;
	padding: 1rem;
	margin-top: 0.8rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* ========================================
   IMAGE GALLERY STRUCTURE
   ======================================== */

.product__gallery {
	display: grid;
	gap: 1rem;
}

.product__image {
	aspect-ratio: 16/10;
	overflow: hidden;
}

.product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Product thumbnails row */
.product__thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.5rem;
}
.product__thumbs .thumb {
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: opacity 0.2s ease;
	overflow: hidden;
	aspect-ratio: 1/1;
	display: block;
}
.product__thumbs .thumb:hover {
	opacity: 0.8;
}
.product__thumbs .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ========================================
   PRODUCT BENEFIT (pergola) – styl pod Twoją paletę
   ======================================== */

.product__benefit {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 2.5rem 2rem;
}

.benefit__heading {
	font-size: 3rem;
	font-weight: 300;
	color: #5f3a3b;
	margin: 0 0 1.5rem;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	letter-spacing: 1px;
}

/* masz literówkę w HTML: benfit__list -> benefit__list
   (poniżej styluję oba, żeby działało bez poprawiania) */
.benfit__list,
.benefit__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.benfit__list li,
.benefit__list li {
	font-size: 1.6rem;
	color: #555;
	padding: 0.6rem 0;
	padding-left: 2.5rem;
	position: relative;
	line-height: 1.6;
}

.benfit__list li::before,
.benefit__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0.1rem;
	color: #5f3a3b;
	font-weight: bold;
	font-size: 1.8rem;
}

.benefit__description {
	margin: 1.8rem 0 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #5f3a3b;
	font-weight: bold;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 768px) {
	.product__benefit {
		padding: 2rem 1.5rem;
	}
	.benefit__heading {
		font-size: 2.4rem;
	}
	.benfit__list li,
	.benefit__list li,
	.benefit__description {
		font-size: 1.5rem;
	}
}

@media (max-width: 560px) {
	.gallery__stage {
		aspect-ratio: 4/3;
	}
	.gallery__thumbs .thumb img {
		height: 56px;
	}
	.gallery__thumbs {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (min-width: 561px) and (max-width: 900px) {
	.gallery__thumbs .thumb img {
		height: 64px;
	}
	.gallery__thumbs {
		grid-template-columns: repeat(4, 1fr) !important;
	}
}
