.categories-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.category {
  width: 90%;
  height: 200px;
}
.category-logo {
  position: absolute;
  width: 60px;

  /* opacity: 0.3; */
  left: 10px;
  top: 10px;
  background-color: #0000008b;
  padding: 0.5rem;
  border-radius: 50%;

  z-index: 3;
}
.category a {
  position: relative;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* background: url(/assets/blurbackground.jpeg); */
  background-position: center;
  background-size: cover;
  color: white;
  text-decoration: none;
  overflow: hidden; /* مهم حتى لا يظهر ::before خارج a */
}

.category a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; /* حجم الـ before داخل a */
  height: 100%;
  background: #252525;
  opacity: 0.2;
  border-radius: 26px;
  box-sizing: border-box;
  z-index: 1;
}

.category a h2 {
  z-index: 2; /* نضمن النص فوق الـ before */
  position: relative;
  background-color: #2525256f;
  padding: 0.5rem;
  border-radius: 2rem;
  text-align: center;
}
