.add_product_card {
  width: 252px;
  height: 465px;
  background: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-right: 12px;
  flex: 0 0 auto;
}

.add_product_card .img_box {
  width: 252px;
  height: 252px;
  border-bottom: 1px solid #D2D2D2;
  overflow: hidden;
}

.add_product_card .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add_product_card .product_info {
  padding: 15px 30px;
}

.add_product_card .product_info .brand {
  font-size: 14px;
  line-height: 20px;
  color: #868686;
}

.add_product_card .product_info .product_name {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #1B1B1B;
  margin-bottom: 23px;
}

.add_product_card .product_info .price {
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  color: #1B1B1B;
}

.add_product_card .product_info .price > span {
  color: #F73603;
  font-weight: 700;
  font-size: 24px;
  margin-left: 5px;
}

.add_product_card .product_info .select_btn {
  display: block;
  position: absolute;
  width: 186px;
  height: 47px;
  border: 1px solid #EE702E;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  bottom: 15px;
  color: #EE702E;
  font-weight: 500;
  font-size: 16px;
  background: white;
}

.add_product_card .product_info .select_btn:active,
.add_product_card .product_info .select_btn.active {
  background-color: #EE702E;
  color: white;
}

.add_product_card .product_info .select_btn > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .add_product_card {
    width: 150px;
    height: 304px;
    margin-right: 9px;
  }
  .add_product_card .img_box {
    width: 150px;
    height: 150px;
  }
  .add_product_card .product_info {
    padding: 10px 12px;
  }
  .add_product_card .product_info .brand {
    font-size: 10px;
    line-height: 14.5px;
  }
  .add_product_card .product_info .product_name {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  .add_product_card .product_info .price {
    font-size: 12px;
    line-height: 17.4px;
  }
  .add_product_card .product_info .price > span {
    font-size: 16px;
    margin-left: 3px;
  }
  .add_product_card .product_info .select_btn {
    width: 125px;
    height: 38px;
    border-radius: 5px;
    bottom: 10px;
    font-size: 14px;
  }
}
