.introduce-overview {
	width: 100%;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
}

.carousel-item {
	width: 560px;
	height: 560px;
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-control-prev {
	left: 20px;
}

.carousel-control-next {
	right: 20px;
}

.thumbnail-item {
	width: 25%;
}

.thumbnail-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-item-percent {
	background-image: url(/img/homepage/sale-off-bg.svg);
	color: var(--light-color);
	font-weight: 500;
	line-height: calc(22 / 14);
	width: 44px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
}

.introduce-store {
	width: 100%;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	gap: 32px;
	margin-bottom: 20px;
}

.img-store {
	gap: 20px;
}

.name-store h5 {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: #1f1f1f;
}
.name-store span {
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #8c8c8c;
}
.name-store button {
	background-color: #e6f7ff;
	border: 1px solid #076fbf;
}
.info-store {
	gap: 64px;
	padding-left: 32px;
	border-left: 1px solid #f0f0f0;
}
.info-item {
	display: flex;
	gap: 109px;
}
.info-item:nth-child(2) {
	padding-left: 32px;
	border-left: 1px solid #f0f0f0;
}
.info-item:nth-child(3) {
	padding-left: 32px;
	border-left: 1px solid #f0f0f0;
}
.info-item span {
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	color: #8c8c8c;
}
.info-item span.link {
	color: #076fbf;
}
.introduce-product {
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	line-height: 32px;
}

.introduce-product .title h3 {
	margin-bottom: 10px;
}

.introduce-product .title:after {
	content: "";
	display: block;
	position: relative;
	height: 2px;
	width: 8%;
	left: 0;
	bottom: 0px;
	border-radius: 30px;
	background-color: #f7941d;
}
.introduce-product .product-description {
	margin-top: 20px;
}
.introduce-product h4 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	color: #1f1f1f;
	font-family: Roboto;
}
.introduce-product p {
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	color: #8c8c8c;
}
.introduce-product .btn-keyword {
	background-color: #f5f5f5;
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	color: #8c8c8c;
}
.introduce-product .keyword {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding-block: 16px;
	margin-block: 20px;
	border-color: #f0f0f0;
}

.introduce-product .keyword ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.introduce-product .keyword a {
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	color: #076fbf;
}
.introduce-product .keyword button {
	border-radius: 4px;
}

/* List sản phẩm */
.list-product-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

/* Đánh giá, nhận xét */
.evaluate-review {
	display: grid;
	grid-template-columns: 30% 30% 40%;
	gap: 20px;
}

.box-review {
	display: flex;
	gap: 10px;
}

.box-comment {
	display: flex;
	align-items: center;
	gap: 10px;
}

.box-comment .box-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	border-right: 1px solid #f0f0f0;
	padding-right: 10px;
}

.review-items-ratting {
	gap: 10px;
}

.review-items-ratting {
	display: flex;
}

.rating-item {
	cursor: pointer;
}

.rating-item:hover ~ .rating-item span .bi-star-fill {
	color: #ccc;
}

.rating-item:hover span .bi-star-fill,
.rating-item:hover ~ .rating-item:hover ~ .rating-item span .bi-star-fill {
	color: gold;
}

.rating-item span .bi-star-fill {
	color: #ccc;
}

.form-review {
	padding-left: 0;
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
	.list-product-container {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (min-width: 768px) and (max-width: 1199.98px) {
	.list-product-container {
		grid-template-columns: repeat(3, 1fr);
	}
	.secondary-banner {
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 6px;
	}
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
	.list-product-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.thumbnails-container {
		margin-bottom: 20px;
	}

	.carousel-control-prev,
	.carousel-control-next {
		display: none;
	}

	.form-review {
		padding-left: 0;
		padding-right: 0;
	}

	.introduce-store {
		flex-direction: column;
	}

	.info-store {
		gap: 20px;
		border-left: none;
		padding-left: 0;
	}

	.info-item {
		padding: 0;
		gap: 10px;
		flex-direction: column;
	}

	.product-description img {
		width: -webkit-fill-available;
	}

	.evaluate-review {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.review-items-des {
		flex-direction: column;
	}

	.secondary-banner {
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 6px;
	}
	.filter-title {
		flex-basis: 100%;
	}
}

@media screen and (max-width: 575.98px) {
	.carousel-item {
		width: 100%;
		height: 100%;
	}

	.thumbnails-container {
		margin-bottom: 20px;
	}

	.carousel-control-prev,
	.carousel-control-next {
		display: none;
	}

	.form-review {
		padding-left: 0;
		padding-right: 0;
	}

	.product-description img {
		width: -webkit-fill-available;
	}

	.introduce-store {
		flex-direction: column;
	}

	.info-store {
		gap: 20px;
		border-left: none;
		padding-left: 0;
	}

	.info-item {
		gap: 10px;
		padding: 0;
		flex-direction: column;
	}

	.review-items-des {
		flex-direction: column;
	}

	.keyword {
		flex-direction: column;
	}

	.list-product-container {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px;
	}

	.evaluate-review {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.box-review {
		flex-direction: column;
		margin-top: 20px;
	}

	.box-comment {
		flex-direction: column;
		align-items: flex-start;
	}

	.box-comment .box-rating {
		border-right: none;
		padding-right: 0;
	}

	.primary-banner {
		height: 200px;
	}
	.primary-banner img {
		object-fit: fill;
	}

	.secondary-banner {
		row-gap: 6px;
	}
	.filter-title {
		display: none;
	}
	.filter-total-product {
		gap: 1rem;
		flex-wrap: wrap;
	}
	.filter-total-product strong {
		flex-basis: 100%;
	}
	.section-spacing {
		height: 10px;
	}
}
