* {
  font-family: "Poppins", sans-serif;
}

.font {
  color: #A61B38;
}

.image-box {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
  background-color: rgba(242, 242, 242, 1);
  margin-right: 10px;
  cursor: pointer;
}

.image-box img {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  margin: auto;
}

.product {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.product-name {
  font-weight: bold;
  font-size: 1.2rem;
}

.product-price {
  font-weight: bold;
  font-size: 1.1rem;
}

.card {
  cursor: pointer;
}

.options-container {
  position: relative;
  overflow: hidden;
}

.options-overlay {
  position: absolute;
  top: 100;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  width: 100%;
}

.options-overlay-content {
  margin-top: 250px;
  border-radius: 5px;
  width: 100%;
}

.options-container:hover .options-overlay {
  opacity: 1;
  border-radius: 5px;
}

.product-name {
  font-size: 0.85rem;
}

.product-price {
  margin-left: auto;
}

.color-bt {
  background-color: #A61B38;
  color: white;
  padding: 6px 20px;
  border: none;
  border-radius: 0px;
  font-size: 16px;
}

.color-btn {
  background-color: #A61B38;
  color: white;
  padding: 6px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.Mr_furniture_btn {
  background-color: #FCFCFC;
  color: #000;
  padding: 6px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.color-bt:hover {
  background-color: #A61B38;
}

.furniture-text-color {
  color: #A61B38;
}

.find-btn {
  background-color: #A61B38;
  color: white;
  padding: calc(1px + 0.5vw) calc(4px + 1vw);
  border: none;
  border-radius: 5px;
  font-size: calc(5px + 1vw);
}

.find-btn:hover {
  background-color: #A61B38;
}

.scroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

.scroll::-webkit-scrollbar {
    height: 6px;
    width: 6px;
    border-radius: 10px;
    background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c1c1c18a;
    transition: all ease-in-out 1s;
}

.scroll:hover::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c1c1c18a;
    transition: all ease-in-out 1s;
}
