.index-card .picture-block {
  display: grid;
  grid-template-rows: 200px 50px;
  flex-direction: column;
  align-items: center;
  margin: 15px;
  height: 250px;
  border-radius: 13px;
  background: white;
}

.index-card .product-name {
  font-family: "Roboto Medium";
  text-align: center;
  font-size: 11px;
  color: black;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.index-card .picture-block img {
  max-width: 75%;
  max-height: 75%;
  margin: auto;
}

.index-card .price-block {
  display: grid;
  grid-template-columns: 1fr 80px;
  padding: 5px;
  border-radius: 17px;
  background: white;
  margin: 15px;
  gap: 10px;
}

.index-card .price {
  border-radius: 13px;
  display: grid;
  grid-template-columns: 1fr 40px;
  background: #FAFAFA;
}

.index-card .price * {
  display: flex;
  align-items: center;
}

.index-card .price *:first-child {
  font-family: "Roboto";
  padding-left: 15px;
  font-size: 18px;
  color: black;
}

.index-card .price *:last-child {
  font-family: "Roboto";
  font-size: 10px;
  color: black;
}

.index-card button {
  appearance: none;
  background: none;
  border: none;
  background: linear-gradient(92.03deg, #FF7A00 25.18%, #FF9900 102.75%);
  border-radius: 13px;
  width: 100%;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-card button img {
  height: 15px;
}