/* ============================================
   Gift Card Builder Page
   Design System: Light UI, red accents (#ef4444)
   Fonts: Montserrat, Barlow
   ============================================ */

/* ---------- Page Layout ---------- */

.gc-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gc-header {
  display: none; /* Removed in favor of gc-main-title */
}

.gc-main-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 10px;
  line-height: 1.25;
}

.gc-accent {
  color: #ef4444;
}

.gc-main-description {
  max-width: 680px;
  margin: 0 0 22px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.gc-grid {
  display: grid;
  grid-template-columns: 55% 40%;
  justify-content: space-between;
  align-items: start;
}

/* ---------- Left Column – Sticky Card Preview ---------- */

.gc-preview-col {
  position: sticky;
  top: 80px;
  align-self: start;
}

.gc-card-wrapper {
  perspective: 1200px;
  width: 100%;
  position: relative;
}

.gc-card-wrapper::before {
  content: "";
  display: block;
  padding-top: 63.05%; /* 1 / 1.586 aspect ratio */
}

.gc-card {
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.gc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.gc-card-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: 20px;
}

.gc-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 24px 32px;
}

/* Card info text */

.gc-card-info {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gc-card-from,
.gc-card-to {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.gc-card-value {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Card brand badge */

.gc-card-brand {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: flex-start;
  text-align: right;
}

.gc-brand-small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
}

.gc-brand-large {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
}

.gc-card-logo {
  display: block;
  width: 74px;
  height: auto;
  object-fit: contain;
  margin-top: 8px;
  margin-right: 28px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

/* Dedication inside card */
.gc-card-dedication {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dedication preview below card removed in favor of inside card text */

.gc-redemption-info {
  margin-top: 22px;
}

.gc-redemption-note {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.gc-redemption-panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  padding: 18px 20px;
}

.gc-redemption-panel h2 {
  margin: 0 0 14px;
  color: #111827;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.gc-redemption-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #ef4444;
}

.gc-redemption-panel li::marker {
  font-weight: 700;
}

.gc-redemption-panel strong,
.gc-redemption-panel span {
  display: block;
}

.gc-redemption-panel strong {
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.gc-redemption-panel span {
  margin-top: 4px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.gc-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.gc-section {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  animation: gcFadeIn 0.5s ease forwards;
  opacity: 0;
}

.gc-section:last-of-type {
  border-bottom: none;
}

.gc-section:nth-child(1) {
  animation-delay: 0s;
}

.gc-section:nth-child(2) {
  animation-delay: 0.1s;
}

.gc-section:nth-child(3) {
  animation-delay: 0.2s;
}

.gc-section:nth-child(4) {
  animation-delay: 0.3s;
}

.gc-section:nth-child(5) {
  animation-delay: 0.4s;
}

.gc-section:nth-child(6) {
  animation-delay: 0.5s;
}

.gc-section h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Value Buttons ---------- */

.gc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gc-value-btn {
  padding: 12px 8px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Barlow', sans-serif;
}

.gc-value-btn:hover {
  border-color: #d1d5db;
}

.gc-value-btn.active {
  border-color: #ef4444;
  background: transparent;
  color: #dc2626;
}

.gc-custom-btn {
  margin-top: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: auto;
  display: inline-block;
  transition: all 0.2s ease;
  font-family: 'Barlow', sans-serif;
}

.gc-custom-btn:hover {
  border-color: #d1d5db;
}

.gc-custom-btn.active {
  border-color: #ef4444;
  color: #dc2626;
}

.gc-custom-input-wrap {
  margin-top: 12px;
}

.gc-custom-input-wrap input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  color: #111827;
  background: #ffffff;
  transition: all 0.2s ease;
  box-sizing: border-box;
  font-family: 'Barlow', sans-serif;
}

.gc-custom-input-wrap input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ---------- Design Gallery Carousel ---------- */

.gc-hint {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.gc-designs-carousel {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.gc-designs-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.gc-designs-arrow:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.gc-designs-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.gc-designs-track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
  min-width: 0;
}

.gc-design-thumb {
  width: 140px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 3px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

.gc-design-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gc-design-thumb.active {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* ---------- Input Fields ---------- */

.gc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gc-input {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  font-family: 'Barlow', sans-serif;
}

.gc-input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.gc-input::placeholder {
  color: #9ca3af;
}

.gc-textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  resize: vertical;
  min-height: 118px;
  font-family: inherit;
  line-height: 1.6;
}

.gc-textarea:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.gc-textarea::placeholder {
  color: #9ca3af;
}

/* ---------- Labels ---------- */

.gc-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

/* ---------- Submit Button ---------- */

.gc-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #ef4444;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.gc-submit-btn:hover {
  background: #dc2626;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  transform: translateY(-1px);
}

.gc-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* ---------- Animations ---------- */

@keyframes gcFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Eyebrow & Subtitle ---------- */

.gc-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: #ef4444;
  margin: 0 0 8px;
  font-weight: 600;
}

.gc-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 8px 0 0;
}

/* ---------- Section Header with Step Badge ---------- */

.gc-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.gc-section-header h2 {
  margin: 0;
}

.gc-step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fecaca;
  color: #ef4444;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}

.gc-optional {
  font-weight: 400;
  color: #9ca3af;
  font-size: 14px;
}

/* ---------- Custom Input Inner ---------- */

.gc-custom-input-inner {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.2s ease;
}

.gc-custom-input-inner:focus-within {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.gc-custom-prefix,
.gc-custom-suffix {
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
  background: #f9fafb;
  user-select: none;
}

.gc-custom-prefix {
  border-right: 1px solid #e5e7eb;
}

.gc-custom-suffix {
  border-left: 1px solid #e5e7eb;
}

.gc-custom-input-inner input {
  flex: 1;
  padding: 14px 12px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  background: transparent;
  font-family: 'Barlow', sans-serif;
  min-width: 0;
}

.gc-custom-hint {
  font-size: 12px;
  color: #9ca3af;
  margin: 6px 0 0;
}

/* ---------- Design Label ---------- */

.gc-design-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 0;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  border-radius: 0 0 9px 9px;
}

/* ---------- Character Count ---------- */

.gc-char-count {
  text-align: right;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- Trust Block ---------- */

.gc-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.gc-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}

.gc-trust i {
  color: #10b981;
  font-size: 14px;
}

/* ---------- Preview Note ---------- */

.gc-preview-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
}

.gc-preview-note i {
  font-size: 14px;
}

/* ---------- Quote Icon ---------- */

.gc-quote-icon {
  color: #ef4444;
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
  opacity: 0.6;
}

/* ---------- Responsive – max-width 900px ---------- */

@media (max-width: 900px) {
  .gc-grid {
    grid-template-columns: 1fr;
  }

  .gc-preview-col {
    position: static;
    margin-bottom: 24px;
  }

  .gc-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gc-field-grid {
    grid-template-columns: 1fr;
  }

  .gc-header h1 {
    font-size: 26px;
  }

  .gc-main-description {
    max-width: none;
  }

  .gc-card-value {
    font-size: 26px;
  }

  .gc-brand-large {
    font-size: 22px;
  }

  .gc-card-logo {
    width: 64px;
    margin-right: 24px;
  }

  .gc-card-content {
    padding: 22px 24px;
  }
  .gc-card-dedication {
    bottom: 18px;
    left: 24px;
    right: 24px;
    font-size: 14px;
  }

  .gc-redemption-info {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .gc-page {
    padding: 16px 12px;
  }

  .gc-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .gc-section-header {
    align-items: flex-start;
  }

  .gc-section h2 {
    font-size: 15px;
    line-height: 1.35;
  }

  .gc-card-content {
    padding: 16px 16px;
  }

  .gc-card-info {
    max-width: 55%;
  }

  .gc-card-value {
    font-size: 18px;
    margin-top: 16px;
  }

  .gc-card-from,
  .gc-card-to {
    font-size: 11px;
  }

  .gc-card-brand {
    width: auto;
    max-width: 40%;
  }

  .gc-brand-small {
    font-size: 9px;
  }

  .gc-brand-large {
    font-size: 14px;
  }

  .gc-card-logo {
    width: 42px;
    margin-top: 4px;
    margin-right: 0;
  }

  .gc-card-dedication {
    bottom: 12px;
    left: 16px;
    right: 16px;
    font-size: 11px;
  }

  .gc-redemption-panel {
    padding: 16px;
  }

  .gc-design-thumb {
    width: 100px;
    height: 65px;
  }

  .gc-values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gc-value-btn {
    padding: 10px 6px;
    font-size: 13px;
  }
}

/* ════════════════════════════════════════════
   Delivery method modal
   ════════════════════════════════════════════ */
body.gcd-open { overflow: hidden; }

.gcd-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 13, 15, .62);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: gcdFade .2s ease;
}
.gcd-overlay[hidden] { display: none; }

@keyframes gcdFade { from { opacity: 0; } to { opacity: 1; } }

.gcd-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px 30px 22px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .55);
  animation: gcdPop .28s cubic-bezier(.22, 1, .36, 1);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

@keyframes gcdPop {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.gcd-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gcd-close:hover { background: #e5e7eb; }

.gcd-header h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #0d0d0f;
  padding-right: 28px;
}
.gcd-header p { margin: 0 0 18px; color: #6b7280; font-size: 14px; }

/* Method tabs */
.gcd-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.gcd-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  padding: 14px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.gcd-method i { font-size: 22px; color: #6b7280; }
.gcd-nfc-mark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}
.gcd-nfc-mark__text { font-size: 10px; }
.gcd-nfc-wave {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  overflow: visible;
}
.gcd-nfc-wave path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gcd-method__name { font-size: 13.5px; font-weight: 700; color: #111827; }
.gcd-method__desc { font-size: 11.5px; color: #6b7280; line-height: 1.35; }
.gcd-method:hover { border-color: #fca5a5; }
.gcd-method.active {
  border-color: #e63946;
  background: #fff;
  box-shadow: none;
}
.gcd-method.active i,
.gcd-method.active .gcd-method__name { color: #e63946; }
.gcd-method[data-method="NFC"].active { border-color: #facc15; }
.gcd-method[data-method="NFC"].active i,
.gcd-method[data-method="NFC"].active .gcd-method__name { color: #c99700; }

/* Panels */
.gcd-panel { display: none; }
.gcd-panel.active { display: block; animation: gcdFade .2s ease; }

.gcd-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin: 14px 0 6px;
}
.gcd-optional { color: #9ca3af; font-weight: 500; }

.gcd-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
}
.gcd-input:focus { outline: none; border-color: #e63946; box-shadow: 0 0 0 3px rgba(230, 57, 70, .15); }
.gcd-input--error { border-color: #ef4444; }

.gcd-error { color: #ef4444; font-size: 12.5px; margin: 6px 0 0; }

.gcd-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #475569;
  margin: 0 0 4px;
}
.gcd-note i { color: #e63946; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.gcd-note--link {
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid #eef2f7;
  background: #f8fafc;
}
.gcd-note--link i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #fee2e2;
  margin-top: 0;
}
.gcd-note__body {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.gcd-note__body strong {
  color: #111827;
  font-size: 13px;
  line-height: 1.25;
}
.gcd-note__body span {
  color: #475569;
  font-size: 12.5px;
  line-height: 1.45;
}
.gcd-note__body b {
  color: #111827;
  font-weight: 800;
}


.gcd-nfc-summary {
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffdf3;
}

.gcd-nfc-summary__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.gcd-nfc-summary__icon {
  min-width: 58px;
  height: 38px;
  padding: 0 7px;
  border-radius: 10px;
  background: #fff;
  color: #c99700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: inset 0 0 0 1px #facc15;
}

.gcd-nfc-summary__icon > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}

.gcd-nfc-summary__icon .gcd-nfc-wave {
  width: 22px;
  height: 22px;
}

.gcd-nfc-summary__icon::before { content: none; }

.gcd-nfc-summary__eyebrow {
  display: block;
  margin-bottom: 2px;
  color: #c99700;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gcd-nfc-summary__title {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111827;
  font-size: 14px;
  line-height: 1.25;
}



.gcd-nfc-summary__badge {
  white-space: nowrap;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
}

.gcd-nfc-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gcd-nfc-step {
  min-height: 72px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.gcd-nfc-step i {
  display: inline-flex;
  color: #c99700;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.gcd-nfc-step::before { content: none; display: none; }

.gcd-nfc-step span {
  color: #334155;
  font-size: 12px;
  line-height: 1.4;
}

/* Link preview card */
.gcd-preview { margin: 16px 0 4px; }
.gcd-preview__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9ca3af;
  margin-bottom: 8px;
}
.gcd-preview__card {
  position: relative;
  aspect-ratio: 1.9 / 1;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5);
}
.gcd-preview__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gcd-preview__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 15, .72) 0%, rgba(13, 13, 15, .25) 60%, rgba(13, 13, 15, .6) 100%);
}
.gcd-preview__content { position: absolute; inset: 0; padding: 16px 18px; display: flex; flex-direction: column; }
.gcd-preview__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.gcd-preview__recipient { min-width: 0; }
.gcd-preview__from,
.gcd-preview__to {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.18;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}
.gcd-preview__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 44%;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #111827;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
}
.gcd-preview__logo {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  background: url('/static/img/favicon.png') center/cover no-repeat;
}
.gcd-preview__value { font-size: 24px; font-weight: 800; margin-top: 10px; text-shadow: 0 2px 6px rgba(0, 0, 0, .5); }
.gcd-preview__dedication {
  margin: auto auto;
  width: min(78%, 360px);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .62);
}

/* Footer / actions */
.gcd-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.gcd-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.gcd-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}
.gcd-btn--ghost { flex: 0 0 auto; background: #f3f4f6; color: #374151; padding: 14px 22px; }
.gcd-btn--ghost:hover { background: #e5e7eb; }
.gcd-btn--primary { background: #e63946; color: #fff; box-shadow: none; }
.gcd-btn--primary:hover:not(:disabled) { background: #d62f3c; }
.gcd-btn--primary:disabled { opacity: .65; cursor: not-allowed; }

.gcd-feedback { margin-top: 12px; font-size: 13.5px; text-align: center; min-height: 16px; }
.gcd-feedback.is-error { color: #ef4444; font-weight: 600; }

@media (max-width: 540px) {
  .gcd-modal { padding: 24px 18px 18px; }
  .gcd-methods { grid-template-columns: 1fr; }
  .gcd-method { flex-direction: row; align-items: center; gap: 12px; }
  .gcd-method__desc { display: none; }
  .gcd-nfc-summary__head { grid-template-columns: auto minmax(0, 1fr); }
  .gcd-nfc-summary__badge { grid-column: 2; justify-self: start; }
  .gcd-nfc-steps { grid-template-columns: 1fr; }
  .gcd-nfc-step {
    min-height: 0;
    flex-direction: row;
    align-items: flex-start;
  }
  .gcd-footer { flex-direction: column-reverse; }
  .gcd-btn--ghost { width: 100%; }
}
