/* ============================= */
/* شريط أعلى المتجر (Top Bar) */
.header-top, .top-bar {
    background-color: #FFFFFF; /* خلفية بيضاء */
    color: #000000 !important; /* نص أسود واضح */
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 5px 0;
}

.header-top a, .top-bar a {
    color: #000000 !important; /* روابط باللون الأسود */
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-top a:hover, .top-bar a:hover {
    color: #1E68B2 !important; /* لون عند المرور */
}

/* ============================= */
/* شريط المتجر (Navbar) */
.navbar {
    background-color: #1E68B2 !important; /* خلفية Navbar */
    border: none;
    box-shadow: none;
}

.navbar a, .navbar .nav-link {
    color: #FFFFFF !important;  /* نص أبيض على شريط المتجر */
}

/* شعار المتجر */
.navbar-brand {
    max-width: 100%;
    height: auto; 
    width: 300px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-brand img {
    max-width: 100%;
    height: auto;
    animation: logoFadeIn 2s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.navbar-brand img:hover {
    transform: scale(1.1);
}
@keyframes logoFadeIn {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================= */
/* خلفية الصفحة */
body, html {
    background-color: #FFFFFF; /* خلفية الصفحة بيضاء */
    margin: 0;
    padding: 0;
}

/* ============================= */
/* تصنيفات المتجر في الأعلى */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 10px 0;
    background-color: #00a9ff; /* نفس خلفية الأصناف */
    border-radius: 10px;
}

.categories a {
    text-decoration: none;
    color: #FFFFFF;       /* نص أبيض واضح */
    font-weight: bold;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.categories a:hover {
    background-color: #75B5FD; /* خلفية عند المرور */
    color: #FEFFFF;            /* نص أبيض عند المرور */
    transform: scale(1.05);
}

/* ============================= */
/* زر "أضف إلى السلة" */
.s-button-btn {
  color: #FEFFFF;
  background-color: #00a9ff;
  border-color: #75B5FD;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}
.s-button-btn:hover {
  color: #fff;
  background-color: #1E68B2;
  border-color: #1E68B2;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(30, 104, 178, 0.5);
}

/* ============================= */
/* بطاقات المنتج */
.s-product-card-vertical,
.s-product-card-vertical .s-product-card-image img,
.s-block--features__item {
    transition: .10s;
}

.s-product-card-vertical {
    position: relative; 
    background: #ffffff;  /* فضي لامع */
    border: 1px solid #00a9ff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 18px rgba(255,255,255,0.7),
                inset 0 0 12px rgba(180,180,180,0.4);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-in-out;
}

.s-product-card-vertical::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 70px;   
    height: 70px;
    background: url('https://d.top4top.io/p_3606hdlld1.png') no-repeat center center;
    background-size: contain;
    opacity: 0.9;  
    pointer-events: none;
    transition: transform 0.3s ease;
}
.s-product-card-vertical:hover::after {
    transform: scale(1.3);
}

.s-product-card-vertical:hover {
    border-color: transparent;
    box-shadow: 0 10px 18px rgba(150,150,150,0.4);
    transform: translateY(-8px);
}

.s-product-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.s-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}
.s-product-card-vertical:hover .s-product-card-image img {
    transform: scale(1.15);
}

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

.s-product-card-price {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 10px auto 0;
    background-color: #00a9ff; 
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-product-card-price:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* ============================= */
/* مميزات المتجر */
.s-block--features__item {
    background-color: #75b5fd;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s ease;
    animation: fadeIn 1.5s ease-in-out;
}
.s-block--features__item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.s-block--features__item .feature-icon {
    background-color: #ffffff;
}
.s-block--features__item .feature-icon i { 
    color: #75b5fd; 
}
.s-block--features__item h2 { 
    color: #ffffff; 
}
.s-block--features__item p { 
    color: #ffffff; 
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================= */
/* فوتر المتجر */
.store-footer {
    text-align: center;
    margin-top: 60px;
    background-color: #75B5FD;
    padding-bottom: 0;
}

.store-footer__inner {
    background-color: #75B5FD !important;
    padding: 50px 10px 40px;
    border-radius: 25px 25px 0 0;
    animation: footerFade 1.5s ease-in-out;
}

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

.store-footer__inner h3 {
    color: #FEFFFF;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.store-footer__inner p {
    color: #FEFFFF;
    font-size: 16px;
    margin-bottom: 8px;
}

.store-footer a {
    color: #FEFFFF;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s ease;
}
.store-footer a:hover {
    color: #1E68B2;
    text-shadow: 0 0 5px #fff;
}

.store-footer__inner .footer-logo-box {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.store-footer__inner .footer-logo-box::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    background: url('https://www4.0zz0.com/2024/05/02/20/480692972.jpg') no-repeat center center;
    background-size: contain;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -8px); }
}

.footer-copy {
    margin-top: 25px;
    color: #FEFFFF; 
    font-weight: bold;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
    background: none; 
}

/* ============================= */
/* استجابة الشاشات */
@media (max-width: 1024px) {
  .s-product-card-image { height: 220px; }
  .categories { gap: 15px; margin: 15px 0; }
}
@media (max-width: 600px) {
  .s-product-card-image { height: 180px; }
  .store-footer__inner h3 { font-size: 20px; }
  .categories { flex-direction: column; gap: 10px; }
}

/* ============================= */
/* شريط الإعلانات أعلى المتجر - كل النصوص واضحة */
.announcement-bar,
.announcement-bar * {
    background-color: #FFFFFF !important; /* خلفية بيضاء */
    color: #000000 !important;            /* نص أسود واضح */
    font-weight: bold !important;
    text-align: center !important;
}

/* روابط شريط الإعلانات */
.announcement-bar a,
.announcement-bar a * {
    color: #000000 !important;           /* روابط سوداء */
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

.announcement-bar a:hover,
.announcement-bar a *:hover {
    color: #1E68B2 !important;           /* لون أزرق عند المرور */
}