.category-list-item {
  background-color: #fff;
}

.categories-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  margin-inline: auto;
  flex-wrap: nowrap;
 justify-content: safe center;
}

.category-list-item {
  min-width: 200px;
  padding: 18px 0px 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  border-radius: 1.5rem;
}

.category-list-item-img {
  width: 100px;
  aspect-ratio: 1/1;
  /* height: 100px; */
  border-radius: 1.5rem 0 1.5rem 0;
  overflow: hidden;
}

.category-list-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem 0 1.5rem 0;
  object-fit: cover;
}

.category-list-item-name {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: superboys, sans-serif;
  letter-spacing: 1.4px;
  /* text-align: center; */
}

.category-list-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 20px;
}

.arrow-redirect {
  font-size: 28px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  background-color: white;
  margin-bottom: 20px;
  border: 2px dashed black;
}

.category-list-item-subtext {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-top: 4px;
  font-family: "sunnyspells";
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.discount-label {
  display: inline-block;
  padding: 2px 12px;
  font-size: 14px;
  font-weight: bold;
  color: var(--brand-color);
  background: linear-gradient(to right,
      var(--brand-color-100),
      #fff);
  /* Gradient background */
  border-radius: 15px;
  background-clip: padding-box;
  margin-top: 8px;
}
.discount-on-category{
  height: 33px;
}
@media (max-width: 992px) {
  .categories-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    justify-content: safe center;
  }
}

@media (max-width: 767px) {
  .categories-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .category-list-item {
    min-width: calc(50% - 0.5rem);
    /* Each item takes 50% minus the gap */
    max-width: none;
    /* Ensure it doesn't limit width */
  }

  .category-list-item-name {
    font-size: 1.05rem;
  }

  .category-list-item-subtext {
    font-size: 1rem;
    margin-top: 0px;
  }

  .discount-label {
    font-size: 10px;
    margin-top: 4px;
  }

  .category-list-item-img {
    width: 90px;
    aspect-ratio: 1/1;
    display: flex;
    flex-shrink: 0;
  }

  .category-list-item-footer {
    margin-top: 10px;
  }
}

@media (max-width: 360px) {
  .arrow-redirect {
    /* visibility: hidden; */
  }
}

.category-list-name{
  font-size: 1.75rem;
  font-family: "SuperBoys", sans-serif;
  text-transform: uppercase;
margin-bottom: 0px;
}
.view-more-link{
  font-size:1.25rem;
  font-family: "Sunnyspells", sans-serif;
  text-transform: capitalize;
  letter-spacing: 1.4px;
}

@media (max-width: 576px) {
  .category-list-name{
    font-size: 1.5rem;
  }
  .view-more-link{
    font-size:1.15rem;

  }
}

@media (max-width: 576px) {
  .category-list-name{
    font-size: 1.25rem;
  }
  .view-more-link{
    font-size:1rem;
  }
}

.subtext-category-item{
  min-height: 22.08px;
}
@media (max-width: 576px) {
  .subtext-category-item{
    min-height: 19.2px;
  }
}
