/* ============================================================
   Grandeur Clinic — Gift Voucher Form Brand Override
   Targets the gift-voucher plugin's #giftvoucher-template
   ============================================================ */

/* ── Tokens ── */
:root {
  --gc-gv-gold:     #b8953a;
  --gc-gv-gold-lt:  rgba(184,149,58,0.18);
  --gc-gv-dark:     #1c1914;
  --gc-gv-cream:    #faf5ec;
  --gc-gv-text:     #3a3228;
  --gc-gv-muted:    #7a6e62;
  --gc-gv-border:   rgba(184,149,58,0.25);
}

/* ── Global wrapper — White & Gold theme ── */
#giftvoucher-template {
  font-family: 'Montserrat', Arial, sans-serif !important;
  color: var(--gc-gv-dark) !important;
  background: #fff !important;
}

#giftvoucher-template h1,
#giftvoucher-template h2,
#giftvoucher-template h3,
#giftvoucher-template h4,
#giftvoucher-template h5,
#giftvoucher-template h6 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  color: var(--gc-gv-dark) !important;
}

/* ── Step indicator bar ── */
#giftvoucher-template .giftvoucher-template-step-main {
  background: #fff !important;
  border-bottom: 1px solid var(--gc-gv-gold) !important;
  padding: 0 2rem !important;
}

#giftvoucher-template .giftvoucher-template-steps {
  padding: 0 !important;
  max-width: 900px;
  margin: 0 auto;
}

#giftvoucher-template .giftvoucher-template-steps .giftvoucher-step {
  background: transparent !important;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
  padding: 1rem 0.5rem !important;
  transition: border-color 0.25s;
}

#giftvoucher-template .giftvoucher-template-steps .giftvoucher-step.active {
  border-bottom-color: var(--gc-gv-gold) !important;
}

#giftvoucher-template .giftvoucher-template-steps .step-number {
  background: transparent !important;
  border: 1.5px solid var(--gc-gv-gold) !important;
  border-radius: 50% !important;
  width: 28px !important;
  height: 28px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--gc-gv-gold) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
}

#giftvoucher-template .giftvoucher-step.active .step-number {
  background: var(--gc-gv-gold) !important;
  border-color: var(--gc-gv-gold) !important;
  color: #fff !important;
}

#giftvoucher-template .step-label {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--gc-gv-gold) !important;
  opacity: 0.55;
}

#giftvoucher-template .giftvoucher-step.active .step-label {
  color: var(--gc-gv-gold) !important;
  opacity: 1;
}

/* ── Progress bar ── */
#giftvoucher-template .step-progress { display: none !important; }

/* ── Section heading ── */
#giftvoucher-template .voucher-template-name-step h3,
#giftvoucher-template .choose-show-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: var(--gc-gv-dark) !important;
}

/* ── Template card grid (step 1 — Select Template) ── */
#giftvoucher-template .item-voucher-template {
  border: 1px solid var(--gc-gv-border) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}

#giftvoucher-template .item-voucher-template:hover {
  border-color: var(--gc-gv-gold) !important;
  box-shadow: 0 8px 32px rgba(28,25,20,0.12) !important;
}

#giftvoucher-template .layout-overlay {
  background: rgba(28,25,20,0.72) !important;
}

#giftvoucher-template .layout-button {
  background: var(--gc-gv-gold) !important;
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  padding: 0.65rem 1.4rem !important;
  transition: background 0.25s, color 0.25s !important;
}

#giftvoucher-template .layout-button:hover {
  background: transparent !important;
  color: var(--gc-gv-gold) !important;
}

/* Grandeur Clinic custom template thumbnail placeholder (no PNG needed) */
.item-voucher-template:has(img[src*="template-voucher-lanscape-gc.png"]) {
  background: var(--gc-gv-dark) !important;
  border-color: var(--gc-gv-gold) !important;
  min-height: 120px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
}

.item-voucher-template:has(img[src*="template-voucher-lanscape-gc.png"]) img {
  display: none !important;
}

.item-voucher-template:has(img[src*="template-voucher-lanscape-gc.png"])::before {
  content: 'GRANDEUR CLINIC';
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gc-gv-gold);
  text-align: center;
}

.item-voucher-template:has(img[src*="template-voucher-lanscape-gc.png"])::after {
  content: 'GIFT VOUCHER';
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ── Form inputs — white bg, gold border ── */
#giftvoucher-template .input-info-voucher,
#giftvoucher-template input[type="text"],
#giftvoucher-template input[type="email"],
#giftvoucher-template input[type="number"],
#giftvoucher-template textarea,
#giftvoucher-template select {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.85rem !important;
  color: var(--gc-gv-dark) !important;
  background: #fff !important;
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
  padding: 0.7rem 0.9rem !important;
  outline: none !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
}

#giftvoucher-template .input-info-voucher:focus,
#giftvoucher-template input[type="text"]:focus,
#giftvoucher-template input[type="email"]:focus,
#giftvoucher-template input[type="number"]:focus,
#giftvoucher-template textarea:focus,
#giftvoucher-template select:focus {
  border-color: var(--gc-gv-gold) !important;
  box-shadow: 0 0 0 3px rgba(184,149,58,0.12) !important;
}

#giftvoucher-template input::placeholder,
#giftvoucher-template textarea::placeholder {
  color: rgba(184,149,58,0.45) !important;
  font-style: italic !important;
}

/* ── Section/field labels — gold ── */
#giftvoucher-template label,
#giftvoucher-template .voucher-template-label,
#giftvoucher-template .header-title h4 {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gc-gv-gold) !important;
}

/* ── Price input ── */
#giftvoucher-template .voucher-price-input-wrap,
#giftvoucher-template .wrap-price-voucher {
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
}

/* ── Navigation buttons ── */
#giftvoucher-template #voucher-continue-step {
  border-top: 1px solid var(--gc-gv-border) !important;
  background: transparent !important;
  padding-top: 1.2rem !important;
}

#giftvoucher-template .voucher-next-step,
#giftvoucher-template #payment-voucher-template,
#giftvoucher-template .voucher-preview-pdf {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  background: var(--gc-gv-gold) !important;
  color: #fff !important;
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
  padding: 0.75rem 1.8rem !important;
  transition: background 0.25s, color 0.25s !important;
  text-decoration: none !important;
}

#giftvoucher-template .voucher-next-step:hover,
#giftvoucher-template #payment-voucher-template:hover,
#giftvoucher-template .voucher-preview-pdf:hover {
  background: transparent !important;
  color: var(--gc-gv-gold) !important;
}

#giftvoucher-template .voucher-prev-step {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gc-gv-muted) !important;
  background: transparent !important;
  border: 1px solid var(--gc-gv-border) !important;
  border-radius: 0 !important;
  padding: 0.75rem 1.4rem !important;
  text-decoration: none !important;
  transition: border-color 0.25s, color 0.25s !important;
}

#giftvoucher-template .voucher-prev-step:hover {
  border-color: var(--gc-gv-gold) !important;
  color: var(--gc-gv-gold) !important;
}

/* ── Category filter buttons ── */
#giftvoucher-template .wrap-format-category-voucher a,
#giftvoucher-template .category-filter-btn {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
  color: var(--gc-gv-gold) !important;
  background: transparent !important;
  padding: 0.45rem 1rem !important;
  transition: background 0.25s, color 0.25s !important;
}

#giftvoucher-template .wrap-format-category-voucher a:hover,
#giftvoucher-template .wrap-format-category-voucher a.active {
  background: var(--gc-gv-gold) !important;
  color: #fff !important;
}

/* ── Payment options ── */
#giftvoucher-template .payment-method-item,
#giftvoucher-template .choose-payment-item {
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
}

#giftvoucher-template .payment-method-item:hover,
#giftvoucher-template .payment-method-item.active,
#giftvoucher-template .choose-payment-item.active {
  border-color: var(--gc-gv-gold) !important;
  box-shadow: 0 0 0 3px rgba(184,149,58,0.12) !important;
}

/* ── Order summary ── */
#giftvoucher-template .order-voucher-details,
#giftvoucher-template .order-info-wrap {
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
  background: #fff !important;
}

#giftvoucher-template .price-total,
#giftvoucher-template .total-price-voucher {
  color: var(--gc-gv-gold) !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
}

/* ── Gift card canvas container ── */
#template_giftcard_container {
  border: 1px solid var(--gc-gv-border) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 40px rgba(28,25,20,0.14) !important;
}

/* ── Confirmation / overview ── */
#giftvoucher-template .overview-voucher-item {
  border-bottom: 1px solid var(--gc-gv-gold) !important;
}

#giftvoucher-template .overview-label {
  color: var(--gc-gv-gold) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* ── Slick slider dots ── */
#giftvoucher-template .slick-dots li button::before {
  color: var(--gc-gv-border) !important;
}
#giftvoucher-template .slick-dots li.slick-active button::before {
  color: var(--gc-gv-gold) !important;
}

/* ── Slick slider arrows ── */
#giftvoucher-template .slick-prev::before,
#giftvoucher-template .slick-next::before {
  color: var(--gc-gv-gold) !important;
}

/* ── Personalisation step with live preview ── */
#giftvoucher-template #setup-voucher-template {
  display: grid !important;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.9fr) !important;
  gap: 1.5rem !important;
  align-items: start !important;
}

#giftvoucher-template .wrap-main-voucher-template {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.2rem !important;
}

#giftvoucher-template .voucher-template-preview-panel {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  background: #fff !important;
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  min-height: 460px !important;
}

#giftvoucher-template .preview-label {
  font-family: 'Montserrat', Arial, sans-serif !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  color: var(--gc-gv-muted) !important;
}

#giftvoucher-template #template_giftcard_container {
  flex: 1 !important;
  min-height: 320px !important;
  border: 1px solid rgba(28, 25, 20, 0.06) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: #fdf9f3 !important;
}

#giftvoucher-template #template_giftcard_container img,
#giftvoucher-template #template_giftcard_container canvas {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

#giftvoucher-template .preview-note {
  font-size: 0.8rem !important;
  color: var(--gc-gv-muted) !important;
  line-height: 1.5 !important;
}

#giftvoucher-template .voucher-preview-pdf,
#giftvoucher-template #payment-voucher-template {
  width: auto !important;
}

#giftvoucher-template .giftvoucher-template-steps {
  max-width: 1000px;
}

#giftvoucher-template .giftvoucher-step {
  flex: 1 1 auto !important;
}

/* Each template card in the sidebar */
#voucher-multistep-form .gc-template-thumb {
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  border-radius: 10px !important;
  padding: 6px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  width: 90px !important;
}

#voucher-multistep-form .gc-template-thumb:hover {
  border-color: rgba(184,149,58,0.45) !important;
}

#voucher-multistep-form .gc-template-thumb.gc-tpl-active {
  border-color: var(--gc-gv-gold) !important;
  box-shadow: 0 0 0 3px rgba(184,149,58,0.12) !important;
}

/* Thumbnail image container */
#voucher-multistep-form .gc-tpl-img {
  width: 76px !important;
  height: 52px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: var(--gc-gv-dark) !important;
}

#voucher-multistep-form .gc-tpl-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Template name label */
#voucher-multistep-form .gc-tpl-name {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.55rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--gc-gv-muted) !important;
  text-align: center !important;
  line-height: 1.3 !important;
  max-width: 76px !important;
}

#voucher-multistep-form .gc-template-thumb.gc-tpl-active .gc-tpl-name {
  color: var(--gc-gv-gold) !important;
}


@media (max-width: 900px) {
  #giftvoucher-template #setup-voucher-template {
    grid-template-columns: 1fr !important;
  }
  #giftvoucher-template .giftvoucher-template-step-main {
    padding: 0 1rem !important;
  }
}

/* ============================================================
   Gift Voucher Card Preview — Grandeur Clinic App UI Style
   Targets the live preview card (.secondRightDiv .cardDiv)
   ============================================================ */

/* ── Card shell — large rounded corners, no hard edges ── */
#voucher-multistep-form .secondRightDiv .cardDiv {
  background-color: var(--gc-gv-dark) !important;
  color: #fff !important;
  border: 1px solid var(--gc-gv-border) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 52px rgba(0,0,0,0.5) !important;
}

#voucher-multistep-form .secondRightDiv .cardDiv * {
  font-family: 'Montserrat', Arial, sans-serif !important;
  box-sizing: border-box;
}

/* ── Status bar (dots + clinic name + badge pill) ── */
#voucher-multistep-form .secondRightDiv .gc-statusbar {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 13px 18px 11px !important;
  background: var(--gc-gv-dark) !important;
}

#voucher-multistep-form .secondRightDiv .gc-dots {
  display: flex !important;
  gap: 5px !important;
  flex-shrink: 0 !important;
}

#voucher-multistep-form .secondRightDiv .gc-dots i {
  display: block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  font-style: normal !important;
}

#voucher-multistep-form .secondRightDiv .gc-dots i:nth-child(1) {
  background: var(--gc-gv-gold) !important;
  opacity: 1 !important;
}

#voucher-multistep-form .secondRightDiv .gc-dots i:nth-child(2) {
  background: var(--gc-gv-gold) !important;
  opacity: 0.5 !important;
}

#voucher-multistep-form .secondRightDiv .gc-dots i:nth-child(3) {
  background: var(--gc-gv-gold) !important;
  opacity: 0.25 !important;
}

#voucher-multistep-form .secondRightDiv .gc-clinic-label {
  flex: 1 !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  color: var(--gc-gv-gold) !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

#voucher-multistep-form .secondRightDiv .gc-pill-badge {
  flex-shrink: 0 !important;
  background: rgba(184,149,58,0.15) !important;
  color: var(--gc-gv-gold) !important;
  font-size: 0.47rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(184,149,58,0.35) !important;
}

/* ── Card image ── */
#voucher-multistep-form .secondRightDiv .cardImgTop {
  border-bottom: none !important;
}

#voucher-multistep-form .secondRightDiv .cardImgTop img {
  width: 100% !important;
  display: block !important;
}

/* ── Content area ── */
#voucher-multistep-form .secondRightDiv .voucherBottomDiv {
  padding: 14px 16px 12px !important;
  background-color: var(--gc-gv-dark) !important;
}

/* ── Voucher title h2 ── */
#voucher-multistep-form .secondRightDiv .voucherBottomDiv h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.0rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: var(--gc-gv-gold) !important;
  text-align: center !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: none !important;
  line-height: 1.3 !important;
}

/* ── Meta chip row (value + expiry side by side) ── */
#voucher-multistep-form .secondRightDiv .gc-meta-row {
  display: flex !important;
  gap: 8px !important;
  margin-bottom: 10px !important;
  flex-wrap: wrap !important;
}

#voucher-multistep-form .secondRightDiv .gc-meta-row > div {
  flex: 1 !important;
  min-width: 90px !important;
  background: rgba(255,255,255,0.06) !important;
  border-radius: 10px !important;
  padding: 8px 10px !important;
}

/* ── Field labels ── */
#voucher-multistep-form.wizard > .content > .body .voucherBottomDiv label {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--gc-gv-muted) !important;
  display: block !important;
  margin-bottom: 4px !important;
}

/* ── All readonly display inputs (rounded, no border) ── */
#voucher-multistep-form .secondRightDiv .voucherBottomDiv input[type="text"],
#voucher-multistep-form .secondRightDiv .voucherBottomDiv input[type="text"]:focus,
#voucher-multistep-form .secondRightDiv .voucherBottomDiv input[type="text"]:hover {
  background-color: rgba(255,255,255,0.06) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #7b7a78 !important;
  font-size: 0.88rem !important;
  height: 34px !important;
  padding: 5px 12px !important;
  outline: none !important;
  box-shadow: none !important;
  margin-bottom: 8px !important;
  width: 100% !important;
}

/* ── Textarea (Personal Message) ── */
#voucher-multistep-form .secondRightDiv .voucherBottomDiv textarea,
#voucher-multistep-form .secondRightDiv .voucherBottomDiv textarea:hover,
#voucher-multistep-form .secondRightDiv .voucherBottomDiv textarea:focus {
  background-color: rgba(255,255,255,0.06) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 0.73rem !important;
  height: 60px !important;
  padding: 8px 10px !important;
  resize: none !important;
  outline: none !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  overflow: hidden !important;
  margin-bottom: 8px !important;
  width: 100% !important;
}

/* ── Name fields — side by side inline ── */
#voucher-multistep-form .secondRightDiv .nameFormLeft,
#voucher-multistep-form .secondRightDiv .nameFormRight {
  display: inline-block !important;
  width: calc(50% - 4px) !important;
  vertical-align: top !important;
}

#voucher-multistep-form .secondRightDiv .nameFormLeft {
  margin-right: 4px !important;
}

/* ── Coupon Code pill ── */
#voucher-multistep-form .secondRightDiv .gc-code-pill-wrap {
  margin-top: 4px !important;
  margin-bottom: 2px !important;
}

#voucher-multistep-form .secondRightDiv .voucherBottomDiv .codeFormRight input[type="text"],
#voucher-multistep-form .secondRightDiv .voucherBottomDiv .codeFormRight input[type="text"]:focus,
#voucher-multistep-form .secondRightDiv .voucherBottomDiv .codeFormRight input[type="text"]:hover {
  background: rgba(184,149,58,0.14) !important;
  color: var(--gc-gv-gold) !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  font-size: 0.78rem !important;
  border: 1px solid rgba(184,149,58,0.3) !important;
  border-radius: 20px !important;
  height: 36px !important;
  text-align: center !important;
  padding: 4px 16px !important;
  margin-bottom: 4px !important;
}

/* ── Voucher value display ── */
#voucher-multistep-form .secondRightDiv .voucherBottomDiv .voucherValueForm .voucherValueCard,
#voucher-multistep-form .secondRightDiv .voucherBottomDiv .voucherValueForm .voucherValueCard:hover,
#voucher-multistep-form .secondRightDiv .voucherBottomDiv .voucherValueForm .voucherValueCard:focus {
  color: var(--gc-gv-gold) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.voucherBottomDiv .voucherValueForm .currencySymbol {
  color: var(--gc-gv-muted) !important;
}

/* ── Site info footer ── */
#voucher-multistep-form .voucherBottomDiv .voucherSiteInfo {
  text-align: center !important;
  font-size: 0.58rem !important;
  color: var(--gc-gv-muted) !important;
  letter-spacing: 0.04em !important;
  margin: 6px 0 4px !important;
  padding: 0 !important;
}

#voucher-multistep-form .voucherBottomDiv .voucherSiteInfo a {
  color: var(--gc-gv-muted) !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── Terms ── */
#voucher-multistep-form .voucherBottomDiv .termsCard {
  font-size: 7px !important;
  color: var(--gc-gv-muted) !important;
  opacity: 0.6;
}

/* ── White & Gold overrides for the plugin's wizard form ── */

/* Step nav background */
#voucher-multistep-form.wizard > .steps {
  background: #fff !important;
  border-bottom: 1px solid var(--gc-gv-gold) !important;
}

/* Step links — default (unvisited) */
#voucher-multistep-form.wizard > .steps a,
#voucher-multistep-form.wizard > .steps a:hover,
#voucher-multistep-form.wizard > .steps a:active {
  background: transparent !important;
  color: rgba(184,149,58,0.5) !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* Done steps */
#voucher-multistep-form.wizard > .steps .done a,
#voucher-multistep-form.wizard > .steps .done a:hover,
#voucher-multistep-form.wizard > .steps .done a:active {
  background: transparent !important;
  color: var(--gc-gv-gold) !important;
}

/* Current step */
#voucher-multistep-form.wizard > .steps .current a,
#voucher-multistep-form.wizard > .steps .current a:hover,
#voucher-multistep-form.wizard > .steps .current a:active {
  background: var(--gc-gv-gold) !important;
  color: #fff !important;
}

/* Wizard content background */
#voucher-multistep-form.wizard > .content {
  background: #fff !important;
  border: none !important;
}

/* ── Floating Next / Back navigation bar ─────────────────────────────── */
#voucher-multistep-form.wizard > .actions {
  position: sticky !important;
  bottom: 20px !important;
  z-index: 100 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 14px 24px !important;
  margin-top: 24px !important;
  background: rgba(28, 25, 20, 0.82) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(184,149,58,0.35) !important;
  border-radius: 4px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(184,149,58,0.15) !important;
}

#voucher-multistep-form.wizard > .actions ul {
  display: flex !important;
  gap: 12px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Action buttons (Next / Back / Complete Voucher Order) */
#voucher-multistep-form.wizard > .actions a,
#voucher-multistep-form.wizard > .actions a:hover,
#voucher-multistep-form.wizard > .actions a:active,
#voucher-multistep-form #voucherPaymentButton {
  background: var(--gc-gv-gold) !important;
  color: #fff !important;
  border: 1px solid var(--gc-gv-gold) !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  padding: 11px 28px !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 10px rgba(184,149,58,0.25) !important;
  display: inline-block !important;
  cursor: pointer !important;
}

#voucher-multistep-form.wizard > .actions a:hover {
  background: #cda84a !important;
  box-shadow: 0 4px 18px rgba(184,149,58,0.45) !important;
  transform: translateY(-1px) !important;
}

/* Back button — ghost style */
#voucher-multistep-form.wizard > .actions .disabled a,
#voucher-multistep-form.wizard > .actions .disabled a:hover {
  background: transparent !important;
  color: rgba(255,255,255,0.35) !important;
  border-color: rgba(255,255,255,0.15) !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: default !important;
  pointer-events: none !important;
}

#voucher-multistep-form.wizard > .actions li:first-child:not(.disabled) a {
  background: transparent !important;
  color: var(--gc-gv-gold) !important;
  border-color: var(--gc-gv-gold) !important;
  box-shadow: none !important;
}

#voucher-multistep-form.wizard > .actions li:first-child:not(.disabled) a:hover {
  background: rgba(184,149,58,0.12) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Buying For / Shipping toggle buttons */
#voucher-multistep-form .buying-options div,
#voucher-multistep-form .shipping-options div {
  border: 1px solid var(--gc-gv-gold) !important;
  color: var(--gc-gv-gold) !important;
  background: #fff !important;
  transition: background 0.2s, color 0.2s !important;
}

#voucher-multistep-form .buying-options div.selected,
#voucher-multistep-form .shipping-options div.selected {
  background: var(--gc-gv-gold) !important;
  color: #fff !important;
}

/* Form inputs in the wizard form (voucherform secondLeft) */
#voucher-multistep-form .voucherform input[type="text"],
#voucher-multistep-form .voucherform input[type="email"],
#voucher-multistep-form .voucherform input[type="number"],
#voucher-multistep-form .voucherform input[type="tel"],
#voucher-multistep-form .voucherform textarea,
#voucher-multistep-form .voucherform select {
  background: #fff !important;
  border: 1px solid var(--gc-gv-gold) !important;
  border-radius: 0 !important;
  color: var(--gc-gv-dark) !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.85rem !important;
  padding: 0.7rem 0.9rem !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
}

#voucher-multistep-form .voucherform input:focus,
#voucher-multistep-form .voucherform textarea:focus,
#voucher-multistep-form .voucherform select:focus {
  border-color: var(--gc-gv-gold) !important;
  box-shadow: 0 0 0 3px rgba(184,149,58,0.12) !important;
  outline: none !important;
}

/* Form labels */
#voucher-multistep-form .voucherform label {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gc-gv-gold) !important;
}

/* Currency symbol + amount input — inline row */
#voucher-multistep-form .voucherform #voucherAmount {
  margin-left: 10px !important;
  width: calc(100% - 32px) !important;
}

/* Your Name + Recipient Name — 50/50 side by side */
#voucher-multistep-form .voucherform.secondLeft .form-group:has(#voucherForName),
#voucher-multistep-form .voucherform.secondLeft .form-group.fromname {
  display: inline-block !important;
  width: calc(50% - 7px) !important;
  vertical-align: top !important;
  box-sizing: border-box !important;
}
#voucher-multistep-form .voucherform.secondLeft .form-group:has(#voucherForName) {
  margin-right: 10px !important;
}
/* Hide Recipient Name when "Yourself" is selected */
#voucher-multistep-form .voucherform.secondLeft .form-group.fromname.gc-recipient-hidden {
  display: none !important;
}
/* When Recipient is hidden, Your Name takes full width */
#voucher-multistep-form .voucherform.secondLeft .form-group.gc-recipient-hidden ~ .form-group:has(#voucherForName),
#voucher-multistep-form .voucherform.secondLeft .form-group:has(#voucherForName):has(~ .form-group.fromname.gc-recipient-hidden) {
  width: 100% !important;
  margin-right: 0 !important;
}

/* Quotes — full-width block below the two columns */
#voucher-multistep-form .voucherform.secondLeft #voucher-quotes {
  display: block !important;
  width: 100% !important;
  margin-top: 10px !important;
  clear: both !important;
}

/* Voucher Value (20%) + Personal Message (78%) side by side */
#voucher-multistep-form .voucherform.secondLeft .form-group:has(#voucherAmount) {
  display: inline-block !important;
  width: 20% !important;
  vertical-align: top !important;
  box-sizing: border-box !important;
  margin-right: 10px !important;
}
#voucher-multistep-form .voucherform.secondLeft .form-group:has(#voucherMessage) {
  display: inline-block !important;
  width: calc(78% - 10px) !important;
  vertical-align: top !important;
  box-sizing: border-box !important;
}
#voucher-multistep-form .voucherform.secondLeft .form-group:has(#voucherMessage) textarea {
  height: 80px !important;
  resize: vertical !important;
}

/* Currency symbol */
#voucher-multistep-form .currencySymbol {
  color: var(--gc-gv-gold) !important;
  font-weight: 700 !important;
}

/* Always show template name + background — not only on hover */
#voucher-multistep-form .sin-template label span {
  opacity: 1 !important;
}

/* Animated glow shadow on hover/focus */
#voucher-multistep-form .sin-template label {
  transition: box-shadow 0.35s ease, transform 0.35s ease !important;
}

#voucher-multistep-form .sin-template label:hover,
#voucher-multistep-form .sin-template input[type="radio"]:focus + label,
#voucher-multistep-form .sin-template label.selectImage {
  box-shadow:
    0 0 0 2px var(--gc-gv-gold),
    0 8px 32px rgba(184,149,58,0.35),
    0 2px 8px rgba(0,0,0,0.4) !important;
  transform: translateY(-3px) !important;
  animation: gc-tpl-pulse 1.8s ease-in-out infinite !important;
}

@keyframes gc-tpl-pulse {
  0%   { box-shadow: 0 0 0 2px var(--gc-gv-gold), 0 8px 32px rgba(184,149,58,0.35), 0 2px 8px rgba(0,0,0,0.4); }
  50%  { box-shadow: 0 0 0 4px var(--gc-gv-gold), 0 12px 40px rgba(184,149,58,0.55), 0 4px 16px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 2px var(--gc-gv-gold), 0 8px 32px rgba(184,149,58,0.35), 0 2px 8px rgba(0,0,0,0.4); }
}

/* Template radio select */
#voucher-multistep-form .sin-template input[type="radio"]:checked:before {
  background-color: var(--gc-gv-gold) !important;
}

/* Order details preview box */
#voucher-multistep-form .order_details_preview {
  background: #fff !important;
  border: 1px solid var(--gc-gv-gold) !important;
}

#voucher-multistep-form .order_details_preview h3 {
  color: var(--gc-gv-gold) !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  border-bottom: 1px solid var(--gc-gv-gold) !important;
}

#voucher-multistep-form .wpgv_preview_box,
#voucher-multistep-form .wpgv_total_box {
  border-bottom: 1px solid rgba(184,149,58,0.2) !important;
}

/* Payment user info (overview step) */
#voucher-multistep-form .paymentUserInfo .full,
#voucher-multistep-form .paymentUserInfo .half {
  color: var(--gc-gv-dark) !important;
}

#voucher-multistep-form .paymentUserInfo .labelInfo {
  color: var(--gc-gv-gold) !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

/* ── Responsive: stack card below form on mobile ── */
@media (max-width: 900px) {
  #voucher-multistep-form .secondRightDiv.sideview {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin-top: 1.5rem !important;
  }
}

/* ============================================================
   GC Style 1 — THE GRAND BLACK CARD  (.voucherstyle1)
   Deep dark luxury. Diagonal stripe texture. Gradient image fade.
   Gold value strip. Recipient name huge over image. 3-col grid.
   ============================================================ */

/* ── Card body: deep black, inner top highlight, deep shadow ── */
#voucher-multistep-form .voucherstyle1 .cardDiv {
  background: #0e0c09 !important;
  border: 1px solid rgba(184,149,58,0.22) !important;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(184,149,58,0.28),
    inset 0 -1px 0 rgba(184,149,58,0.1) !important;
  position: relative !important;
}

/* Subtle diagonal stripe texture overlaid on whole card */
#voucher-multistep-form .voucherstyle1 .cardDiv::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 22px !important;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px,
    transparent 36px,
    rgba(184,149,58,0.022) 36px,
    rgba(184,149,58,0.022) 38px
  ) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* ── Status bar: gradient + gold bottom rule ── */
#voucher-multistep-form .voucherstyle1 .gc-statusbar {
  background: linear-gradient(90deg, #080706, #141008, #080706) !important;
  border-bottom: 1px solid rgba(184,149,58,0.4) !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Brighter first dot for style 1 */
#voucher-multistep-form .voucherstyle1 .gc-dots i:nth-child(1) {
  box-shadow: 0 0 6px rgba(184,149,58,0.8) !important;
}

/* ── Image: gradient fade from transparent → deep dark at bottom ── */
#voucher-multistep-form .voucherstyle1 .cardImgTop {
  position: relative !important;
  z-index: 1 !important;
}

#voucher-multistep-form .voucherstyle1 .cardImgTop::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(14,12,9,0)    25%,
    rgba(14,12,9,0.55) 65%,
    rgba(14,12,9,0.92) 100%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* ── Template title — top-left corner over image ── */
#voucher-multistep-form .voucherstyle1 .gc-card-title-corner {
  position: absolute !important;
  top: 14px !important;
  left: 16px !important;
  z-index: 3 !important;
  text-align: left !important;
  pointer-events: none !important;
  max-width: 65% !important;
}

#voucher-multistep-form .voucherstyle1 .gc-card-title-text {
  display: block !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.65rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em !important;
  color: #fff !important;
  text-shadow:
    0 2px 20px rgba(0,0,0,0.9),
    0 1px 4px rgba(0,0,0,0.7) !important;
}

/* Overlay sits above gradient */
#voucher-multistep-form .voucherstyle1 .gc-card-overlay {
  z-index: 3 !important;
  bottom: 16px !important;
  right: 18px !important;
}

/* Name: massive serif, white with deep shadow */
#voucher-multistep-form .voucherstyle1 .gc-name-on-card {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.1 !important;
  color: #fff !important;
  text-shadow: 0 3px 18px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.7) !important;
}

/* "GIFT CARD" label above name */
#voucher-multistep-form .voucherstyle1 .gc-overlay-label {
  color: rgba(255,255,255,0.55) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8) !important;
}

/* ── Gold value strip: VALUE left · VALID UNTIL right ── */
#voucher-multistep-form .voucherstyle1 .gc-value-strip {
  background: linear-gradient(90deg, #8a6718, #b8953a, #d4af5a, #c9a040, #8a6718) !important;
  padding: 9px 18px 7px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  z-index: 2 !important;
}

#voucher-multistep-form .voucherstyle1 .gc-vs-left,
#voucher-multistep-form .voucherstyle1 .gc-vs-right {
  display: flex !important;
  flex-direction: column !important;
}

#voucher-multistep-form .voucherstyle1 .gc-vs-right {
  text-align: right !important;
}

/* "Back to Centre" tagline on gold strip */
#voucher-multistep-form .voucherstyle1 .gc-vs-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  letter-spacing: 0.06em !important;
  color: #fff !important;
  display: block !important;
  margin-bottom: 2px !important;
}

/* "VALID UNTIL" micro-label on gold strip */
#voucher-multistep-form .voucherstyle1 .gc-vs-label,
#voucher-multistep-form .voucherstyle1 .gc-value-strip .expiryFormLeft label {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.46rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  color: rgba(20,15,5,0.52) !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 1px !important;
}

/* Value input on gold strip */
#voucher-multistep-form .voucherstyle1 .gc-value-strip .voucherValueCard,
#voucher-multistep-form .voucherstyle1 .gc-value-strip .voucherValueCard:hover,
#voucher-multistep-form .voucherstyle1 .gc-value-strip .voucherValueCard:focus {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #1c1208 !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  letter-spacing: 0.04em !important;
  padding: 0 !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  text-align: left !important;
  box-shadow: none !important;
}

#voucher-multistep-form .voucherstyle1 .gc-value-strip .voucherValueForm {
  display: flex !important;
  align-items: baseline !important;
  gap: 2px !important;
}

#voucher-multistep-form .voucherstyle1 .gc-value-strip .currencySymbol {
  color: rgba(20,15,5,0.6) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

/* Expiry input on gold strip — right side */
#voucher-multistep-form .voucherstyle1 .gc-value-strip .expiryCard,
#voucher-multistep-form .voucherstyle1 .gc-value-strip .expiryCard:hover,
#voucher-multistep-form .voucherstyle1 .gc-value-strip .expiryCard:focus {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #1c1208 !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.03em !important;
  padding: 0 !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  text-align: right !important;
  box-shadow: none !important;
}

/* ── Fields section ── */
#voucher-multistep-form .voucherstyle1 .voucherBottomDiv {
  background: #141210 !important;
  padding: 14px 16px 12px !important;
  position: relative !important;
  z-index: 2 !important;
}

/* h2 removed from HTML — hide defensively if still rendered */
#voucher-multistep-form .voucherstyle1 .voucherBottomDiv h2 {
  display: none !important;
}

/* 2-col grid: Your Name · Recipient */
#voucher-multistep-form .voucherstyle1 .gc-fields-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6px 12px !important;
  margin-bottom: 10px !important;
}

/* Override base 50% inline-block inside the grid */
#voucher-multistep-form .voucherstyle1 .gc-fields-row .nameFormLeft,
#voucher-multistep-form .voucherstyle1 .gc-fields-row .nameFormRight {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Bigger inputs in the 2-col grid */
#voucher-multistep-form .voucherstyle1 .gc-fields-row input[type="text"],
#voucher-multistep-form .voucherstyle1 .gc-fields-row input[type="text"]:hover,
#voucher-multistep-form .voucherstyle1 .gc-fields-row input[type="text"]:focus {
  font-size: 0.82rem !important;
  padding: 5px 10px !important;
  height: 32px !important;
}

/* Coupon code: centered, full pill treatment */
#voucher-multistep-form .voucherstyle1 .codeFormRight {
  text-align: center !important;
  margin-top: 2px !important;
}

#voucher-multistep-form .voucherstyle1 .codeFormRight label {
  text-align: center !important;
  display: block !important;
}

/* Coupon input: wider on style 1, centered */
#voucher-multistep-form .voucherstyle1 .codeFormRight input[type="text"],
#voucher-multistep-form .voucherstyle1 .codeFormRight input[type="text"]:hover,
#voucher-multistep-form .voucherstyle1 .codeFormRight input[type="text"]:focus {
  display: inline-block !important;
  width: 80% !important;
  text-align: center !important;
  font-size: 0.82rem !important;
  height: 38px !important;
  letter-spacing: 0.2em !important;
}

/* ============================================================
   GC Style 2 — Cream Elegance  (.voucherstyle2)
   Cream card, gold border, dark status bar, app-style inputs
   ============================================================ */

#voucher-multistep-form .voucherstyle2 .cardDiv {
  background: var(--gc-gv-cream) !important;
  border: 1.5px solid var(--gc-gv-gold) !important;
  box-shadow: 0 12px 40px rgba(28,25,20,0.22) !important;
}

#voucher-multistep-form .voucherstyle2 .cardDiv * {
  font-family: 'Montserrat', Arial, sans-serif !important;
}

/* Status bar stays dark on cream card */
#voucher-multistep-form .voucherstyle2 .gc-statusbar {
  background: var(--gc-gv-dark) !important;
  border-bottom: 2px solid var(--gc-gv-gold) !important;
}

#voucher-multistep-form .voucherstyle2 .gc-pill-badge {
  background: rgba(184,149,58,0.25) !important;
}

/* Hero: image left 42% / details right */
#voucher-multistep-form .voucherstyle2 .gc-style2-hero {
  display: flex !important;
  align-items: stretch !important;
}

#voucher-multistep-form .voucherstyle2 .gc-style2-hero .cardImgTop {
  width: 42% !important;
  flex-shrink: 0 !important;
  border-bottom: none !important;
  border-right: 1.5px solid var(--gc-gv-gold) !important;
  overflow: hidden !important;
}

#voucher-multistep-form .voucherstyle2 .gc-style2-hero .cardImgTop img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

#voucher-multistep-form .voucherstyle2 .sidedetails {
  flex: 1 !important;
  padding: 12px !important;
  background: var(--gc-gv-cream) !important;
}

/* h2 on cream */
#voucher-multistep-form .voucherstyle2 .voucherBottomDiv h2 {
  font-size: 0.88rem !important;
  color: var(--gc-gv-dark) !important;
  border: none !important;
  margin-bottom: 10px !important;
}

/* voucherBottomDiv on cream */
#voucher-multistep-form .voucherstyle2 .voucherBottomDiv {
  background: var(--gc-gv-cream) !important;
  padding: 0 !important;
}

/* Lower uk-form-row on cream */
#voucher-multistep-form .voucherstyle2 .uk-form-row {
  padding: 10px 14px 8px !important;
  border-top: 1px solid var(--gc-gv-border) !important;
}

/* Inputs on cream — dark-tinted bg, dark text, rounded */
#voucher-multistep-form .voucherstyle2 .voucherBottomDiv input[type="text"],
#voucher-multistep-form .voucherstyle2 .voucherBottomDiv input[type="text"]:focus,
#voucher-multistep-form .voucherstyle2 .voucherBottomDiv input[type="text"]:hover {
  background-color: rgba(28,25,20,0.07) !important;
  color: var(--gc-gv-text) !important;
  border: none !important;
  border-radius: 8px !important;
}

#voucher-multistep-form .voucherstyle2 .voucherBottomDiv textarea,
#voucher-multistep-form .voucherstyle2 .voucherBottomDiv textarea:hover,
#voucher-multistep-form .voucherstyle2 .voucherBottomDiv textarea:focus {
  background-color: rgba(28,25,20,0.07) !important;
  color: var(--gc-gv-text) !important;
  border: none !important;
  border-radius: 8px !important;
}

/* Coupon code pill on cream — dark bg, gold text */
#voucher-multistep-form .voucherstyle2 .codeFormRight input[type="text"],
#voucher-multistep-form .voucherstyle2 .codeFormRight input[type="text"]:focus,
#voucher-multistep-form .voucherstyle2 .codeFormRight input[type="text"]:hover {
  background: var(--gc-gv-dark) !important;
  color: var(--gc-gv-gold) !important;
  border: 1px solid rgba(184,149,58,0.3) !important;
  border-radius: 20px !important;
}

/* Meta chip row on cream */
#voucher-multistep-form .voucherstyle2 .gc-meta-row > div {
  background: rgba(28,25,20,0.07) !important;
}

/* Value on cream */
#voucher-multistep-form .voucherstyle2 .voucherValueCard,
#voucher-multistep-form .voucherstyle2 .voucherValueCard:focus,
#voucher-multistep-form .voucherstyle2 .voucherValueCard:hover {
  color: var(--gc-gv-dark) !important;
  font-weight: 700 !important;
}

/* Labels on cream */
#voucher-multistep-form.wizard > .content > .body .voucherstyle2 .voucherBottomDiv label {
  color: var(--gc-gv-muted) !important;
}

/* Site info + terms on cream */
#voucher-multistep-form .voucherstyle2 .voucherSiteInfo,
#voucher-multistep-form .voucherstyle2 .voucherSiteInfo a {
  color: var(--gc-gv-muted) !important;
}

/* ============================================================
   GC Style 3 — Dark Portrait  (.voucherstyle3)
   Extra dark. Large title. Full-width image. Compact 2-col strip.
   ============================================================ */

#voucher-multistep-form .voucherstyle3 .cardDiv {
  background: var(--gc-gv-dark) !important;
}

#voucher-multistep-form .voucherstyle3 .cardDiv * {
  font-family: 'Montserrat', Arial, sans-serif !important;
}

/* Prominent title — full-width, centered gold, no border */
#voucher-multistep-form .voucherstyle3 .voucherBottomDiv h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.14em !important;
  color: var(--gc-gv-gold) !important;
  padding: 12px 16px 10px !important;
  margin: 0 !important;
  border: none !important;
  border-bottom: 1px solid var(--gc-gv-border) !important;
  background: transparent !important;
  text-align: center !important;
}

/* Image strip */
#voucher-multistep-form .voucherstyle3 .cardImgTop {
  border-bottom: 1px solid var(--gc-gv-border) !important;
}

/* sidedetails — 2-col grid for names + value + expiry */
#voucher-multistep-form .voucherstyle3 .sidedetails {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4px 8px !important;
  padding: 10px 14px !important;
  background: rgba(255,255,255,0.03) !important;
  border-bottom: 1px solid var(--gc-gv-border) !important;
}

/* Inputs inside sidedetails — transparent, no radius (tight grid) */
#voucher-multistep-form .voucherstyle3 .sidedetails input[type="text"],
#voucher-multistep-form .voucherstyle3 .sidedetails input[type="text"]:focus,
#voucher-multistep-form .voucherstyle3 .sidedetails input[type="text"]:hover {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 2px 0 !important;
  height: 22px !important;
  font-size: 0.68rem !important;
  margin-bottom: 0 !important;
  border: none !important;
  width: 100% !important;
}

/* voucherBottomDiv */
#voucher-multistep-form .voucherstyle3 .voucherBottomDiv {
  background: var(--gc-gv-dark) !important;
  padding: 0 !important;
}

#voucher-multistep-form .voucherstyle3 .uk-form-row {
  padding: 10px 14px 8px !important;
}

/* Coupon code in style 3 — solid gold fill, dark text (inverted pill) */
#voucher-multistep-form .voucherstyle3 .codeFormRight input[type="text"],
#voucher-multistep-form .voucherstyle3 .codeFormRight input[type="text"]:focus,
#voucher-multistep-form .voucherstyle3 .codeFormRight input[type="text"]:hover {
  background: var(--gc-gv-gold) !important;
  color: var(--gc-gv-dark) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  border: none !important;
  border-radius: 20px !important;
}

/* ============================================================
   On-card recipient name overlay
   Positioned bottom-right over the card image
   ============================================================ */

/* Image wrapper needs relative positioning */
#voucher-multistep-form .secondRightDiv .cardImgTop {
  position: relative !important;
}

/* Overlay container — bottom-right of image */
#voucher-multistep-form .secondRightDiv .gc-card-overlay {
  position: absolute !important;
  bottom: 14px !important;
  right: 16px !important;
  text-align: right !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* "G I F T   C A R D" small label above the name */
#voucher-multistep-form .secondRightDiv .gc-overlay-label {
  display: block !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: rgba(255,255,255,0.65) !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6) !important;
}

/* The recipient name — large, prominent */
#voucher-multistep-form .secondRightDiv .gc-name-on-card {
  display: block !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
  line-height: 1.15 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55) !important;
  min-height: 1.8rem !important;
}

/* Style 2 — cream card: name in dark text with shadow for legibility */
#voucher-multistep-form .voucherstyle2 .gc-overlay-label {
  color: rgba(28,25,20,0.55) !important;
  text-shadow: none !important;
}

#voucher-multistep-form .voucherstyle2 .gc-name-on-card {
  color: var(--gc-gv-dark) !important;
  text-shadow: 0 1px 3px rgba(255,255,255,0.4) !important;
}
