/* تنسيق الفيديو في صفحة تفاصيل المنتج */
#product-video iframe,
#product-video video {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

#product-video video {
    object-fit: cover;
}

/* تحسين مظهر الصورة المصغرة للفيديو */
#preview-video {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#preview-video:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#preview-video img {
    transition: opacity 0.3s ease;
}

#preview-video:hover img {
    opacity: 0.8;
}

#preview-video .fa-play-circle {
    transition: all 0.3s ease;
}

#preview-video:hover .fa-play-circle {
    transform: scale(1.2);
    color: #007bff !important;
}

/* تحسين مظهر معرض الصور مع الفيديو */
.product-preview-item {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-preview-item.active {
    border: 2px solid #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* تحسين مظهر الصور المصغرة */
.product-preview-thumb {
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-preview-thumb.active {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.product-preview-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* تحسين مظهر أيقونة التشغيل */
.video-play-icon {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* تحسين responsive للفيديو - تصميم عمودي للجوال */
@media (max-width: 768px) {
    #product-video iframe,
    #product-video video {
        height: 550px !important; /* ارتفاع أكبر للفيديو العمودي */
        width: 100% !important;
        max-width: 350px !important; /* عرض أكبر للشكل العمودي */
        margin: 0 auto !important;
        display: block !important;
        aspect-ratio: 9/16 !important; /* نسبة عرض إلى ارتفاع للفيديو العمودي */
        object-fit: cover !important;
    }
    
    #product-video {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 5px !important; /* تقليل padding لإفساح مجال أكبر للفيديو */
        width: 100% !important;
        height: auto !important;
    }
    
    #preview-video .fa-play-circle {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    #product-video iframe,
    #product-video video {
        height: 480px !important; /* ارتفاع أكبر للشاشات الصغيرة */
        width: 100% !important;
        max-width: 300px !important; /* عرض أكبر للشاشات الصغيرة */
        margin: 0 auto !important;
        display: block !important;
        aspect-ratio: 9/16 !important; /* نسبة الفيديو العمودي */
        object-fit: cover !important;
    }
    
    #product-video {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 3px !important; /* تقليل padding أكثر */
        width: 100% !important;
        height: auto !important;
    }
    
    #preview-video .fa-play-circle {
        font-size: 1rem !important;
    }
}

/* تحسين مظهر الفيديو في الوضع المظلم */
@media (prefers-color-scheme: dark) {
    .product-preview-item {
        background: #2d3748;
    }
    
    #product-video iframe,
    #product-video video {
        border-color: #4a5568;
    }
}

/* تحسين animation للتبديل بين الصور والفيديو */
.product-preview-item {
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(20px);
}

.product-preview-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* تحسين مظهر شريط التحكم في الفيديو */
#product-video video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 8px 8px;
}

#product-video video::-webkit-media-controls-play-button {
    background: #007bff;
    border-radius: 50%;
}

/* تحسين مظهر loading للفيديو */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* تحسينات إضافية للفيديو العمودي على الجوال */
@media (max-width: 768px) {
    /* تحسين container الفيديو */
    .cz-product-gallery {
        text-align: center !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .product-thumbnail-slider {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .cz-preview {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }
    
    .product-preview-item {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* تحسين مظهر iframe لليوتيوب */
    #product-video iframe {
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        border: 3px solid #f8f9fa !important;
    }
    
    /* تحسين مظهر الفيديو المرفوع */
    #product-video video {
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        border: 3px solid #f8f9fa !important;
    }
    
    /* تحسين مظهر الصور المصغرة */
    .product-preview-thumb {
        max-width: 60px !important;
        height: 60px !important;
        margin: 5px !important;
    }
}

/* تحسينات خاصة للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    #product-video iframe,
    #product-video video {
        height: 420px !important; /* ارتفاع أكبر للشاشات الصغيرة */
        max-width: 280px !important; /* عرض أكبر للشاشات الصغيرة */
        border-radius: 10px !important;
    }
    
    #product-video {
        padding: 2px !important; /* تقليل padding أكثر */
        width: 100% !important;
    }
}

/* تحسين مظهر الفيديو في الوضع الأفقي للجوال */
@media (max-width: 768px) and (orientation: landscape) {
    #product-video iframe,
    #product-video video {
        height: 300px !important;
        max-width: 200px !important;
        aspect-ratio: 9/16 !important;
    }
}

/* تحسينات إضافية لملء المساحة المتاحة */
@media (max-width: 768px) {
    /* إزالة أي margins أو paddings إضافية */
    .col-lg-5.col-md-4 {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .cz-product-gallery .cz-preview {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* جعل الفيديو يستغل كامل العرض المتاح */
    #product-video iframe,
    #product-video video {
        min-width: 320px !important; /* حد أدنى للعرض */
        max-width: 95% !important; /* استغلال معظم العرض المتاح */
    }
}

/* تحسينات للشاشات الكبيرة نسبياً على الجوال */
@media (min-width: 576px) and (max-width: 768px) {
    #product-video iframe,
    #product-video video {
        max-width: 380px !important; /* عرض أكبر للشاشات الأكبر */
        height: 600px !important; /* ارتفاع أكبر */
    }
}