.detail-sec {
	width: 100vw;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: start;
	flex-direction: column;
}

.detail-sec .product-bg {
	width: 100vw;
	min-height: 37vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;
	z-index: 0;
}

.detail-sec .detail-area {
	width: 100%;
	z-index: 6;
}

.detail-sec .detail-area .detail-box {
	width: 100%;
	padding: 14px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.detail-sec .detail-area .detail-box .s-head {
	font-size: 13px;
	line-height: 15px;
	letter-spacing: 1px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 8px;
	display: block;
}

.detail-sec .detail-area .detail-box h2 {
	font-size: 24px;
	line-height: 31px;
	letter-spacing: 0.5555px;
	color: #fff;
	font-weight: 100;
}

.detail-sec .detail-area .detail-box img {
	width: 100%;
	margin-top: -5px;
	margin-bottom: 0px;
}

.detail-sec .detail-area .detail-box p {
	font-size: 12px;
	font-weight: 300;
	line-height: 26px;
	letter-spacing: 0.555px;
}

.detail-sec .detail-area .detail-box p strong {
	font-weight: 700;
}

.detail-sec .detail-area .detail-box .shop-btn {
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	line-height: 1;
	font-size: 9px;
	background-color: #DA0B0B;
	border-radius: 40px;
	font-weight: 500;
	gap: 5px;
	box-shadow: 0 0 16px 0px #ffffff54;
}

.detail-sec .detail-area .detail-box .shop-btn img {
	width: auto;
}

.detail-sec .detail-area .detail-box .shop-btn:hover {
	opacity: 0.8;
}

.detail-sec .detail-area .featurs-list {
	max-width: 303px;
	height: 28vh;
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: auto;
	overflow-y: auto;
}

.detail-sec .detail-area .featurs-list a.featur-btn {
	display: flex;
	align-items: center;
}

.detail-sec .detail-area .featurs-list a.featur-btn .f-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: #5A4DD8;
	border-radius: 50%;
	z-index: 2;
	transition: all 0.3s;
}

.detail-sec .detail-area .featurs-list a.featur-btn .f-icon img {
	width: 67%;
	filter: invert(0%) sepia(24%) saturate(0%) hue-rotate(379deg) brightness(594%) contrast(1000%);
	transition: all 0.2s;
}

.detail-sec .detail-area .featurs-list a.featur-btn .f-name {
	background-color: #0a0c21d6;
	border-radius: 0 0 43px 0;
	border: 1px solid #5A4DD8;
	width: 204px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: start;
	margin-left: -10px;
	z-index: 1;
	padding: 0 0 0 19px;
	font-size: 13px;
	font-weight: 100;
	line-height: 1;
}

.detail-sec .detail-area .featurs-list a.featur-btn .f-name strong {
	font-weight: 700;
}

.detail-sec .detail-area .featurs-list a.featur-btn:hover .f-icon,
.detail-sec .detail-area .featurs-list a.featur-btn:active .f-icon,
.detail-sec .detail-area .featurs-list a.featur-btn.active .f-icon {
	background-color: #fff;
}

.detail-sec .detail-area .featurs-list a.featur-btn:hover .f-icon img,
.detail-sec .detail-area .featurs-list a.featur-btn:active .f-icon img,
.detail-sec .detail-area .featurs-list a.featur-btn.active .f-icon img {
	filter: invert(37%) sepia(76%) saturate(4269%) hue-rotate(212deg) brightness(84%) contrast(100%);
}

.detail-sec .detail-area .featurs-list a.featur-btn:hover .f-name,
.detail-sec .detail-area .featurs-list a.featur-btn:active .f-name,
.detail-sec .detail-area .featurs-list a.featur-btn.active .f-name {
	background-color: #5A4DD8;
}

.detail-sec .video-area {
	width: 100%;
	height: 37vh;
	background-color: #101223cc;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	background-blend-mode: multiply;
}

.detail-sec .video-area .video-inner {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.detail-sec .video-area .video-inner video {
	width: 100%;
	height: 100%;
}

.detail-sec .video-area .video-inner .controls {
	width: 50%;
	height: 45px;
	background-color: #00000036;
	position: absolute;
	bottom: 5%;
	opacity: 1;
	left: 50%;
	border-radius: 40px;
	transform: translateX(-50%);
	transition: all 1.5s;
	transition-delay: 1s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.detail-sec .video-area .video-inner:hover .controls,
.detail-sec .video-area .video-inner:active .controls {
	transition: all 0.3s;
	opacity: 1;
}

.shop-btn-area {
	position: absolute;
	bottom: 70px;
	right: 20px;
	z-index: 3;
}