#product-container {
background: var(--gradient-one);
/* border: 2px green solid; */
display: flex;
flex-direction: column;
gap: 20px; /* Space between sections */
padding-top: 2.5rem;
}

.gallery {
	align-self: center;
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
	margin: 10px 20px;
/* 	border: 2px red solid; */
	justify-content: center; /* Vertically center the content */
	align-items: center; /* Horizontally center the content */
}

.gallery img {
	/* Control the maximum size of the main image */
	max-width: 100%;  /* Ensures it doesn't stretch beyond the container */
	max-height: 500px; /* Set max height of main image (adjust as needed) */
	width: auto; /* Maintain aspect ratio */
	height: auto; /* Maintain aspect ratio */
	transition: 0.2s ease;
}

.images-others img {
	/* Set a fixed height for the smaller images */
	height: 100px; /* Set the height you want for the smaller images */
	width: auto; /* Maintain aspect ratio */
	max-width: 100%; /* Ensure image width adjusts based on the container */
}

.images-others {
	display: flex;
	flex-wrap: wrap; /* Allow images to wrap onto multiple lines */
	gap: 14px;
	justify-content: center; /* Align items to the start of the line */
	margin-bottom: 20px; /* Create space between images and text */
/* 	border: 3px purple solid; */
	padding-bottom: 10px; /* Optional, for extra spacing if needed */
	max-width: 1100px;
}

.gallery img:hover {
	transform: scale(1.015);
}

.images-others img:hover {
	transform: scale(1.04);
}

/* Lightbox styles */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.lightbox img {
	max-width: 90%;
	max-height: 80%;
	opacity: 0;
}

.lightbox .close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	cursor: pointer;
}

.lightbox .nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	cursor: pointer;
	z-index: 999;
	border: none;
	background: none;
}

.lightbox .prev {
	left: 20px;
}

.lightbox .next {
	right: 20px;
}

.image-number {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	z-index: 999;
}

.modal-icon {
	height: 40px;
	fill: white;
	transition: 0.15s ease;
}

.modal-icon:hover {
	scale: 1.2;
}

.nav-button .modal-icon {
	height: 80px;
	filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.7));
}

#product-container .content {
	padding: 0 1rem 2.5rem 1rem;
	max-width: 1300px;
	margin: 0 auto;
}

#product-container .content h1 {
/* border: 2px red solid; */
	padding-bottom: 1rem;
	font-weight: 500;
}

#product-container .content h2 {
	font-weight: 500;
	font-size: 1.1rem;
	padding-bottom: 0.2rem;
}

#product-container .content p {
	font-weight: 400;
	padding-bottom: 0.4rem;
}

#product-container .content ul {
	list-style-position: inside;
	font-weight: 400;
}

#product-container .content li {
	padding-bottom: 0.4rem;
}

.icon-info-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
/* 	border: 2px #55ff00 solid; */
	margin: 0 auto;
	padding-bottom: 2.5rem;
}

.icon-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
/* 	border: 2px red solid; */
	border-radius: 20px;
	gap: 1rem;
	padding: 1rem;
	margin: 1rem;
	max-width: 500px;
}

.icon-info img{
	width: 80px;
	height: 80px;
	border-radius: 100%;
/* 	margin-bottom: 1rem; */
}

.icon-info h1{
	font-weight: 500;
/*	margin-bottom: 0.5rem;*/
}

.icon-info p{
	font-weight: 400;
}

.icon-info ol{
	list-style-position: inside;
}

.icon-info li{
	font-weight: 400;
}


@media (max-width: 700px) {
	.icon-info-container {
		grid-template-columns: 1fr;
	}
}
