.modal-box-video {
	position: relative;
	display: inline-block;
}
.play-pause-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.6);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	padding: 0px !important;
}
.mute-unmute-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	padding: 0px !important;
}
.modal-box-video:hover .play-pause-btn,
.modal-box-video:hover .mute-unmute-btn {
	opacity: 1;
}

.modal-close-icon {
    color: #000000;
    line-height: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 28px;
    justify-content: center;
}

.play-pause-btn svg,
.mute-unmute-btn svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: currentColor;
}

.shoppable-carousel {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	gap: 15px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.shoppable-carousel::-webkit-scrollbar {
	display: none;
}
.shoppable-carousel .swiper-button-next, .shoppable-carousel .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 0%;
}
.shoppable-carousel .swiper-button-next:after, .shoppable-carousel .swiper-button-prev:after {
    font-size: 18px;
    color: currentColor;
}
.product-card {
	width: 25%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s;
	flex: 0 0 auto;
	text-align: center;
	cursor: pointer;
	border: 1px solid rgb(238, 240, 244);
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px;
}

.product-media {
	position: relative;
	width: 100%;
	display: flex;
}
p.product-price {
    margin: 0;
    font-size: 12px;
    color: #ffffff;
    text-align: left;
}
video.product-video {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.product-right-information {
    flex: 1;
}
.carousel-container {
    width: 100%;
    padding: 0;
}
#videoModal {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
#videoModal.active {
    display: flex;
    opacity: 1;
}
.modal-content {
	background: white;
	border-radius: 10px;
	position: relative;
	margin: 50px 0;
	width: max-content;
	height: auto;
}

.modal-close {
    z-index: 1;
    position: absolute;
    top: -15px;
    right: -16px;
    cursor: pointer;
    background: #ffffff;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    line-height: normal;
    justify-content: center;
	cursor: pointer;
}
.modal-close svg {
    width: 20px;
    height: 20px;
}
.modal video {
    width: 100%;
    border-radius: 10px;
    height: 90vh;
    display: flex;
    object-fit: cover;
	pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgb(238, 240, 244);
    box-shadow: rgb(0, 0, 0) 0px 0px 0px;
    margin: 0 auto;
}
.product-image {
    width: 40px;
    height: 40px;
    margin: -0px auto 0;
    display: flex;
    flex: 0 0 auto;
}

.product-details {
    display: flex;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    width: calc(100% - 8px);
    background-color: #0003;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

.modal-box-video {
	position: relative;
}

.modal-box-video {
	position: relative;
	height: 100%;
	display: block;
}

.modal-box-infos {
	position: absolute;
	z-index: 1;
	top: auto;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	text-align: center;
	background: #ffffff8a;
	padding: 10px;
}
h3.product-title {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    font-family: 'brother-1816', sans-serif;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    height: fit-content;
    margin-bottom: 0;
    color: #ffffff;
}

h3.modal-product-title {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: normal;
	color: #000000;
}

.modal-product-cart-btn a {
	font-size: 14px;
	display: inline-block;
	color: #ffffff;
	line-height: normal;
	background: #c0973b;
	padding: 10px 15px;
	text-decoration: none;
}

video::-webkit-media-controls-panel {
	display: none !important;
	opacity: 0 !important;
}

.shoppable-carousel .slick-slide {
	margin: 0 10px;
}

.shoppable-carousel .slick-list {
	margin: 0 -10px;
}

.shoppable-carousel .custom-prev,
.shoppable-carousel .custom-next {
	background: transparent;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	background-color: #c0973b !important;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shoppable-carousel .custom-prev svg,
.shoppable-carousel .custom-next svg {
	width: 30px;
	height: 30px;
	stroke: #ffffff;
	/* Arrow color */
	transition: stroke 0.3s ease;
}

.shoppable-carousel .custom-prev.slick-arrow {
	left: 10px;
	z-index: 1;
}

.shoppable-carousel .custom-next.slick-arrow {
	right: 10px;
}

.shoppable-carousel .slick-arrow:before {
	display: none;
}

.custom-next.slick-arrow.slick-disabled {
	opacity: 0.5;
}

.shoppable-carousel .slick-slide .overflow-hidden.cursor-pointer {
	width: 100% !important;
}
.shoppable-carousel .swiper-button-next:hover, .shoppable-carousel .swiper-button-prev:hover {
    background: #097969 !important;
}
.modal-product-cart-btn a:hover {
    background-color: #097969 !important;
}
.shoppable-carousel .swiper-button-next:after, .shoppable-carousel .swiper-button-prev:after {
display: none !important;
}
@media(max-width: 767px) {

	.play-pause-btn,
	.mute-unmute-btn {
		opacity: 1 !important;
	}

	.mute-unmute-btn {
		left: 10px;
		right: auto;
	}

	.modal-close {
		top: 10px;
		right: 10px;
	}
}

@media(max-width: 550px) {
	.modal-content {
		width: 90%;
	}
}