/* STORE */
.product-card {
    background-color: white;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.custom-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.custom-modal-content {
  padding: 28px 10px;
}

.modal-delete-icon {
    border-radius: 100%;
    background-color: #fef4f6;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.modal-svg-icon {
  width: 30px;
}

.empty-box-alert {
  width: 100%;
}

.product-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
}

.select-box-wrapper {
  width: 100%;
}

@media (min-width: 425px) {
  .product-title-wrapper {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 576px) {
  .empty-box-alert {
    width: 70%;
  }

  .select-box-wrapper {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .empty-box-alert {
    width: 50%;
  }
}