.s-block--full-bg:first-of-type {
    margin-top: -33px;
}

/* ✅ تحريك واضح لشعار الموقع */
.header .logo img {
  transition: transform 0.5s ease-in-out;
}
.header .logo img:hover {
  transform: rotate(-3deg) scale(1.05);
}

/* ✅ تعديل شكل كروت المنتجات */
.products-grid .product-card {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  border-radius: 12px;
}
.products-grid .product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ✅ تغيير لون زر الإضافة للسلة */
.product-card .add-to-cart-btn,
.single-product .add-to-cart-btn {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.product-card .add-to-cart-btn:hover,
.single-product .add-to-cart-btn:hover {
  background-color: #222 !important;
}

/* ✅ تعديل عنوان المنتج */
.product-card .product-title,
.single-product .product-title {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  text-align: center;
}

/* ✅ حركة على بادج الخصم */
.product-card .discount-badge {
  background: #ff5252 !important;
  color: #fff !important;
  animation: pulseBadge 1.5s infinite;
  border-radius: 30px;
}
@keyframes pulseBadge {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

#main-slider-0 > div {
border-radius: 0rem 0rem 2rem 2rem;
}
@media only screen and (max-width: 520px) {
#main-slider-0 > div  {
margin-top: 1rem !important;
}
}

#app > div.app-inner.flex.flex-col.min-h-full.with-transparent-header.relative > section.s-block.s-block--features.angel-features.py-8.angel_anime.animate__.animate__fadeIn.mask-block > div > div.grid.grid-cols-3.items-baseline.gap-2.sm\:gap-6.lg\:gap-4 > div:nth-child(1) > div.flex-center.h-14.w-14.md\:h-20.md\:w-20 > div, #app > div.app-inner.flex.flex-col.min-h-full.with-transparent-header.relative > section.s-block.s-block--features.angel-features.py-8.angel_anime.animate__.animate__fadeIn.mask-block > div > div.grid.grid-cols-3.items-baseline.gap-2.sm\:gap-6.lg\:gap-4 > div:nth-child(2) > div.flex-center.h-14.w-14.md\:h-20.md\:w-20 > div, #app > div.app-inner.flex.flex-col.min-h-full.with-transparent-header.relative > section.s-block.s-block--features.angel-features.py-8.angel_anime.animate__.animate__fadeIn.mask-block > div > div.grid.grid-cols-3.items-baseline.gap-2.sm\:gap-6.lg\:gap-4 > div:nth-child(3) > div.flex-center.h-14.w-14.md\:h-20.md\:w-20 > div {
    border-radius: 1rem;
}


/* تكبير الشعار */
img.logo-light {
  height: 60px !important;   /* عدل الرقم حسب الحجم اللي تبيه */
  width: auto !important;    /* يخلي العرض يتناسب تلقائي */
  max-height: none !important;
}