.contentBookshelvesHeaderSearch {
  margin-top: 24px;
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bookshelves-search-form {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.bookshelves-search-input {
  width: 100%;
  padding: 12px 12px 12px 56px;
  border: 1px solid #ABABAB;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  height: 60px;
}

@media (min-width: 768px) {
  .bookshelves-search-input {
    min-width: 679px;
  }
}

.bookshelves-search-input::placeholder {
  color: #5E5E5E;
}

.bookshelves-search-input:hover {
  border-color: rgba(0, 0, 0, 0.87);
}

.bookshelves-search-input:focus {
  outline: none;
  border-color: #1C7859;
  box-shadow: 0 0 0 1px #1C7859;
}

/* Estilizar o X do input search */
.bookshelves-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%235E5E5E"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
  background-size: 20px 20px;
  cursor: pointer;
}

.contentBookshelvesFilterChips {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 767px) {
  .contentBookshelvesFilterChips {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }
}

.filter-chips-label {
  font-weight: 500;
  flex-shrink: 0;
  color: var(--color-surface-onSurfaceVariant, #5E5E5E);
  text-align: center;
  font-family: Roboto;
  font-size: var(--font-size-xs, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: 0.6px;
}

.filter-chips-swiper {
  flex: 1;
  width: 100%;
  position: relative;
  overflow: visible;
}

@media (max-width: 767px) {
  .filter-chips-swiper {
    overflow: hidden;
    width: calc(100vw - 10px);
    max-width: 100%;
  }
}

.filter-chips-container {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .filter-chips-container {
    flex-wrap: nowrap;
  }
}

.filter-chip {
  padding: 8px 12px;
  background: #f0f0f0;
  border: 1px solid #ABABAB;
  border-radius: 99px;
  color: #5E5E5E;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 400;
  color: var(--color-surface-onSurfaceVariant, #5E5E5E);
  text-align: center;
  font-family: var(--Desktop-Label-Medium-font-family, Roboto);
  font-size: var(--Desktop-Label-Medium-font-size, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Desktop-Label-Medium-line-height, 20.72px);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 8px;
}

.filter-chip:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .filter-chip {
    width: auto !important;
    min-width: fit-content;
  }
}

.filter-chip:hover {
  background: #DDF5EC;
  border-color: #1C7859;
}

.filter-chip.active {
  background: #1f8563;
  color: #fff;
  border-color: #1f8563;
}

.chips-navLeft,
.chips-navRight {
  display: none;
}

.no-results-message {
  padding: 40px 20px;
  text-align: center;
  color: #5E5E5E;
}

.no-results-message svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results-message h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: rgba(0, 0, 0, 0.87);
}

.no-results-message p {
  font-size: 14px;
  margin: 0;
  color: #5E5E5E;
}

.search-skeleton {
  padding: 20px 0;
}

.skeleton-item {
  margin-bottom: 40px;
}

.skeleton-header {
  width: 200px;
  height: 28px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 20px;
}

.skeleton-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.skeleton-card {
  width: 180px;
  height: 280px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}