
/* ========== KONTEJNER ========== */
#ai-perfume-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #222;
}

/* ========== FORMULÁŘ ========== */
#ai-perfume-form textarea {
  width: 100%;
  max-width: 700px;
  padding: 20px 24px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  font-size: 18px;
  margin-bottom: 12px;
}

#ai-perfume-form label {
	margin: 20px 0;
	font-family: Jost;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
}
¨
#ai-perfume-form button {
  background-color: #000;
  color: #fff;
  padding: 20px 28px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
  font-weight: 500;
}

#ai-perfume-form button:hover {
  background-color: #444;
}

/* ========== VÝSLEDKY ========== */
#ai-perfume-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-items: center;
  text-align: center;
  width: 100%;
}

/* ========== KARTA PRODUKTU ========== */
.perfume-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.perfume-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.perfume-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}

.perfume-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 5px 0;
}

.perfume-card p {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
  min-height: 40px;
}

.perfume-card a {
  display: inline-block;
  margin-top: 8px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.perfume-card a:hover {
  color: #666;
}

/* ========== LOADER ========== */
#ai-perfume-results.loading::after {
  content: "✨ Hledám tu pravou vůni...";
  grid-column: 1 / -1;
  font-style: italic;
  color: #777;
}
