/* =========================================================
   APOTHÉA — Bibliothèque (UI filtres + grille)
========================================================= */

.apothea-library {
  --color-bg: #F2EAE0;
  --color-primary: #9B5241;
  --color-text: #3A3A3A;
  --color-muted: #8C8C8C;
  --color-border: rgba(0, 0, 0, 0.08);

  width: 100%;
}

/* ===== TOOLBAR ===== */

.apothea-library-toolbar {
  background: var(--color-bg);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* ===== SEARCH ===== */

.apothea-library-search {
  width: 100%;
  max-width: 1000px;
}

.apothea-library-search-input {
  width: 100%;
  max-width: 1000px;
  height: 60px;
  padding: 0 24px;
  background: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.apothea-library-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 82, 65, 0.12);
}

.apothea-library-search-input::placeholder {
  color: var(--color-muted);
  opacity: 1;
  text-align: center;
}


/* ===== PILLS TYPE ===== */

.apothea-library-type-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.apothea-pill {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.apothea-pill:hover {
  transform: translateY(-1px);
}

.apothea-pill.is-active {
  background: var(--color-primary);
  color: #fff;
}


/* ===== SELECTS ===== */

.apothea-library-selects {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.apothea-library-select-wrap {
  flex: none;
}

.apothea-library-select {
  width: 220px;
  height: 44px;
  padding: 0 40px 0 14px;
  background: #fff;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%239B5241' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.apothea-library-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 82, 65, 0.12);
}


/* ===== RESET BUTTON ===== */

.apothea-library-reset {
  height: 44px;
  padding: 0 20px;
  background: transparent;
  border: 2px solid #9B5241;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #9B5241;
  transition: all 0.2s ease;
  cursor: pointer;
}

.apothea-library-reset:hover {
  border: 2px solid #656B51;
  color: #656B51;
}

/* ===== META / COUNT ===== */

.apothea-library-meta {
  margin-top: 24px;
}

.apothea-library-count {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  text-align: center;
}

/* ===== GRID ===== */

.apothea-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  width: 100%;
}

/* ===== CARD ===== */

.apothea-library-card {
  min-width: 0;
}

.apothea-library-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ===== IMAGE ===== */

.apothea-library-card-thumb {
  background: none;
  overflow: hidden;
}

.apothea-library-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*.apothea-library-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #EDE5DC;
}*/


/* ===== CONTENT ===== */

.apothea-library-card-content {
  padding: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* TYPE TAG */

.apothea-library-card-type {
  display: inline-block;
  padding: 4px 12px;
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
}

/* TITLE */

.apothea-library-card-title {
  font-size: 18px;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

/* TAGS */

.apothea-library-card-taxonomies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* TAG */

.apothea-library-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #F5F5F5;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  color: var(--color-text);
}


/* ===== EMPTY STATE ===== */

.apothea-library-empty {
  margin-top: 24px;
  padding: 20px;
  background: transparent;
  border-radius: 0;
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .apothea-library-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .apothea-library-type-pills {
    justify-content: flex-start;
  }

  .apothea-library-selects {
    flex-direction: column;
  }

  .apothea-library-select-wrap {
    width: 100%;
  }

  .apothea-library-reset {
    width: 100%;
  }

  .apothea-library-grid {
    grid-template-columns: 1fr;
  }
}