.mmm-carousel-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mmm-carousel {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mmm-carousel::-webkit-scrollbar { display: none; }

/* Prev / Next arrows — same pill design as the old "All" button */
.mmm-car-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-size: .9rem;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
  line-height: 1;
}

.mmm-car-arrow i {
  line-height: 1;
  display: block;
}

.mmm-car-arrow:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.mmm-car-prev { margin-left: 8px; }
.mmm-car-next { margin-right: 8px; }

.mmm-car-item {
  flex-shrink: 0;
  width: 216px;
  height: 288px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: .2s ease;
  opacity: .7;
}

.mmm-car-item:hover { opacity: 1; transform: translateY(-2px); }

.mmm-car-item.mmm-car-active {
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-2px);
}

.mmm-car-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
