/* Add custom CSS styles below */ 
/* Live Activity Bar */

.live-activity-bar{
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 9999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  color: #333;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s ease;
}

.live-activity-bar.show{
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:768px){

  .live-activity-bar{
    right: 12px;
    left: 12px;
    bottom: 14px;
    text-align: center;
  }

}
/* الشريط الإعلاني المتحرك */

.store-notify{

    overflow:hidden;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.store-notify p{
    margin:0;
    width:100%;
    overflow:hidden;
}

.store-notify a{

    display:inline-block;

    white-space:nowrap;

    animation:sahael-marquee 12s linear infinite;

    font-weight:700;
}

@keyframes sahael-marquee{

    0%{
        transform:translateX(100%);
    }

    100%{
        transform:translateX(-100%);
    }

}

/* تحسين شكل مميزات المتجر */

.store-feature{

    background:#fff;

    border-radius:24px;

    padding:30px 22px;

    text-align:center;

    transition:all .35s ease;

    border:1px solid rgba(61,111,193,0.10);

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    height:100%;
}

.store-feature:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(61,111,193,0.14);
}

.store-feature__icon{

    width:78px;
    height:78px;

    margin:auto auto 18px;

    border-radius:50%;

    background:rgba(124,189,229,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#3d6fc1;

    transition:all .35s ease;
}

.store-feature:hover .store-feature__icon{

    transform:scale(1.08);
}

.store-feature .title{

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;
}

.store-feature p{

    font-size:16px;

    color:#777;

    line-height:1.8;
}

/* تحسين آراء العملاء */

.home-block--testimonials .swiper-slide{

    background:#fff;

    border-radius:26px;

    padding:28px 24px;

    box-shadow:0 12px 35px rgba(0,0,0,0.06);

    border:1px solid rgba(61,111,193,0.10);

    transition:all .35s ease;

    height:100%;
}

.home-block--testimonials .swiper-slide:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(61,111,193,0.14);
}

.home-block--testimonials img{

    width:72px !important;
    height:72px !important;

    border-radius:50%;

    border:3px solid #7cbde5;

    padding:3px;

    object-fit:cover;
}

.home-block--testimonials .title{

    font-size:22px;

    font-weight:700;

    color:#222;
}

.home-block--testimonials p{

    color:#666;

    line-height:1.9;

    font-size:15px;
}

.home-block--testimonials .stars,
.home-block--testimonials i{

    color:#f7b500 !important;
}

/* Footer premium fade glow */

.footer .footer__block,
.footer .store-links,
.footer .footer-list {
  opacity: .55;
  transform: translateY(10px);
  transition: all .45s ease;
}

.footer:hover .footer__block,
.footer:hover .store-links,
.footer:hover .footer-list {
  opacity: 1;
  transform: translateY(0);
}

.footer .footer__block {
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 18px;
}

.footer .title {
  color: #3d6fc1 !important;
  font-weight: 800 !important;
  position: relative;
}

.footer .title::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: #7cbde5;
  border-radius: 20px;
  margin-top: 10px;
  transition: width .35s ease;
}

.footer .footer__block:hover .title::after {
  width: 75px;
}

.footer a,
.footer li {
  transition: all .3s ease;
}

.footer a:hover {
  color: #3d6fc1 !important;
  transform: translateX(-6px);
}


/* Premium Product Hover */

.product-block{

    transition:all .35s ease;

    border-radius:26px;

    overflow:hidden;

    background:#fff;

    position:relative;
}

/* الحركة */

.product-block:hover{

    transform:
      translateY(-12px)
      scale(1.01);

    box-shadow:
      0 22px 55px rgba(0,0,0,0.10);
}

/* الصورة */

.product-block img{

    transition:all .45s ease;
}

.product-block:hover img{

    transform:scale(1.06);
}

/* الصورة نفسها */

.product-block__thumb{

    overflow:hidden;

    border-radius:22px;
}

/* اسم المنتج */

.product-block .title{

    transition:all .3s ease;
}

.product-block:hover .title{

    color:#3d6fc1;
}

/* السعر */

.product-block .price{

    transition:all .3s ease;
}

.product-block:hover .price{

    transform:scale(1.05);
}

/* لمعان خفيف */

.product-block:before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:80%;
    height:100%;

    background:linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.35),
      transparent
    );

    transition:all .7s ease;

    z-index:2;
}

.product-block:hover:before{

    left:140%;
}





/* FAQ Luxury Style */

.article--main h3{
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 18px;
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #3d6fc1;
    cursor: pointer;
    transition: all .35s ease;
    border: 1px solid rgba(61,111,193,.12);
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}

/* glow effect */
.article--main h3::before{
    content: "";
    position: absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(124,189,229,.25),
        transparent
    );
    transition: .7s;
}

.article--main h3:hover::before{
    left:100%;
}

.article--main h3:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(61,111,193,.12);
    color:#2d5ca8;
}

/* answers */
.article--main h3 + p,
.article--main h3 + ul{
    background:#f8fbff;
    padding:18px 22px;
    border-radius:16px;
    margin-bottom:18px;
    line-height:2;
    color:#555;
    border-right:4px solid #7cbde5;
    animation: fadeSmooth .7s ease;
}

/* animation */
@keyframes fadeSmooth{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* WhatsApp Luxury Button */

.whatsapp-float{
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 9999;

    display:flex;
    align-items:center;
    gap:10px;

    padding: 12px 18px;

    border-radius: 60px;

    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border:1px solid rgba(255,255,255,0.25);

    box-shadow:
    0 10px 30px rgba(0,0,0,.12),
    0 0 20px rgba(37,211,102,.18);

    transition: all .35s ease;

    text-decoration:none;

    animation: whatsappPulse 2.2s infinite;
}

/* icon */

.whatsapp-float img{
    width:28px;
    height:28px;
}

/* text */

.whatsapp-float span{
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
}

/* hover */

.whatsapp-float:hover{
    transform: translateY(-4px) scale(1.03);

    box-shadow:
    0 18px 40px rgba(0,0,0,.18),
    0 0 30px rgba(37,211,102,.35);
}

/* pulse */

@keyframes whatsappPulse{

0%{
box-shadow:
0 0 0 0 rgba(37,211,102,.35);
}

70%{
box-shadow:
0 0 0 16px rgba(37,211,102,0);
}

100%{
box-shadow:
0 0 0 0 rgba(37,211,102,0);
}

}

/* mobile */

@media(max-width:768px){

.whatsapp-float{

left:15px;
bottom:15px;

padding:11px 14px;

}

.whatsapp-float span{
font-size:13px;
}

.whatsapp-float img{
width:24px;
height:24px;
}

}



/* Premium Header Menu بدون خط */

.nav-desktop .menu-item > a{

position: relative;

padding: 10px 16px !important;

border-radius: 14px;

transition: all .35s ease;

font-weight: 700;

}

/* hover */

.nav-desktop .menu-item > a:hover{

background: rgba(61,111,193,.08);

color: #3d6fc1 !important;

transform: translateY(-2px);

box-shadow:
0 8px 20px rgba(61,111,193,.08);

}

/* dropdown */

.nav-desktop .sub-menu{

border-radius:20px !important;

padding:12px !important;

border:none !important;

box-shadow:
0 15px 35px rgba(0,0,0,.08);

background:#fff;

}

/* dropdown items */

.nav-desktop .sub-menu a{

border-radius:12px;

transition:.25s;

}

.nav-desktop .sub-menu a:hover{

background:#f4f9ff;

padding-right:18px !important;

color:#3d6fc1 !important;

}
/* Fix dropdown arrow spacing */

.nav-desktop .menu-item.dropdown > a{

padding-left: 28px !important;

}

.nav-desktop .menu-item.dropdown > a::before,
.nav-desktop .menu-item.dropdown > a i{

margin-right: 8px !important;

}