.shahr-wax-videos-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    direction: rtl;
    font-family: inherit;
    width: 100%;
    height: 280px;
}
.shahr-wax-video-item {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shahr-wax-video-item:first-child {
    flex: 2;
}
.shahr-wax-video-poster,
.shahr-wax-video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.4s ease;
}
.shahr-wax-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%);
    z-index: 2;
    transition: opacity 0.4s ease;
}
.shahr-wax-video-title {
    position: absolute;
    bottom: 16px;
    left: 12px;
    right: 12px;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    z-index: 3;
    transition: opacity 0.4s ease;
}
.shahr-wax-video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background-color: #2aa37e !important;
	color: #ffffff;
	border: none;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer !important;
	z-index: 4;
	transition: all 0.3s ease;
	padding: 0 !important;
}
.shahr-wax-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.shahr-wax-inline-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    background-color: #000000;
}
.shahr-wax-video-item.is-playing .shahr-wax-video-poster,
.shahr-wax-video-item.is-playing .shahr-wax-video-placeholder,
.shahr-wax-video-item.is-playing .shahr-wax-video-overlay,
.shahr-wax-video-item.is-playing .shahr-wax-video-title,
.shahr-wax-video-item.is-playing .shahr-wax-video-play-btn {
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
    .shahr-wax-videos-wrapper {
        flex-direction: column;
        height: auto;
    }
    .shahr-wax-video-item {
        height: 220px;
    }
}