.product-image {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.product-image:hover {
  transform: scale(1.1);
}

.product-discription h3 {
  font-size: 18px;
}

.product-discription p {
  font-size: 14px;
}

.cart-qty-input {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
  margin-bottom: 10px;
}

.add-to-cart .cart-qty-input{
  margin-bottom: 0px;
  height: 44px;
}

.cart-input-container {
  display: flex;
  flex-direction: column;
  align-items: end;
}


.cart-modal {
  opacity: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  display: flex;
}

.cart-container {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.cart-modal.active {
  opacity: 1;
  visibility: visible;
}

.cart-modal.active .cart-container {
  transform: translateY(0);
}

.order-table-row {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

.order-id-col {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

.order-multiple-item {
  grid-area: span 1 / span 5 / span 1 / span 7;
}

.status-cancelled {
  display: inline;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  background: #ff3b30; /* Red */
  color: white; 
}

.status-completed {
  display: inline;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  background: #34c759; /* Green */
  color: white;
}

.status-other {
  display: inline;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  background: #ffcc00; /* Yellow */
  color: white;
}

.w-dropdown-link {
  color: black !important;
}

.w-dropdown-link:hover {
  color: var(--theme-color-02) !important;
}

@media screen and (max-width: 991px) {
  .dropdown-menu.account-dropdown {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .profile-link {
    display: none !important;
  }
}

.w-form-done {
  text-align: left;
}

.error-message, .success-message {
  white-space: pre; /* Preserves newlines */
}

.remove-item {
  color: red;
}

.cart-form-wrapper {
  overflow: scroll;
  max-height: calc(100vh - 80px);
}

.guide-content .w-dyn-list {
  overflow: scroll;
  max-height: calc(100vh - 20px);
}