.modal-quick-title {
  display: none;
}

/* --- 對話框樣式 ---  */
.quick-add-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quick-add-modal[style*="display: none"] {
  display: none !important;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  position: relative;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #f4e7e4;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}
div#modal-product-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 1rem;
}
.modal-product-lower {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  align-self: flex-start;
  width: 100%;
}

.quantityBox {
  width: 122px;
  border: 1px solid black;
  margin-top: 0rem;
}
.quantityItem {
  display: flex;
}
.quantityItem > * {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quantityDecrease,
.quantityIncrease {
  cursor: pointer;
}
#quickAdd2Cart_ProdName {
  display: none;
}
.quickAdd2Cart_ProdName_PC {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  line-height: 1.5;
}
.modal-dashline {
  display: none;
}
.modal-dashline_PC {
  border: 1px solid #d5cac8;
  width: 100%;
  display: block;
}
span#modal-product-size {
  border: 1px solid black;
  padding: 0.25rem;
}
.span#modal-product-price {
  font-size: larger;
}
.add-to-cart-btn {
  width: 100%;
  box-sizing: border-box;
}
.modal-product-upper {
  width: 100%;
}
.product-image {
  display: flex;
  justify-content: center;
}
.product-image img {
  scale: 1.35;
}
.go2detail-btn {
  border-bottom: 1px solid black;
}
@media screen and (max-width: 1000px) {
  .quick-add-modal {
    align-items: flex-end;
  }
  .product-image img {
    scale: 1;
  }
  #quickAdd2Cart_ProdName {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    display: block;
    letter-spacing: 0.15rem;
    font-size: 1.25rem;
  }
  .quickAdd2Cart_ProdName_PC {
    display: none;
  }
  .modal-quick-title {
    position: absolute;
    top: 1.25rem;
    background: none;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
  }
  .modal-content {
    padding: 3rem 2rem 1.5rem 2rem;
    width: 100%;
    max-width: 480px;
    max-height: 80vh;
  }
  div#modal-product-info {
    flex-direction: column;
    gap: 2rem;
  }
  .modal-dashline {
    border: 1px solid #d5cac8;
    width: 100vw;
    display: block;
  }
  .modal-dashline_PC {
    display: none;
  }
}
