body {
	margin: 0;
	background-color: aliceblue;
}

a {
	text-decoration: none;
	color: blue;
}

.container {
	display: flex;
	grid-template-columns: auto;
	justify-content: space-around;
}

.image-container {
	display: flex;
	justify-content: left;
	margin-top: 20px;
}

.product-name {
	display: flex;
	flex-direction: column;
	justify-content: left;
	margin-top: 20px;
}

.product-price {
	display: flex;
	flex-direction: column;
	justify-content: left;
	margin-top: 20px;
}

.product-image .container span {
	text-decoration: none;
	display: inline;
}

/* form {
              display: inline;
              margin: 1%;
            } */

.search {
	width: 20%;
	height: auto;
	border-radius: 5px;
	border-color: beige;
}

.button {
	cursor: pointer;
	border: none;
	height: auto;
	background-color: transparent;
}
/* image carousel */
.product-image {
	width: 200px;
}

.carousel {
	position: relative;
	width: 200px;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	transition: transform 0.4s ease;
}

.carousel-track img {
	width: 100%;
	flex-shrink: 0;
}

.nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: white;
	border: none;
	padding: 4px 6px;
	cursor: pointer;
}

.prev {
	left: 5px;
}
.next {
	right: 5px;
}

/* dots */
.dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 10px;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #bbb;
	transition:
		transform 0.2s,
		background 0.2s;
}

.dot.active {
	background: #333;
	transform: scale(1.4);
}

.dot.small {
	transform: scale(0.6);
}
