body {
	min-height: 100vh;
	margin: 0;
	padding: 2rem;
	font-family: "Poppins", sans-serif;
	background-image: linear-gradient(
		to right bottom,
		#ffffff,
		#f9f8f9,
		#f3f0f2,
		#eee8ea,
		#e9e1e1
	);
}

nav {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #4e4f4e;
	height: 2rem;
	margin-bottom: 20px;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	gap: 2px;
	letter-spacing: -2px;
}

.icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.swiper {
	display: flex;
	justify-content: center;
	gap: 20px;
	max-width: 400px;
}

.swiper-slide {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #f7f7f7;
}

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

.details {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 0 10px;
	border-radius: 12px 12px 0 0;
	background-color: white;
}

.details h3 {
	font-size: 12px;
	font-weight: bold;
}

.details p {
	background-color: #0080ff;
	padding: 0.3rem 0.8rem;
	border-radius: 12px;
	font-size: 12px;
	color: white;
}

.details button {
	border: 1px solid black;
	background-color: white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.details button:hover {
	opacity: 0.85;
}

#prev-button:after,
#next-button:after {
	color: #c2c0c0;
	font-size: 30px;
}