/*

Theme Name: Avada Child

Description: Child theme for Avada theme

Author: ThemeFusion

Author URI: https://theme-fusion.com

Template: Avada

Version: 1.0.0

Text Domain:  Avada

*/

/* --- Gift Card Preview (560 x 552 px template) --- */
/* ---- Gift Card Preview (1545x2000 template) ---- */
#gift_message_card {
  position: relative;
  width: 100%;
  max-width: 1545px; /* cap to your template width */
  margin: 12px auto 20px;

  /* Adjust message box position/size as needed */
  --box-left: 12%;
  --box-top: 38%;
  --box-width: 76%;
  --box-height: 28%;

  /* Shadow */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border-radius: 6px; /* optional */
}

/* Maintain aspect ratio (2000 ÷ 1545 = 1.2948) */
#gift_message_card .tpl {
  width: 100%;
  padding-top: 129.48%;
  background-image: url("./assets/gift-card-template.jpg"); /* update path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}

/* Gift message overlay */
#gift_message_card .msg {
  position: absolute;
  left: var(--box-left);
  top: var(--box-top);
  width: var(--box-width);
  height: var(--box-height);
  overflow: hidden;
  white-space: pre-wrap;
  line-height: 1.35;
  font-size: clamp(14px, 1.9vw, 18px);
  font-family: "Times New Roman", Georgia, serif;
  color: #333;
}

/* Form layout polish (keeps label/textarea/hints stacked neatly) */
.wc-gift-fields .form-row {
  display: block;
  margin: 0 0 14px;
}
.wc-gift-fields label {
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
}
.wc-gift-fields .input-text,
.wc-gift-fields textarea {
  width: 100%;
}
.wc-gift-fields .hint {
  display: block;
  margin-top: 4px;
  opacity: 0.75;
  font-size: 12px;
}

/* Preview block spacing */
#widowfix {
} /* noop guard for copy/paste */
.gift-message-card {
  margin: 12px 0 16px;
}
