.botones-producto {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6fr 0.5rem 6fr;
  grid-template-columns: 6fr 6fr;
  grid-auto-rows: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.botones-producto-reclamar, .botones-producto-deseados {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0.8rem;
  padding: 0.9rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #FFFFFF;
  outline: none;
}
.botones-producto-reclamar:hover, .botones-producto-deseados:hover {
  cursor: pointer;
}
.botones-producto-reclamar:focus, .botones-producto-deseados:focus {
  outline: none;
}
.botones-producto > button[disabled] {
  color: #131313;
  background: #dfdfdf;
}
.botones-producto > button[disabled]:hover {
  cursor: not-allowed;
}
.botones-producto-reclamar {
  background-color: #2D9564;
}
.botones-producto-deseados {
  background-color: #E6670D;
}
.botones-producto-deseados--home {
  width: 70px;
}

@media (min-width: 1200px) {
  .botones-producto {
    gap: 0.5vw;
  }
  .botones-producto-reclamar, .botones-producto-deseados {
    border-radius: 0.6vw;
    padding: 0.65vw 0.5vw;
    font-size: 0.8vw;
    font-family: "Inter", sans-serif;
    font-weight: 500;
  }
  .botones-producto-reclamar--home, .botones-producto-deseados--home {
    width: 7vw;
  }
}