.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  text-decoration: none;
  margin-left: -15px;
  margin-right: -15px;
  
  &:hover, &:focus {
    background-color: rgba(256,256,256,0.5);
  }
}

.product-card-name {
  flex: 1 1 60%;
}

.product-card-options {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.product-card-option {
  line-height: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-card-option-price {
  display: block;
  font-size: 16px;
}

.product-card-option-name {
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.product-modal-action {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;

  input {
    flex: 1 1 25%;
    width: 100%;
    height: 41px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    background-color: #d7dfd5;
    padding: 12px 20px;
    font-weight: bold;
  }

  button {
    flex: 1 1 75%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;

    &:hover, &:focus {
      opacity: 0.9;
    }

  }
}
