.fan-box {
	width: 100%;
	border: 1px solid #dcdcdc;
	background: var(--color-white);
	overflow: hidden;
}

/* HEADER */
.fan-top {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	background: #efefef;
	height: 48px;
	border-top: 3px solid #e4001b;
}

/* TAB */
.fan-tabs {
	display: flex;
	flex: 1;
	overflow-x: auto;
	overflow-y: hidden;
}

.fan-tabs::-webkit-scrollbar {
	display: none;
}

.fan-tab {
	height: 100%;
	padding: 0 28px;
	border: none;
	background: transparent;
	font-size: 15px;
	font-weight: 700;
	color: #555;
	white-space: nowrap;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}

.fan-tab:hover {
	background: var(--color-red);
	color: var(--color-white);
}

.fan-tab.active {
	background: var(--color-red);
	color: var(--color-white);
}

/* NÚT */
.fan-arrows {
	display: flex;
	flex-shrink: 0;
}

.fan-prev, .fan-next {
	width: 46px;
	height: 100%;
	background: #efefef;
	border-left: 1px solid #d7d7d7;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #888;
	cursor: pointer;
	transition: .2s;
}

.fan-prev:hover, .fan-next:hover {
	background: var(--color-white);
	color: #e4001b;
}

/* CONTENT */
.fan-content {
	display: none;
}

.fan-content.show {
	display: block;
}

/* SLIDER */
.fan-slider {
	overflow: hidden;
}

.fan-slider .swiper-slide {
	border-right: 1px solid #ececec !important;
	padding: 20px;
	height: auto;
	box-sizing: border-box;
	background: var(--color-white);
}

.fan-slider .swiper-slide:last-child {
	border-right: none;
}

/* ẢNH */
.fan-image {
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fan-image img {
	max-width: 100%;
	max-height: 190px;
	object-fit: contain;
}

/* TÊN */
.fan-name {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.6;
	height: 48px;
	color: #444;
	overflow: hidden;
}

/* GIÁ */
.fan-price {
	margin-top: 10px;
	font-size: 30px;
	font-weight: 700;
	color: #e3001b;
}

/* RESPONSIVE */
@media(max-width:991px) {
	.fan-tab {
		padding: 0 18px;
		font-size: 14px;
	}

	.fan-image {
		height: 180px;
	}
}

@media(max-width:767px) {
	.fan-top {
		height: auto;
		flex-direction: column;
	}

	.fan-tabs {
		width: 100%;
	}

	.fan-tab {
		height: 46px;
	}

	.fan-arrows {
		justify-content: flex-end;
		border-top: 1px solid #ddd;
	}

	.fan-prev, .fan-next {
		height: 46px;
	}

	.fan-slider .swiper-slide {
		padding: 15px;
	}
}