/* Override — mini cards da faixa de categorias (Shopee-like) */
.mp-cat-strip {
  background: #fff !important;
  border-top: 0 !important;
  border-bottom: 1px solid #e2e8e2;
  padding: 1rem 0 1.15rem;
  display: block !important;
}

.mp-cat-strip .container {
  max-width: 1100px;
}

.mp-cat-strip ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.mp-cat-strip ul::-webkit-scrollbar {
  height: 4px;
}

.mp-cat-strip ul::-webkit-scrollbar-thumb {
  background: rgba(1, 61, 11, 0.25);
  border-radius: 999px;
}

.mp-cat-strip li {
  flex: 0 0 auto;
  list-style: none;
}

.mp-cat-strip a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  width: 92px;
  min-height: 96px;
  padding: 0.65rem 0.4rem 0.55rem;
  text-decoration: none;
  color: #1f2937 !important;
  background: #fff;
  border: 1px solid #e2e8e2;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  white-space: normal;
  opacity: 1;
  font-size: inherit;
  font-weight: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mp-cat-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 89, 0.45);
  box-shadow: 0 8px 18px rgba(1, 61, 11, 0.1);
  color: #013d0b !important;
  background: #fff;
  opacity: 1;
}

.mp-cat-strip a:hover .mp-cat-icon {
  background: rgba(0, 168, 89, 0.12);
  color: #00a859;
}

.mp-cat-strip .mp-cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f6f8f6;
  color: #013d0b;
  transition: background 0.2s ease, color 0.2s ease;
}

.mp-cat-strip .mp-cat-icon i {
  font-size: 1.05rem;
}

.mp-cat-strip .mp-cat-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: normal;
}

@media (max-width: 768px) {
  .mp-cat-strip {
    display: block !important;
    padding: 0.85rem 0 1rem;
  }

  .mp-cat-strip ul {
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.35rem;
  }

  .mp-cat-strip a {
    width: 78px;
    min-height: 88px;
    padding: 0.55rem 0.3rem 0.45rem;
  }

  .mp-cat-strip .mp-cat-icon {
    width: 40px;
    height: 40px;
  }

  .mp-cat-strip .mp-cat-icon i {
    font-size: 0.95rem;
  }

  .mp-cat-strip .mp-cat-label {
    font-size: 0.68rem;
  }
}
