.katalog { max-width: 1200px; margin: 0 auto; padding: 20px; }

.katalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 601px) and (max-width: 960px) {
  .katalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 961px) {
  .katalog-grid { grid-template-columns: repeat(3, 1fr); }
}

.katalog-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.katalog-card img { width: 100%; height: auto; display: block; margin-bottom: 12px; }
.katalog-card .price { font-weight: 600; }
.katalog-card .specs { margin: 12px 0; color: var(--graphite); font-size: 14px; }

/* Mobile: expanding a card takes the full row width instead of scaling,
   since there's only one column to grow into anyway. */
.katalog-card.expanded { grid-column: 1 / -1; }

@media (min-width: 601px) {
  .katalog-card.expanded {
    grid-column: auto;
    transform: scale(1.04);
    z-index: 1;
  }
}

.katalog-card.recommended { border: 2px solid var(--taupe); }

.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--taupe);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

/* Booking modal */
.booking-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.booking-modal.hidden { display: none; }
.booking-modal__overlay { position: absolute; inset: 0; background: rgba(74,74,74,0.4); }
.booking-modal__box {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 90%;
  max-width: 360px;
  box-shadow: var(--shadow-glass);
}
.booking-modal__phone { width: 100%; box-sizing: border-box; padding: 10px 12px; margin: 12px 0; border-radius: var(--radius-sm); border: var(--border); font-family: var(--font-body); }
.booking-modal__error { color: #b3382c; font-size: 14px; margin-bottom: 8px; }
.booking-modal__error.hidden { display: none; }
.booking-modal__actions { display: flex; gap: 12px; justify-content: flex-end; }
