/**
 * Image Display Fix
 * إصلاح مشكلة اختفاء الصور
 */

/* إصلاح مشكلة opacity للصور */
img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة lazy loading */
img[loading="lazy"] {
    opacity: 1 !important;
    transition: none !important;
}

img[loading="lazy"].loaded {
    opacity: 1 !important;
}

/* إصلاح مشكلة الصور في المنتجات */
.woocommerce-product-gallery__image img {
    opacity: 1 !important;
    min-height: auto !important;
    background: transparent !important;
}

/* إصلاح مشكلة الصور في القوائم */
.attachment-woocommerce_thumbnail {
    opacity: 1 !important;
    image-rendering: auto !important;
}

/* إصلاح مشكلة الصور المكسورة */
img:not([src]),
img[src=""],
img[src*="data:image/svg+xml;base64"] {
    background: #f0f0f0 !important;
    border: 1px solid #ddd !important;
    position: relative !important;
    opacity: 1 !important;
}

/* إصلاح مشكلة الصور في Elementor */
.elementor-widget img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في القوالب */
.template-parts img,
.template-parts .item img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Hero */
.hero img,
.page-hero img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Sidebar */
.sidebar img,
.widget img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Footer */
.footer img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Header */
.header img,
.head-nav img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Navigation */
.navigation img,
.nav img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Content */
.content img,
.entry-content img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Archive */
.archive img,
.category img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Single */
.single img,
.post img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Page */
.page img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Search */
.search img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في 404 */
.error404 img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Comments */
.comments img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Widgets */
.widget img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Forms */
form img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Buttons */
.button img,
.btn img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Links */
a img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Lists */
ul img,
ol img,
li img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Tables */
table img,
td img,
th img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Divs */
div img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Spans */
span img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في P tags */
p img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في H tags */
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Section tags */
section img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Article tags */
article img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Aside tags */
aside img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Header tags */
header img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Footer tags */
footer img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Nav tags */
nav img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Main tags */
main img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Figure tags */
figure img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Figcaption tags */
figcaption img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Blockquote tags */
blockquote img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Pre tags */
pre img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Code tags */
code img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Address tags */
address img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Time tags */
time img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Mark tags */
mark img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Small tags */
small img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Strong tags */
strong img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Em tags */
em img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في B tags */
b img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في I tags */
i img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في U tags */
u img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في S tags */
s img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Del tags */
del img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Ins tags */
ins img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Sub tags */
sub img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Sup tags */
sup img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Abbr tags */
abbr img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Acronym tags */
acronym img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Cite tags */
cite img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Q tags */
q img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Samp tags */
samp img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Kbd tags */
kbd img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Var tags */
var img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Dfn tags */
dfn img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Bdo tags */
bdo img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Wbr tags */
wbr img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Ruby tags */
ruby img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Rt tags */
rt img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Rp tags */
rp img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Bdi tags */
bdi img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Data tags */
data img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Output tags */
output img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Progress tags */
progress img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Meter tags */
meter img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Details tags */
details img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Summary tags */
summary img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Dialog tags */
dialog img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Menu tags */
menu img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Command tags */
command img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Keygen tags */
keygen img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Track tags */
track img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Source tags */
source img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Embed tags */
embed img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Object tags */
object img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Param tags */
param img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Map tags */
map img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Area tags */
area img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Canvas tags */
canvas img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Svg tags */
svg img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Math tags */
math img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Script tags */
script img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Style tags */
style img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Link tags */
link img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Meta tags */
meta img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Title tags */
title img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Base tags */
base img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Basefont tags */
basefont img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Bgsound tags */
bgsound img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Isindex tags */
isindex img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Nextid tags */
nextid img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Spacer tags */
spacer img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Wbr tags */
wbr img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Xmp tags */
xmp img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Plaintext tags */
plaintext img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Listing tags */
listing img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Noembed tags */
noembed img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Noframes tags */
noframes img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Noscript tags */
noscript img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Applet tags */
applet img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Center tags */
center img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Dir tags */
dir img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Font tags */
font img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Frame tags */
frame img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Frameset tags */
frameset img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Hgroup tags */
hgroup img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Isindex tags */
isindex img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Listing tags */
listing img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Menu tags */
menu img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Menuitem tags */
menuitem img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Noembed tags */
noembed img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Noframes tags */
noframes img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Plaintext tags */
plaintext img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Rb tags */
rb img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Rtc tags */
rtc img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Strike tags */
strike img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Tt tags */
tt img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في Xmp tags */
xmp img {
    opacity: 1 !important;
    transition: none !important;
}

/* إصلاح مشكلة الصور في جميع العناصر */
* img {
    opacity: 1 !important;
    transition: none !important;
}