.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card__image {
  position: relative;
  height: 13rem;
  overflow: hidden;
  background: var(--color-icon-bg);
}

.product-card__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-icon-bg);
}

.product-card__carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-card__carousel-slide.active {
  opacity: 1;
}

/* Стрелки как в hero */
.product-prev,
.product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-prev:hover,
.product-next:hover {
  background: rgba(42, 127, 170, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

.product-prev .myicon,
.product-next .myicon {
  font-size: 20px;
  color: white;
}

.product-prev {
  left: 10px;
}

.product-next {
  right: 10px;
}

/* Точки как в hero */
.product-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-dot.active {
  background: #2a7faa;
  width: 24px;
  border-radius: 4px;
}

.product-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.product-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-card__header h3 {
  font-weight: 700;
  font-size: 1.15rem;
}

.price__label {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.price__value {
  font-weight: 800;
  font-size: 1.3rem;
}

.price__value small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.price__value--accent {
  color: var(--color-brand);
}

.product-card__specs {
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-card__specs .myicon {
  font-size: 1rem;
  vertical-align: middle;
  margin-right: 0.3rem;
  color: var(--color-text-light);
}

.catalog__footer {
  text-align: center;
  margin-top: 2.5rem;
}

.catalog__footer p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.btn--disabled {
  background: #9ca3af;
  color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn--disabled:hover {
  transform: none;
  background: #9ca3af;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.badge-busy {
  background: #dc2626;
  color: white;
}