.breadcrumb-custom {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-style: italic;
}

.breadcrumb-custom a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-custom .separator {
  margin: 0 8px;
  font-size: 10px;
}

/* SIDEBAR (Esquerda) */
.sidebar-search .form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding-right: 35px;
}

.sidebar-search .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  background: none;
  border: none;
}

.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: color 0.2s;
}

.category-list a:hover,
.category-list a.active {
  color: var(--primary-color);
}

/* Filtro de Banho (Bolinhas) */
.filter-banho-list {
  list-style: none;
  padding: 0;
}

.filter-banho-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.filter-banho-item:hover {
  color: var(--primary-color);
}

.dot-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-ouro {
  background-color: #D4AF37;
}

.dot-rodio {
  background-color: #E0E0E0;
  border: 1px solid #ccc;
}

.dot-rose {
  background-color: #B76E79;
}

/* MAIN CONTENT (Direita) */
.category-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 10px;
}

.category-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 800px;
}

/* Tags de Filtro Ativo */
.active-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-tag {
  background-color: #FDECEC;
  /* Rosinha claro */
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.filter-tag i {
  font-size: 10px;
}

/* Limita o card de esticar e centraliza ele na coluna do Bootstrap */
.produto-card {
  max-width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
}

.produto-card:hover {
  transform: none;
  box-shadow: none;
}

.produto-imagem-wrap-categoria {
  display: block;
  margin-bottom: 20px;
  position: relative;
  background-color: #fcfcfc;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.produto-imagem-wrap-categoria a {
  display: block;
  width: 100%;
  height: 100%;
}

.produto-imagem-wrap-categoria img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.08));
  mix-blend-mode: darken;
  transition: transform 0.4s ease;
}

.produto-info {
  text-align: left;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.produto-nome {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.produto-preco-atual {
  font-family: var(--font-sans, 'Inter', sans-serif);
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
  color: #111;
}

.produto-preco-parcelado {
  font-family: var(--font-sans, 'Inter', sans-serif);
  display: block;
  font-size: 0.8rem;
  color: var(--primary-color, #d09c98);
  margin-top: 2px;
}

.btn-ver-joia {
  display: block;
  width: 100%;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  padding: 10px 0;
  margin-top: 15px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s, color 0.3s;
}

.btn-ver-joia:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ==========================================
   PAGINAÇÃO (Estilo Protótipo Figma)
   ========================================== */
.pagination-wrapper .pagination {
  gap: 10px;
  /* Espaço entre os botões */
  align-items: center;
}

.pagination-wrapper .page-item {
  margin: 0;
}

.pagination-wrapper .page-link {
  border: none;
  border-radius: 4px;
  background-color: #f5f5f5;
  /* Fundo cinza super claro */
  color: #555;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Os botões com texto (Voltar e Próximo) */
.pagination-wrapper .btn-paginacao {
  padding: 8px 18px;
  letter-spacing: 0.5px;
}

/* As caixinhas dos números */
.pagination-wrapper .btn-paginacao-num {
  width: 38px;
  height: 38px;
  padding: 0;
  /* Zera para forçar o número a ficar no centro exato */
}

/* O estado ATIVO (A cor Rosé) */
.pagination-wrapper .page-item.active .page-link {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 10px rgba(213, 154, 147, 0.3);
  /* Um leve brilho embaixo */
}

/* Quando passa o mouse nos itens que não estão ativos */
.pagination-wrapper .page-link:hover:not(.disabled) {
  background-color: #e9e9e9;
  color: var(--primary-color);
}

/* Ignora o hover no item ativo */
.pagination-wrapper .page-item.active .page-link:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Quando está na primeira/última página e o botão desativa */
.pagination-wrapper .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f5f5f5;
  color: #aaa;
}