/* جود ستايل - قسم تصنيفاتنا فقط */

/* عنوان تصنيفاتنا */
.s-block__title h2.da-cp {
  font-size: 24px !important;
  font-weight: 800 !important;
  text-align: right !important;
  margin-bottom: 14px !important;
}

/* شبكة التصنيفات */
.square-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: stretch !important;
}

/* كل بطاقة */
.square-grid .banner-square {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: #eee !important;
  height: 320px !important;
  min-height: 320px !important;
}

/* الرابط والصورة داخل البطاقة */
.square-grid .banner-square a,
.square-grid .banner-square .box-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}

/* إلغاء الدائرة */
.square-grid .banner-square .rounded-full,
.square-grid .banner-square .box-img.rounded-full,
.square-grid .banner-square .text-wrapper.rounded-full {
  border-radius: 0 !important;
}

/* الصورة */
.square-grid .banner-square img {
  width: 100% !important;
  height: 100% !important;
  min-height: 320px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  aspect-ratio: unset !important;
  display: block !important;
  transition: transform .35s ease, filter .35s ease !important;
}

/* النص فوق الصورة */
.square-grid .banner-square .text-wrapper {
  position: absolute !important;
  bottom: 12px !important;
  right: 8px !important;
  left: 8px !important;
  z-index: 5 !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
}

.square-grid .banner-square .text-wrapper h3 {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  text-shadow: 0 2px 9px rgba(0,0,0,.9) !important;
}

/* ظل أسفل الصورة */
.square-grid .banner-square::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,0));
  z-index: 3;
  pointer-events: none;
}

/* لمعة بارلينا */
.square-grid .banner-square::before {
  content: "";
  position: absolute;
  top: 0;
  right: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 38%,
    rgba(255,255,255,.75) 50%,
    rgba(255,255,255,.18) 62%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-22deg);
  z-index: 6;
  opacity: 0;
  pointer-events: none;
}

/* تشغيل اللمعة */
.square-grid .banner-square:hover::before,
.square-grid .banner-square:active::before {
  animation: joodShine .8s ease forwards;
}

/* تكبير خفيف عند المرور */
.square-grid .banner-square:hover img {
  transform: scale(1.04) !important;
  filter: brightness(.9) !important;
}

@keyframes joodShine {
  0% {
    right: -90%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    right: 130%;
    opacity: 0;
  }
}

/* التابلت */
@media (max-width: 992px) {
  .square-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .square-grid .banner-square,
  .square-grid .banner-square img {
    height: 260px !important;
    min-height: 260px !important;
  }
}

/* الجوال */
@media (max-width: 768px) {
  .square-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .square-grid .banner-square,
  .square-grid .banner-square img {
    height: 230px !important;
    min-height: 230px !important;
  }

  .square-grid .banner-square .text-wrapper h3 {
    font-size: 13px !important;
  }
}