/* ═══════════════════════════════════════════
   AMALYS – Órakollekcó oldal stílusok
   ═══════════════════════════════════════════ */

/* Oldal alap */
.col-page {
  background: #fff;
  min-height: 100vh;
}

/* Hero – split layout (amalys.com mintájára) */
.col-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 46vw, 660px);
}
.col-hero-split__img {
  overflow: hidden;
}
.col-hero-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.col-hero-split__content {
  background: #3d4a33;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 5vw, 72px) clamp(32px, 5vw, 72px);
  color: #fff;
}
.col-hero-split__tag {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.col-hero-split__title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(26px, 3.8vw, 58px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.12;
  color: #fff;
  margin: 0;
}
.col-hero-split__desc {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
@media (max-width: 800px) {
  .col-hero-split {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .col-hero-split__img {
    width: 100%;
    height: 56vw;
    min-height: 200px;
    max-height: 320px;
    aspect-ratio: unset;
    flex-shrink: 0;
  }
  .col-hero-split__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .col-hero-split__content {
    padding: 32px 24px 36px;
    gap: 20px;
    min-height: 200px;
  }
  .col-hero-split__title {
    font-size: clamp(22px, 7vw, 38px);
  }
}

/* Rács */
.col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e4de;
  margin: 0;
  padding: 0;
}

/* Kártya */
.col-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Kép konténer */
.col-card__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f3f0;
}
.col-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.6s ease;
}
.col-card__img--s {
  opacity: 0;
}
.col-card:hover .col-card__img--p {
  opacity: 0;
}
.col-card:hover .col-card__img--s {
  opacity: 1;
}
.col-card:hover .col-card__img--p,
.col-card:hover .col-card__img--s {
  transform: scale(1.03);
}

/* Badge */
.col-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: 'Urbanist', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a1a;
  padding: 4px 8px;
}

/* Info */
.col-card__info {
  padding: 14px 16px 18px;
  background: #fff;
}
.col-card__coll {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 4px;
}
.col-card__name {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.col-card__price {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0;
}

/* Aktív szűrő sáv */
.col-filter-bar {
  padding: 10px 24px;
  font-size: 12px; letter-spacing: .06em;
  border-bottom: 1px solid #e5e5e5;
}
.col-filter-bar a { color: #888; text-decoration: underline; }
.col-filter-bar a:hover { color: #1a1a1a; }

/* Üres lista */
.col-empty {
  padding: 60px 24px; text-align: center;
  color: #888; font-size: 14px; letter-spacing: .06em;
  grid-column: 1 / -1;
  background: #fff;
}

/* Reszponzív */
@media (max-width: 1024px) {
  .col-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .col-header { padding: 36px 20px 24px; }
  .col-card__info { padding: 10px 12px 14px; }
  .col-card__name { font-size: 12px; }
}
