/* تحسينات المنتج - حركات وتأثيرات */

/* حركات الانتقال السلسة */
.product-gallery-section,
.product-rating-section,
.product-share-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تأثيرات Hover محسّنة */
.product-imgs .img-item,
.share-btn,
.rating-display {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تحسين الأداء */
.product-gallery-section *,
.product-rating-section *,
.product-share-section * {
    will-change: transform, opacity;
}

/* تأثيرات التركيز للوصولية */
.share-btn:focus,
.img-item:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .product-gallery-section,
    .product-rating-section,
    .product-share-section {
        animation-duration: 0.4s;
    }
}

/* تأثيرات التحميل */
.img-showcase img {
    transition: opacity 0.3s ease;
}

.img-showcase img:not(.active) {
    opacity: 0;
}

.img-showcase img.active {
    opacity: 1;
}

/* تحسينات الأداء للصور */
.img-showcase img,
.img-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* تأثيرات النقر */
.share-btn:active,
.img-item:active {
    transform: scale(0.95);
}

/* تحسينات الطباعة */
@media print {
    .product-share-section,
    .share-buttons {
        display: none;
    }
}

