#product .add-to-compare {
  display: inline-block;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  min-width: 2.5rem;
  padding-top: .1875rem;
  background-color: #fff;
  box-shadow: .125rem -0.125rem .25rem 0 rgba(0, 0, 0, .2);
  border-radius: 50%;
  cursor: pointer;
  transition: .2s ease-out;
  border: none;
}

.add-to-compare {
  display: inline-block;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 2.5rem;
  min-width: 2.5rem;
  background-color: #fff;
  cursor: pointer;
  transition: .2s ease-out;
  border: 0;
  color:#888;
}

.highlighted {
    background-color: #444!important;
    color: white;
    border-color: #444!important;
}

.compare-container {
    padding: 20px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.compare-table th {
    background-color: #f8f8f8;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.compare-actions {
    margin-top: 20px;
    text-align: center;
}

/* Estilo para o botão flutuante */
.btn-compare-products {
    position: fixed;
    bottom: 20px;  /* Distância do fundo da tela */
    right: 20px;   /* Distância da lateral direita */
    background-color: #920E0C; /* Cor de fundo */
    color: white;  /* Cor do texto */
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Sombra para o botão */
    font-size: 12px;  /* Tamanho do ícone */
    text-align: center;
    z-index: 1000; /* Certifica que o botão fique sobre outros elementos */
    transition: all 0.3s ease-in-out; /* Animação suave */
}

/* Estilo do ícone */
.btn-compare-products i {
    font-size: 12px; /* Aumenta o tamanho do ícone */
}

/* Efeito de hover para o botão */
.btn-compare-products:hover {
    background-color: #920E0C;  /* Cor de fundo alterada ao passar o mouse */
    transform: scale(1.1);  /* Leve aumento de tamanho ao passar o mouse */
}


