﻿/* =========================================================
   Needy Cat Media - Modern Luggage Tag Builder
   File: /css/ncm-luggage-tag-builder-modern.css
   Pairs with /css/ncm-text-tools-modern.css
========================================================= */

:root {
  --lt-bg: #07111f;
  --lt-bg-2: #0f172a;
  --lt-panel: rgba(255, 255, 255, 0.96);
  --lt-panel-soft: rgba(255, 255, 255, 0.08);
  --lt-border: rgba(255, 255, 255, 0.14);
  --lt-border-dark: rgba(15, 23, 42, 0.10);
  --lt-text: #e5e7eb;
  --lt-muted: rgba(226, 232, 240, 0.78);
  --lt-dark: #111827;
  --lt-dark-soft: #475569;
  --lt-purple: #8b5cf6;
  --lt-purple-2: #a855f7;
  --lt-cyan: #22d3ee;
  --lt-gold: #f59e0b;
  --lt-green: #22c55e;
  --lt-danger: #ef4444;
  --lt-shadow: 0 22px 70px rgba(0, 0, 0, 0.30);
}

.ncm-luggage-tag-page,
.ncm-luggage-tag-page * {
  box-sizing: border-box;
}

.ncm-luggage-tag-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 0%, rgba(168, 85, 247, 0.22), transparent 32rem),
    radial-gradient(circle at 86% 8%, rgba(34, 211, 238, 0.14), transparent 30rem),
    linear-gradient(180deg, #07111f 0%, #0f172a 46%, #070b13 100%);
  color: var(--lt-text);
  overflow-x: hidden;
  padding-bottom: 70px;
}

.ncm-luggage-tag-page .lt-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
   Buttons
========================================================= */


.lt-secondary-story-btn {
  border-color: rgba(255, 216, 77, .55) !important;
  color: #ffd84d !important;
}

.lt-secondary-story-btn:hover {
  background: rgba(255, 216, 77, .14) !important;
  color: #ffffff !important;
}

.lt-info-head-with-action {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.lt-info-head-with-action > div {
  min-width: 0;
}

.lt-faq-guide-btn {
  flex: 0 0 auto;
  margin-top: 20px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .lt-info-head-with-action {
    display: block;
  }

  .lt-faq-guide-btn {
    width: 100%;
    margin-top: 16px;
    white-space: normal;
  }
}

.ncm-luggage-tag-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ncm-luggage-tag-page .btn:hover,
.ncm-luggage-tag-page .btn:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
}

.ncm-luggage-tag-page .btn-lg {
  min-height: 50px;
  padding: 13px 20px;
  font-size: 0.98rem;
}

.ncm-luggage-tag-page .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.28);
}

.ncm-luggage-tag-page .btn-primary:hover,
.ncm-luggage-tag-page .btn-primary:focus-visible {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.36);
}

.ncm-luggage-tag-page .btn-outline-light,
.ncm-luggage-tag-page .btn-outline-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.ncm-luggage-tag-page .btn-outline-light:hover,
.ncm-luggage-tag-page .btn-outline-light:focus-visible,
.ncm-luggage-tag-page .btn-outline-secondary:hover,
.ncm-luggage-tag-page .btn-outline-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.ncm-luggage-tag-page .btn-warning {
  color: #111827;
  background: #fbbf24;
  border-color: #f59e0b;
}

.ncm-luggage-tag-page .btn-warning:hover,
.ncm-luggage-tag-page .btn-warning:focus-visible {
  background: #f59e0b;
}

.ncm-luggage-tag-page .w-100 {
  width: 100%;
}

/* =========================================================
   Hero
========================================================= */

.ncm-luggage-tag-page .lt-modern-hero {
  position: relative;
  padding: clamp(56px, 8vw, 98px) 0 clamp(42px, 7vw, 74px);
  isolation: isolate;
}

.ncm-luggage-tag-page .lt-modern-hero::before {
  content: "";
  position: absolute;
  inset: 18px clamp(14px, 3vw, 38px);
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.30), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.18), transparent 28rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--lt-shadow);
}

.ncm-luggage-tag-page .lt-modern-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.58fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.ncm-luggage-tag-page .lt-kicker,
.ncm-luggage-tag-page .lt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(216, 180, 254, 0.26);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ncm-luggage-tag-page .lt-modern-hero h1 {
  max-width: 820px;
  margin: 16px 0 16px;
  color: #ffffff;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-modern-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.ncm-luggage-tag-page .lt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ncm-luggage-tag-page .lt-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ncm-luggage-tag-page .lt-hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  font-weight: 800;
}


/* =========================================================
   Hero Mock Tag - Fancy CSS Travel Tag
   No image dependency
========================================================= */

.ncm-luggage-tag-page .lt-modern-hero-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  position: relative;
  perspective: 900px;
}

.ncm-luggage-tag-page .lt-modern-hero-card::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 330px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 42%, rgba(168, 85, 247, 0.48), transparent 38%),
    radial-gradient(circle at 72% 54%, rgba(34, 211, 238, 0.42), transparent 42%),
    radial-gradient(circle at 52% 72%, rgba(245, 158, 11, 0.18), transparent 34%);
  filter: blur(32px);
  opacity: 0.95;
  z-index: 0;
}

.ncm-luggage-tag-page .lt-modern-hero-card::after {
  content: "CUSTOM • PRINTABLE • QR";
  position: absolute;
  right: 8px;
  bottom: 52px;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(251, 191, 36, 0.30);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  transform: rotate(-5deg);
}

.ncm-luggage-tag-page .lt-mock-tag {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(292px, 72vw);
  aspect-ratio: 13 / 21;
  padding: 56px 28px 34px;
  border-radius: 38px;
  color: #0f172a;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,245,249,0.95)),
    radial-gradient(circle at 50% 18%, rgba(34,211,238,0.16), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  transform: rotate(4deg) rotateY(-8deg);
  overflow: hidden;
}

/* Top gradient strip */
.ncm-luggage-tag-page .lt-mock-tag::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 86px;
  background:
    linear-gradient(135deg, #7c3aed 0%, #0ea5e9 55%, #22d3ee 100%);
  opacity: 0.98;
  z-index: -1;
}

/* Inner stitched border + small route details */
.ncm-luggage-tag-page .lt-mock-tag::after {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 30px;
  border: 2px dashed rgba(15, 23, 42, 0.15);
  pointer-events: none;
}

/* Hole */
.ncm-luggage-tag-page .lt-mock-hole {
  position: absolute;
  top: 22px;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow:
    inset 0 2px 7px rgba(15, 23, 42, 0.22),
    0 9px 18px rgba(15, 23, 42, 0.12);
}

/* Fake QR card */
.ncm-luggage-tag-page .lt-mock-qr {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin-top: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 10px solid #0f172a;
  color: #0f172a;
  font-size: 4.2rem;
  line-height: 1;
  box-shadow:
    0 20px 38px rgba(15, 23, 42, 0.22),
    inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

/* QR finder squares */
.ncm-luggage-tag-page .lt-mock-qr::before,
.ncm-luggage-tag-page .lt-mock-qr::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: #22d3ee;
  box-shadow: 0 0 0 4px #ffffff;
}

.ncm-luggage-tag-page .lt-mock-qr::before {
  left: 15px;
  top: 15px;
}

.ncm-luggage-tag-page .lt-mock-qr::after {
  right: 15px;
  bottom: 15px;
}

/* Travel stamp */
.ncm-luggage-tag-page .lt-mock-qr + strong::before {
  content: "TRAVEL READY";
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  box-shadow: 0 10px 18px rgba(14, 165, 233, 0.20);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.ncm-luggage-tag-page .lt-mock-tag strong {
  margin-top: 22px;
  color: #0f172a;
  font-size: 1.12rem;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.ncm-luggage-tag-page .lt-mock-tag span {
  position: relative;
  margin-top: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #475569;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 850;
  font-size: 0.82rem;
}

/* Small decorative flight line */
.ncm-luggage-tag-page .lt-mock-tag span::before {
  content: "✈";
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #0ea5e9;
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.24);
  font-size: 0.82rem;
}

/* Bottom accent bar */
.ncm-luggage-tag-page .lt-mock-tag span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  width: 170px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #0ea5e9, #22d3ee);
  opacity: 0.92;
}

@media (max-width: 980px) {
  .ncm-luggage-tag-page .lt-modern-hero-card {
    display: none;
  }
}




/* =========================================================
   Builder Shell
========================================================= */

.ncm-luggage-tag-page .lt-builder-wrap {
  margin-top: 8px;
}

.ncm-luggage-tag-page .lt-alert {
  display: none;
  margin: 0 auto 28px;
  max-width: 900px;
  padding: 22px;
  border-radius: 22px;
  background: #fff7ed;
  color: #111827;
  border: 1px solid #fed7aa;
  text-align: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.ncm-luggage-tag-page .lt-alert strong {
  color: #7c2d12;
  font-size: 1.08rem;
}

.ncm-luggage-tag-page .lt-anchor-target {
  position: relative;
  top: -90px;
}

.ncm-luggage-tag-page .lt-pro-template-head {
  margin-top: 24px;
}

.ncm-luggage-tag-page .lt-hero {
  margin: 0 0 24px;
  padding: 28px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ncm-luggage-tag-page .lt-hero h1 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-hero p {
  max-width: 900px;
  margin: 0;
  color: rgba(226, 232, 240, 0.80);
  line-height: 1.7;
}

.ncm-luggage-tag-page .lt-grid {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.ncm-luggage-tag-page .lt-panel {
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.ncm-luggage-tag-page .lt-panel h2 {
  margin: 0 0 14px;
  font-size: 1.26rem;
  line-height: 1.2;
  font-weight: 950;
  color: #0f172a;
}

.ncm-luggage-tag-page .lt-contact-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px;
  background: #f8fafc;
}

.ncm-luggage-tag-page .lt-contact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.92rem;
}

.ncm-luggage-tag-page .lt-contact-row:last-child {
  border-bottom: 0;
}

.ncm-luggage-tag-page .lt-contact-row span:first-child {
  color: #64748b;
  font-weight: 800;
}

.ncm-luggage-tag-page .lt-contact-row span:last-child {
  color: #0f172a;
  font-weight: 900;
  text-align: right;
  word-break: break-word;
}

.ncm-luggage-tag-page .lt-qr-preview {
  margin-top: 16px;
  text-align: center;
}

.ncm-luggage-tag-page .lt-qr-preview img {
  width: 190px;
  max-width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* =========================================================
   Preview Extra Actions
========================================================= */

.ncm-luggage-tag-page .lt-preview-extra-actions {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.ncm-luggage-tag-page .lt-preview-extra-actions .lt-new-tag-btn {
  width: 100%;
  max-width: 280px;
  min-height: 46px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  border: 1px solid rgba(14, 165, 233, 0.45);
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.20);
}

.ncm-luggage-tag-page .lt-preview-extra-actions .lt-new-tag-btn:hover,
.ncm-luggage-tag-page .lt-preview-extra-actions .lt-new-tag-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
}

.ncm-luggage-tag-page .lt-preview-extra-actions p {
  max-width: 520px;
  margin: 10px auto 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* =========================================================
   Template Cards
========================================================= */

.ncm-luggage-tag-page .lt-template-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin: 0 0 14px;
  color: #ffffff;
}

.ncm-luggage-tag-page .lt-template-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1.2;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-template-head p {
  margin: 5px 0 0;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.55;
}

.ncm-luggage-tag-page .lt-template-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ncm-luggage-tag-page .lt-template-card {
  width: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  text-align: left;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.ncm-luggage-tag-page .lt-template-card:hover,
.ncm-luggage-tag-page .lt-template-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  border-color: rgba(34, 211, 238, 0.48);
}

.ncm-luggage-tag-page .lt-template-card.is-selected {
  border-color: #22d3ee;
  box-shadow:
    0 0 0 3px rgba(34, 211, 238, 0.22),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.ncm-luggage-tag-page .lt-template-card.is-locked {
  opacity: 1;
  cursor: pointer;
}

.ncm-luggage-tag-page .lt-lock {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
  padding: 6px 9px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.ncm-luggage-tag-page .lt-template-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 13 / 21;
  overflow: hidden;
  margin-bottom: 11px;
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.ncm-luggage-tag-page .lt-template-bg,
.ncm-luggage-tag-page .lt-preview-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

.ncm-luggage-tag-page .lt-template-qr,
.ncm-luggage-tag-page .lt-preview-qr {
  position: absolute;
  left: var(--qr-x, 50%);
  top: var(--qr-y, 52%);
  width: var(--qr-size, 50%);
  height: auto;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 10px;
  padding: 0.75%;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.18);
  z-index: 5;
}

.ncm-luggage-tag-page .lt-preview-qr {
  border-radius: 14px;
  padding: 0.8%;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.20);
}

.ncm-luggage-tag-page .lt-template-card h3 {
  margin: 0;
  color: #111827;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 950;
  text-align: center;
}

.ncm-luggage-tag-page .lt-template-card p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.3;
  text-align: center;
}

.ncm-luggage-tag-page .lt-template-card.is-locked::after {
  content: "Preview Only";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 84px;
  z-index: 25;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.90);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 950;
  text-align: center;
  pointer-events: none;
}

.ncm-luggage-tag-page .lt-template-card.is-locked.is-selected::after {
  content: "Unlock to Download";
  background: #7c3aed;
}

/* =========================================================
   Preview + Actions
========================================================= */

.ncm-luggage-tag-page .lt-preview-wrap {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  gap: 20px;
  align-items: start;
}

.ncm-luggage-tag-page .lt-live-preview {
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background:
    linear-gradient(45deg, #f8fafc 25%, transparent 25%),
    linear-gradient(-45deg, #f8fafc 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f8fafc 75%),
    linear-gradient(-45deg, transparent 75%, #f8fafc 75%),
    #ffffff;
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}

.ncm-luggage-tag-page .lt-preview-tag {
  position: relative;
  width: min(330px, 90vw);
  aspect-ratio: 13 / 21;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.22);
}

.ncm-luggage-tag-page .lt-actions {
  display: grid;
  gap: 10px;
}

.ncm-luggage-tag-page .lt-note {
  margin: 13px 0 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
}

.ncm-luggage-tag-page .lt-pro-notice {
  margin-top: 16px;
  padding: 15px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #111827;
  font-size: 0.9rem;
  line-height: 1.42;
}

.ncm-luggage-tag-page .lt-pro-notice strong {
  display: block;
  margin-bottom: 5px;
  color: #9a3412;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-pro-notice span {
  display: block;
  color: #4b5563;
}

.ncm-luggage-tag-page .lt-paypal-unlock {
  margin-top: 14px;
  padding: 15px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #fed7aa;
}

.ncm-luggage-tag-page .lt-paypal-title {
  margin-bottom: 3px;
  color: #111827;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-paypal-price {
  margin-bottom: 12px;
  color: #9a3412;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-paypal-success,
.ncm-luggage-tag-page .lt-paypal-error {
  margin-top: 10px;
  padding: 11px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 900;
}

.ncm-luggage-tag-page .lt-paypal-success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.ncm-luggage-tag-page .lt-paypal-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.ncm-luggage-tag-page .lt-actions .btn.is-pro-locked {
  opacity: 1;
  cursor: pointer;
  border-color: #f59e0b;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-actions .btn.is-pro-locked:hover,
.ncm-luggage-tag-page .lt-actions .btn.is-pro-locked:focus-visible {
  background: #ffedd5;
  color: #7c2d12;
  transform: translateY(-1px);
}

.ncm-luggage-tag-page .lt-affiliate {
  margin-top: 18px;
  padding: 17px;
  border-radius: 20px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #111827;
}

.ncm-luggage-tag-page .lt-affiliate h3 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 1.06rem;
  line-height: 1.2;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-affiliate p {
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.5;
}

.ncm-luggage-tag-page .lt-small {
  margin-top: 9px;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.4;
}



/* =========================================================
   Compact Print Tips Dropdown
========================================================= */

.ncm-luggage-tag-page .lt-print-tips-mini {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
}

.ncm-luggage-tag-page .lt-print-tips-mini summary {
  cursor: pointer;
  color: #0f172a;
  font-weight: 950;
  font-size: 0.94rem;
  line-height: 1.3;
}

.ncm-luggage-tag-page .lt-print-tips-mini summary::marker {
  color: #7c3aed;
}

.ncm-luggage-tag-page .lt-print-tips-mini ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.ncm-luggage-tag-page .lt-print-tips-mini li {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.4;
}



/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {
  .ncm-luggage-tag-page .lt-template-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ncm-luggage-tag-page .lt-modern-hero-inner,
  .ncm-luggage-tag-page .lt-grid,
  .ncm-luggage-tag-page .lt-preview-wrap {
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-modern-hero-card {
    display: none;
  }

  .ncm-luggage-tag-page .lt-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .ncm-luggage-tag-page .lt-wrap {
    width: min(100% - 24px, 1180px);
  }

  .ncm-luggage-tag-page .lt-modern-hero {
    padding: 40px 0 34px;
  }

  .ncm-luggage-tag-page .lt-modern-hero::before {
    inset: 10px 10px;
    border-radius: 26px;
  }

  .ncm-luggage-tag-page .lt-modern-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
    line-height: 1;
  }

  .ncm-luggage-tag-page .lt-hero-actions,
  .ncm-luggage-tag-page .lt-hero-trust {
    align-items: stretch;
  }

  .ncm-luggage-tag-page .lt-hero-actions .btn {
    width: 100%;
  }

  .ncm-luggage-tag-page .lt-hero-trust span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .ncm-luggage-tag-page .lt-hero,
  .ncm-luggage-tag-page .lt-panel {
    border-radius: 22px;
    padding: 20px;
  }

  .ncm-luggage-tag-page .lt-template-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ncm-luggage-tag-page .lt-template-grid {
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-template-card {
    min-height: auto;
  }

  .ncm-luggage-tag-page .lt-template-thumb {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
  }

  .ncm-luggage-tag-page .lt-live-preview {
    min-height: auto;
    padding: 18px;
  }

  .ncm-luggage-tag-page .lt-preview-tag {
    width: min(290px, 88vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ncm-luggage-tag-page .btn,
  .ncm-luggage-tag-page .lt-template-card {
    transition: none;
  }

  .ncm-luggage-tag-page .btn:hover,
  .ncm-luggage-tag-page .btn:focus-visible,
  .ncm-luggage-tag-page .lt-template-card:hover,
  .ncm-luggage-tag-page .lt-template-card:focus-visible {
    transform: none;
  }
}

/* =========================================================
   Hero Tablet / Hamburger Layout Polish
========================================================= */

@media (max-width: 980px) {
  .ncm-luggage-tag-page .lt-modern-hero {
    padding: 34px 0 34px;
  }

  .ncm-luggage-tag-page .lt-modern-hero::before {
    inset: 10px 12px;
    border-radius: 28px;
  }

  .ncm-luggage-tag-page .lt-modern-hero-inner {
    display: block;
    padding: 0 26px;
  }

  .ncm-luggage-tag-page .lt-modern-hero h1 {
    max-width: 760px;
    margin: 18px 0 14px;
    font-size: clamp(2.15rem, 6.5vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .ncm-luggage-tag-page .lt-modern-hero p {
    max-width: 720px;
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .ncm-luggage-tag-page .lt-hero-actions {
    margin-top: 24px;
  }

  .ncm-luggage-tag-page .lt-hero-trust {
    max-width: 760px;
  }

  .ncm-luggage-tag-page .lt-modern-hero-card {
    display: none;
  }
}

@media (max-width: 680px) {
  .ncm-luggage-tag-page .lt-modern-hero-inner {
    padding: 0 18px;
  }

  .ncm-luggage-tag-page .lt-modern-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .ncm-luggage-tag-page .lt-modern-hero p {
    font-size: 0.98rem;
  }
}




/* =========================================================
   Info / How It Works Section
========================================================= */

.ncm-luggage-tag-page .lt-info-section {
  margin: 22px 0 26px;
}

.ncm-luggage-tag-page .lt-info-section .lt-wrap {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.15), transparent 34%),
    radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.ncm-luggage-tag-page .lt-info-head {
  max-width: 920px;
  margin: 0 0 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.ncm-luggage-tag-page .lt-info-head h2 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ncm-luggage-tag-page .lt-info-head p {
  max-width: 860px;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ncm-luggage-tag-page .lt-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ncm-luggage-tag-page .lt-info-card {
  min-height: 150px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #111827;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.ncm-luggage-tag-page .lt-info-card strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-info-card h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-info-card p {
  margin: 0;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .ncm-luggage-tag-page .lt-info-section .lt-wrap {
    padding: 20px;
  }

  .ncm-luggage-tag-page .lt-info-grid {
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-info-card {
    min-height: auto;
  }
}

/* =========================================================
   Luggage Tag Builder - Next Actions Polish
========================================================= */

.ncm-luggage-page .lt-actions,
.ncm-luggage-page .ncm-tag-actions,
.ncm-luggage-page .lt-download-actions {
  display: grid;
  gap: 12px;
}

/* Download button */
.ncm-luggage-page #downloadTagBtn,
.ncm-luggage-page .lt-download-btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9) !important;
  color: #ffffff !important;
  font-weight: 850;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.24);
  cursor: pointer;
}

/* Print Insert button */
.ncm-luggage-page #printTagBtn,
.ncm-luggage-page .lt-print-btn,
.ncm-luggage-page button[onclick*="print"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9) !important;
  color: #ffffff !important;
  font-weight: 850;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.24);
  cursor: pointer;
}

.ncm-luggage-page #downloadTagBtn:hover,
.ncm-luggage-page .lt-download-btn:hover,
.ncm-luggage-page #printTagBtn:hover,
.ncm-luggage-page .lt-print-btn:hover,
.ncm-luggage-page button[onclick*="print"]:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ncm-luggage-page #downloadTagBtn:disabled,
.ncm-luggage-page .lt-download-btn:disabled,
.ncm-luggage-page #printTagBtn:disabled,
.ncm-luggage-page .lt-print-btn:disabled,
.ncm-luggage-page button[onclick*="print"]:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

/* QR reliability note */
.ncm-luggage-page .lt-note {
  margin: 16px 0 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Better luggage tag size note */
.ncm-luggage-page .lt-size-note {
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.11), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(14, 165, 233, 0.24);
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ncm-luggage-page .lt-size-note strong {
  color: #0f172a;
  font-weight: 900;
}

.ncm-luggage-page .lt-size-note strong:first-child {
  display: block;
  margin-bottom: 4px;
  color: #0369a1;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Holder recommendation card */
.ncm-luggage-page .lt-affiliate {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #fffaf0;
  border: 1px solid rgba(245, 158, 11, 0.32);
}

.ncm-luggage-page .lt-affiliate h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.18;
}

.ncm-luggage-page .lt-affiliate p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ncm-luggage-page .lt-affiliate .btn,
.ncm-luggage-page .lt-affiliate a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

/* Affiliate disclaimer */
.ncm-luggage-page .lt-affiliate-note,
.ncm-luggage-page .lt-affiliate + p,
.ncm-luggage-page .lt-affiliate-disclaimer {
  margin-top: 12px;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* =========================================================
   FINAL OVERRIDE - Luggage Tag Builder Buttons
   Works even if .ncm-luggage-page wrapper is missing
========================================================= */

.lt-actions {
  display: grid !important;
  gap: 12px !important;
}

.lt-download-btn,
.lt-print-btn,
button.lt-download-btn,
button.lt-print-btn,
#printTagBtn,
#downloadTagBtn {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 12px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9) !important;
  color: #ffffff !important;
  font-weight: 850 !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.24) !important;
  cursor: pointer !important;
}

.lt-download-btn:hover,
.lt-print-btn:hover,
#printTagBtn:hover,
#downloadTagBtn:hover {
  filter: brightness(1.06) !important;
  transform: translateY(-1px) !important;
}

.lt-download-btn:disabled,
.lt-print-btn:disabled,
#printTagBtn:disabled,
#downloadTagBtn:disabled {
  opacity: 0.72 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* =========================================================
   FAQ Section
========================================================= */

.ncm-luggage-tag-page .lt-faq-section {
  margin: 34px 0 54px;
}

.ncm-luggage-tag-page .lt-faq-section .lt-wrap {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.ncm-luggage-tag-page .lt-faq-section .lt-info-head {
  margin-bottom: 18px;
}

.ncm-luggage-tag-page .lt-faq-list {
  display: grid;
  gap: 12px;
}

.ncm-luggage-tag-page .lt-faq-list details {
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #111827;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.ncm-luggage-tag-page .lt-faq-list summary {
  cursor: pointer;
  position: relative;
  padding: 18px 52px 18px 20px;
  color: #0f172a;
  font-weight: 950;
  line-height: 1.35;
  list-style: none;
}

.ncm-luggage-tag-page .lt-faq-list summary::-webkit-details-marker {
  display: none;
}

.ncm-luggage-tag-page .lt-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-faq-list details[open] summary::after {
  content: "−";
}

.ncm-luggage-tag-page .lt-faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}

.ncm-luggage-tag-page .lt-faq-list details[open] {
  background: #ffffff;
  border-color: rgba(34, 211, 238, 0.26);
}


/* =========================================================
   Template Size Filter
========================================================= */

.ncm-luggage-tag-page .lt-filter-bar {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.ncm-luggage-tag-page .lt-filter-label {
  display: block;
  margin: 0 0 11px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ncm-luggage-tag-page .lt-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ncm-luggage-tag-page .lt-filter-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.1;
  font-weight: 950;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    color 0.16s ease;
}

.ncm-luggage-tag-page .lt-filter-btn:hover,
.ncm-luggage-tag-page .lt-filter-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(34, 211, 238, 0.50);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  outline: none;
}

.ncm-luggage-tag-page .lt-filter-btn.is-active {
  color: #0f172a;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  border-color: rgba(34, 211, 238, 0.75);
  box-shadow: 0 12px 26px rgba(34, 211, 238, 0.18);
}

.ncm-luggage-tag-page .lt-template-card.is-filter-hidden {
  display: none;
}

@media (max-width: 680px) {
  .ncm-luggage-tag-page .lt-filter-bar {
    padding: 14px;
    border-radius: 20px;
  }

  .ncm-luggage-tag-page .lt-filter-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-filter-btn {
    width: 100%;
  }
}

/* =========================================================
   Luggage Tag Empty State
========================================================= */

.ncm-luggage-tag-page .lt-empty-state {
  max-width: 920px;
  margin: 22px auto;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 34%),
    linear-gradient(135deg, #fff7ed, #ffffff);
  border: 1px solid rgba(251, 191, 36, 0.42);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.ncm-luggage-tag-page .lt-empty-state-inner {
  padding: clamp(20px, 3vw, 34px);
  text-align: center;
}

.ncm-luggage-tag-page .lt-empty-state h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-empty-state p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #334155;
  line-height: 1.6;
}

.ncm-luggage-tag-page .lt-preview-disclaimer {
  max-width: 760px;
  margin: 12px auto 18px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 850;
  text-align: center;
}

.ncm-luggage-tag-page .lt-empty-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px auto;
  max-width: 820px;
}

.ncm-luggage-tag-page .lt-empty-feature-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.95);
  text-align: left;
}

.ncm-luggage-tag-page .lt-empty-feature-grid strong {
  display: block;
  margin-bottom: 5px;
  color: #0f172a;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-empty-feature-grid span {
  display: block;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.4;
}

.ncm-luggage-tag-page .lt-empty-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px auto 0;
  text-align: center;
}

.ncm-luggage-tag-page .lt-empty-actions .btn {
  min-width: 190px;
}

.ncm-luggage-tag-page .lt-empty-actions .btn-outline-secondary {
  color: #334155;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.ncm-luggage-tag-page .lt-empty-actions .btn-outline-secondary:hover,
.ncm-luggage-tag-page .lt-empty-actions .btn-outline-secondary:focus-visible {
  color: #0f172a;
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.38);
}

.ncm-luggage-tag-page .lt-empty-note {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  color: #64748b !important;
  font-size: 0.9rem;
}

.ncm-luggage-tag-page #builderApp[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .ncm-luggage-tag-page .lt-empty-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ncm-luggage-tag-page .lt-empty-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
  }

  .ncm-luggage-tag-page .lt-empty-actions .btn {
    width: 100%;
    min-width: 0;
  }
}




/* =========================================================
   Luggage Tag Empty State Preview Cards
========================================================= */

.ncm-luggage-tag-page .lt-empty-preview-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 22px auto 18px;
}

.ncm-luggage-tag-page .lt-empty-preview-card {
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.10);
}

.ncm-luggage-tag-page .lt-empty-preview-card img {
  display: block;
  width: 100%;
  max-width: 118px;
  aspect-ratio: 2 / 3.25;
  object-fit: cover;
  margin: 0 auto 9px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.ncm-luggage-tag-page .lt-empty-preview-card span {
  display: block;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 760px) {
  .ncm-luggage-tag-page .lt-empty-preview-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }
}

@media (max-width: 430px) {
  .ncm-luggage-tag-page .lt-empty-preview-row {
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-empty-preview-card img {
    max-width: 150px;
  }
}
.ncm-luggage-tag-page .lt-preview-disclaimer {
  max-width: 760px;
  margin: 12px auto 18px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}

/* =========================================================
   Luggage Tag Cost Section
========================================================= */

.ncm-luggage-tag-page .lt-cost-section {
  margin: 28px 0;
}

.ncm-luggage-tag-page .lt-cost-section .lt-wrap {
  max-width: 1120px;
}

.ncm-luggage-tag-page .lt-cost-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(251, 191, 36, 0.34);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  color: #0f172a;
}

.ncm-luggage-tag-page .lt-cost-card .lt-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #ffffff;
  background: linear-gradient(135deg, #92400e, #f59e0b);
  border: 1px solid rgba(146, 64, 14, 0.25);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(146, 64, 14, 0.18);
}

.ncm-luggage-tag-page .lt-cost-card h2 {
  max-width: 980px;
  margin: 12px 0 10px;
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ncm-luggage-tag-page .lt-cost-card > p {
  max-width: 980px;
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.ncm-luggage-tag-page .lt-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin: 22px 0;
}

.ncm-luggage-tag-page .lt-cost-grid div {
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.ncm-luggage-tag-page .lt-cost-grid div > strong {
  display: block;
  margin-bottom: 7px;
  color: #0f172a;
  font-weight: 950;
  line-height: 1.2;
}

.ncm-luggage-tag-page .lt-cost-grid div > span {
  display: block;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.ncm-luggage-tag-page .lt-cost-grid div > span strong {
  display: inline;
  margin: 0;
  color: #0f172a;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-cost-note {
  max-width: 980px;
  padding-top: 2px;
  font-size: 0.94rem;
}

/* =========================================================
   Luggage Tag Cost Proof / Real Example
========================================================= */

.ncm-luggage-tag-page .lt-cost-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1.18fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.ncm-luggage-tag-page .lt-cost-proof-media img {
  width: 100%;
  max-width: 420px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.ncm-luggage-tag-page .lt-cost-proof-copy h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.ncm-luggage-tag-page .lt-cost-proof-copy p {
  max-width: 560px;
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.65;
}

.ncm-luggage-tag-page .lt-cost-proof-note {
  margin-bottom: 0 !important;
  font-size: 0.94rem;
  color: #64748b !important;
}

/* =========================================================
   Luggage Tag Cost Responsive
========================================================= */

@media (max-width: 860px) {
  .ncm-luggage-tag-page .lt-cost-proof {
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-cost-proof-copy p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .ncm-luggage-tag-page .lt-cost-grid {
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-cost-card {
    border-radius: 24px;
  }

  .ncm-luggage-tag-page .lt-cost-proof {
    padding: 14px;
  }
}


/* =========================================================
   Luggage Tag Builder - YouTube Demo Section
========================================================= */

.ncm-luggage-tag-page .lt-demo-section {
  margin: clamp(32px, 5vw, 64px) 0;
}

.ncm-luggage-tag-page .lt-demo-section .lt-wrap {
  max-width: 1120px;
}

.ncm-luggage-tag-page .lt-demo-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.13);
  color: #0f172a;
  overflow: visible;
}

.ncm-luggage-tag-page .lt-demo-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.ncm-luggage-tag-page .lt-demo-copy .lt-kicker {
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18);
}

.ncm-luggage-tag-page .lt-demo-copy h2 {
  margin: 12px 0 12px;
  color: #0f172a;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.ncm-luggage-tag-page .lt-demo-copy p {
  max-width: 58ch;
  margin: 0 0 18px;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
}

.ncm-luggage-tag-page .lt-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.ncm-luggage-tag-page .lt-demo-actions .btn-outline-secondary {
  color: #312e81;
  background: #ffffff;
  border: 1px solid rgba(124, 58, 237, 0.24);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.ncm-luggage-tag-page .lt-demo-actions .btn-outline-secondary:hover,
.ncm-luggage-tag-page .lt-demo-actions .btn-outline-secondary:focus-visible {
  color: #0f172a;
  background: #f8fafc;
  border-color: rgba(124, 58, 237, 0.42);
}

.ncm-luggage-tag-page .lt-demo-video-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.24);
}

.ncm-luggage-tag-page .lt-demo-video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0f172a;
}

@media (max-width: 900px) {
  .ncm-luggage-tag-page .lt-demo-card {
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-demo-video-wrap {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .ncm-luggage-tag-page .lt-demo-card {
    padding: 18px;
    border-radius: 24px;
  }

  .ncm-luggage-tag-page .lt-demo-copy h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .ncm-luggage-tag-page .lt-demo-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ncm-luggage-tag-page .lt-demo-actions .btn {
    width: 100%;
  }

  .ncm-luggage-tag-page .lt-demo-video-wrap {
    border-radius: 18px;
  }
}