/* === Perks-styled categories grid (ported from Hippy Trippy, recolored) === */

.pcats {
  background: #FFFBE4;
  border: 2px solid #4D008C;
  border-radius: 18px;
  padding: 26px 60px 34px;
  margin: 36px 0;
}

.pcats--no-padding {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.pcats__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.pcats__title-main {
  margin: 0;
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.05;
  color: #4D008C;
}

.pcats__shop-all:link,
.pcats__shop-all:visited {
  flex-shrink: 0;
  background: #FFD400;
  color: #4D008C;
  border: 2px solid #4D008C;
  border-radius: 12px;
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.4;
  padding: 8px 56px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.pcats__shop-all:hover,
.pcats__shop-all:active {
  background: #4D008C;
  color: #FFD400;
}

.pcats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pcats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  background: #4D008C;
  border: 2px solid #4D008C;
  border-radius: 16px;
  padding: 22px 16px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pcats__card:hover {
  transform: translateY(-4px);
  border-color: #FFD400;
  box-shadow: 0 10px 22px rgba(77, 0, 140, 0.25);
}

.pcats__icon {
  width: 100%;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcats__icon img {
  width: 60%;
  max-width: 150px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.pcats__label {
  margin: 14px 0 0;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #FFFBE4;
}

.pcats__shop-all--mobile {
  display: none;
}

@media screen and (max-width: 1100px) {
  .pcats {
    padding: 22px 36px 30px;
  }
  .pcats__title-main {
    font-size: 30px;
  }
  .pcats__shop-all:link,
  .pcats__shop-all:visited {
    font-size: 20px;
    padding: 8px 34px;
  }
}

@media screen and (max-width: 860px) {
  .pcats {
    padding: 20px 18px 26px;
    border-radius: 14px;
  }
  .pcats__top {
    margin-bottom: 18px;
    justify-content: center;
  }
  .pcats__title-main {
    font-size: 24px;
    text-align: center;
  }
  .pcats__top .pcats__shop-all {
    display: none;
  }
  .pcats__shop-all--mobile {
    display: inline-block;
    margin: 22px auto 0;
    text-align: center;
  }
  .pcats__grid {
    gap: 12px;
  }
  .pcats__card {
    padding: 14px 8px 12px;
    border-radius: 12px;
  }
  .pcats__icon img {
    width: 72%;
  }
  .pcats__label {
    margin-top: 9px;
    font-size: 12px;
  }
  .pcats--no-padding {
    text-align: center;
  }
}

@media screen and (max-width: 420px) {
  .pcats__label {
    font-size: 11px;
  }
}
