.soon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	margin-bottom: 100px;
}
.product-card {
	display: flex;
	margin-bottom: 2rem;
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-image {
	max-width: 600px;
	height: 1000px;
	border-radius: 8px;
}

.product-info {
	margin-left: 20px;
	color: var(--secondaryColor);
	font-size: clamp(1em, 2.5vw, 1.5em);
}

.product-info h3 {
	margin: 0 0 0.5rem;
}

.price {
	font-weight: bold;
	color: var(--fourthColor);
	margin-bottom: 50px;
	margin-top: 50px;
}

.btn {
	height: 50px;
	width: auto;
	min-width: 135px;
	max-width: 200px;
	padding: 10px 20px;
	outline: none;
	border: none;
	font-style: italic;
	font-size: clamp(0.9em, 2.5vw, 1em);
	background-color: var(--mainColor);
	color: var(--textColor);
	text-align: center;
	cursor: pointer;
	margin-bottom: 50px;
	margin-top: 50px;
	border-radius: 10px;
	transition: opacity 0.3s ease-in-out;
}

.btn:hover {
	opacity: 0.8;
}
h1 {
	color: var(--fourthColor);
	font-weight: bold;
	font-style: italic;
	font-size: clamp(1em, 4vw, 1.5em);
	text-align: left;
	margin-bottom: clamp(10px, 2vh, 40px);
}
