/** Shopify CDN: Minification failed

Line 126:0 Expected "}" to go with "{"

**/
/* Remove extra vertical space around Pop-up link on the product page*/
.product-popup-modal__opener {
  margin: 0 !important;    /* removes any top/bottom margin */
  padding: 0 !important;   /* removes any top/bottom padding */
  display: inline-block;    /* prevents it from taking full block height */
}

/* Business Gift Inquiry Form Styles */
.business-gift-inquiry {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

/* Style static message at top of form */
.popup-message {
  font-size: 16px;
  margin-bottom: 12px;
  color: #3b2d26;
}

/* space between heading and first form field */
.business-gift-inquiry h1,
.product-popup-modal__content-info h1 {
  margin-bottom: 1rem;
}

/* Labels and spacing adjustments */
.business-gift-inquiry label {
  display: block;
  font-weight: 600;
  color: #3b2d26;
  margin-bottom: 0.25rem;
}

/* Inputs and textareas */
.business-gift-inquiry input,
.business-gift-inquiry textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #c4c4c4;
  border-radius: 6px;
  margin-bottom: 0.6rem;
  font-size: 20px;
  font-family: inherit;
  box-sizing: border-box;
}

/* Textareas specifically - larger text */
.business-gift-inquiry textarea {
  min-height: 120px;
  line-height: 1.4;
}

/* Style pre-loaded product name*/
.business-gift-inquiry .product-field-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.business-gift-inquiry #bg-product-display {
  font-weight: 600;
  font-family: inherit;
  margin-bottom: 0.25rem;
  color: #063042;
}

/* Submit button styling */
.business-gift-inquiry button[type="submit"] {
  color: #fdfbfa;
  background-color: #063042;
  font-weight: 400;
  font-size: 18px;
  font-family: inherit;
  padding: 1.5rem 4rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.business-gift-inquiry button[type="submit"]:hover {
  color:rgb(42, 32, 27);
  background-color: #d8c4ac;
}

.product-popup-modal__content-info {
  padding-bottom: 20px; /* reduce bottom padding inside the modal */
}


/* Responsive adjustments for mobile screens */
@media screen and (max-width: 749px) {
  .business-gift-inquiry {
    gap: 0.75rem;
  }

  .business-gift-inquiry input,
  .business-gift-inquiry textarea {
    font-size: 16px;
    font-family: inherit;
    border-radius: 6px;
    margin-bottom: 0.3rem;
    padding: 0.1rem;
  }

  .business-gift-inquiry button[type="submit"] {
    padding: 0.6rem 1.2rem;
    font-size: 14px;
    padding: 1rem 3.5rem;
    color: #fdfbfa;
    background-color: #063042;
  }

/* stack product name below label on small screens */
    .business-gift-inquiry .product-field-wrapper {
    flex-direction: column;
    align-items: flex-start;
}
