/* Novi stilovi za početnu / FIMO blok i donju navigaciju */
/* Stari style.css ostaje dok sve ne prebacimo. */


/* --- FIMO / kategorijska kartica --- */

.category-highlight {
  padding: 2.5rem 1.25rem 4rem;
}

.category-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  background: #ffe7dd;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.category-image {
  border-radius: 24px;
  min-height: 260px;
  background: linear-gradient(135deg, #fbe3d8, #ffd5c0);
  overflow: hidden;
}

/* Privremeni placeholder tekst dok ne stavimo pravu sliku */
.category-image::before {
  content: "Ovdje ide kolaž FIMO naušnica";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: #7a4a38;
  font-weight: 500;
}

.category-content h1,
.category-content h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.category-content p {
  margin: 0 0 0.9rem;
  line-height: 1.6;
}

.category-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b25a3d;
  margin-bottom: 0.4rem;
}

/* Gumb */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: #ff8c6a;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 18px rgba(255, 140, 106, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff7247;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 114, 71, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(255, 114, 71, 0.35);
}

/* Po potrebi kasnije možemo dodati posebne varijante za druge kolekcije */
.fimo-highlight .category-inner {
  background: #ffe7dd;
}

/* Responsivnost FIMO kartice */

@media (max-width: 768px) {
  .category-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.8rem 1.6rem;
  }

  .category-image {
    min-height: 210px;
  }

  .category-content h1,
  .category-content h2 {
    font-size: 1.5rem;
  }
}
