@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --blue: #1a4a8a;
  --blue-dark: #0d2f5c;
  --blue-mid: #2563b0;
  --blue-light: #e8f0fb;
  --accent: #e84c1e;
  --yellow: #f5c842;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-500: #8a9ab0;
  --gray-700: #3d4f63;
  --text: #1a2535;
  --text-light: #5a6e84;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(26,74,138,0.08);
  --shadow-lg: 0 8px 40px rgba(26,74,138,0.14);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* ── HERO ── */
.hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 90px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(37,99,176,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,76,30,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero-h1, .hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: #c93d14; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,76,30,0.35); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  padding: 24px 20px;
  text-align: center;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.2s;
  cursor: pointer;
}
.hero-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.hero-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.hero-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-card-price {
  font-size: 12px;
  color: var(--yellow);
  font-weight: 600;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue);
  padding: 16px 24px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-item svg { opacity: 0.7; }

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.65;
}
.section-head { margin-bottom: 48px; }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card-img {
  height: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-card:hover .product-card-img img {
  transform: none;
}
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.product-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}
.product-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.product-card-price {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.product-card-price strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.product-card-btn {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.product-card-btn:hover { background: var(--blue-dark); }

/* ── WHY PREPRINT ── */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  overflow: hidden;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26,74,138,0.15), transparent);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.about-badge span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  font-family: 'Barlow Condensed', sans-serif;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.about-service-tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--blue-dark); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-label { color: var(--yellow); }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.test-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.test-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.test-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.test-author {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--accent);
  padding: 60px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.btn-white {
  background: var(--white);
  color: var(--accent);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  display: inline-block;
  transition: all 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 56px 24px 32px;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-about {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); margin-left: 16px; }

/* ── PRODUCT PAGE ── */
.product-page { padding: 48px 24px 80px; }
.product-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.product-breadcrumb a { color: var(--blue); }
.product-breadcrumb span { margin: 0 8px; }

.prod-img-wrap {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: static;
}

/* Left column stays at top so specs scroll naturally below image */
.product-page-inner > div:first-child {
  align-self: start;
}
.prod-specs {
  margin-top: 24px;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.prod-specs-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 14px;
}
.prod-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.prod-spec { font-size: 13px; color: var(--text-light); }
.prod-spec strong {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 1px;
}

.prod-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.1;
}
.prod-subtitle { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.prod-desc { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; }

.field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Sizing grid for multi-size products */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.size-btn {
  padding: 12px 8px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.size-btn:hover { border-color: var(--blue); }
.size-btn.active { border-color: var(--blue); background: var(--blue); color: var(--white); }
.size-btn .size-dims { font-size: 14px; font-weight: 700; display: block; }
.size-btn .size-price { font-size: 12px; opacity: 0.75; display: block; margin-top: 2px; }

/* Sides selector */
.sides-group { display: flex; gap: 10px; margin-bottom: 24px; }
.side-btn {
  flex: 1; padding: 12px; border: 2px solid var(--gray-200); border-radius: 8px;
  background: var(--white); cursor: pointer; font-size: 15px; font-weight: 700;
  color: var(--text); transition: all 0.15s; text-align: center;
}
.side-btn:hover { border-color: var(--blue-mid); }
.side-btn.active { border-color: var(--blue); background: var(--blue); color: var(--white); }
.side-btn .side-from { display: block; font-size: 11px; font-weight: 400; margin-top: 2px; opacity: 0.65; }

/* Pricing table */
.pricing-wrap { margin-bottom: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; border: 1px solid var(--gray-200); }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 400px; }
.pricing-table thead tr { background: var(--blue); color: var(--white); }
.pricing-table thead th { padding: 8px 10px; text-align: center; font-weight: 700; font-size: 11px; white-space: nowrap; }
.pricing-table thead th:first-child { text-align: left; padding-left: 12px; }
.pricing-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: var(--off-white); }
.pricing-table tbody td { padding: 8px 10px; text-align: center; color: var(--text-light); }
.pricing-table tbody td:first-child { text-align: left; font-weight: 700; color: var(--text); padding-left: 12px; }
.hl-h { background: var(--yellow) !important; color: var(--text) !important; }
.hl-c { background: #fffbf0 !important; font-weight: 700 !important; color: var(--text) !important; }

/* Qty */
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.qty-input {
  width: 90px; padding: 10px 12px; font-size: 20px; font-weight: 800;
  border: 2px solid var(--gray-200); border-radius: 8px; text-align: center;
  outline: none; transition: border-color 0.15s; font-family: inherit;
}
.qty-input:focus { border-color: var(--blue); }
.qty-note { font-size: 13px; color: var(--text-light); }

/* Notes */
.info-note {
  font-size: 12px; background: #fff8e1;
  border-left: 3px solid var(--yellow); padding: 8px 12px;
  border-radius: 0 6px 6px 0; margin-bottom: 10px; color: #7a6500;
}
.info-note-gray {
  font-size: 12px; background: var(--gray-100);
  border-left: 3px solid var(--gray-200); padding: 8px 12px;
  border-radius: 0 6px 6px 0; margin-bottom: 16px; color: var(--text-light);
}

/* Price display */
.price-display {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px;
  padding: 16px 20px; margin-bottom: 16px; box-shadow: var(--shadow);
}
.price-breakdown { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.price-total { font-size: 34px; font-weight: 900; color: var(--text); line-height: 1; font-family: 'Barlow Condensed', sans-serif; }
.price-per { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* Stands */
.addon-section { border: 1px solid var(--gray-200); border-radius: 10px; padding: 16px; margin-bottom: 16px; background: var(--white); }
.addon-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.addon-title { font-size: 14px; font-weight: 700; }
.addon-badge { font-size: 11px; background: var(--gray-100); color: var(--text-light); padding: 2px 8px; border-radius: 20px; font-weight: 500; }
.stand-options { display: flex; gap: 8px; }
.stand-btn {
  flex: 1; padding: 10px 6px; border: 2px solid var(--gray-200); border-radius: 8px;
  background: var(--white); cursor: pointer; transition: all 0.15s; text-align: center;
}
.stand-btn:hover { border-color: var(--blue-mid); }
.stand-btn.active { border-color: var(--blue); background: var(--blue); color: var(--white); }
.stand-btn .sn { font-size: 13px; font-weight: 700; display: block; margin-bottom: 2px; }
.stand-btn .sd { font-size: 10px; opacity: 0.65; display: block; }
.stand-btn .sp { font-size: 12px; font-weight: 600; display: block; margin-top: 4px; }
.stand-sub { margin-top: 10px; font-size: 13px; color: var(--text-light); padding-top: 10px; border-top: 1px solid var(--gray-200); }
.stand-sub span { font-weight: 700; color: var(--text); }

/* Artwork */
.artwork-section { border: 1px solid var(--gray-200); border-radius: 10px; padding: 16px; margin-bottom: 16px; background: var(--white); }
.artwork-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.artwork-title { font-size: 14px; font-weight: 700; }
.artwork-required { font-size: 11px; background: #fff0f0; color: #c0392b; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
.artwork-instructions { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.artwork-instructions strong { color: var(--text); }
.hightail-steps { margin: 0 0 14px; padding: 0; list-style: none; }
.hightail-steps li { font-size: 13px; color: var(--text-light); padding: 3px 0 3px 22px; position: relative; }
.hightail-steps li::before { content: attr(data-n); position: absolute; left: 0; font-weight: 700; color: var(--text); }
.hightail-btn {
  display: inline-block; background: #6B3FA0; color: var(--white) !important;
  padding: 10px 18px; border-radius: 6px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background 0.15s;
}
.hightail-btn:hover { background: #5a348a; }
.artwork-file-reqs { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-200); font-size: 12px; color: var(--gray-500); }
.artwork-file-reqs strong { color: var(--text-light); }

/* ATC */
.atc-btn {
  width: 100%; padding: 16px; background: var(--blue); color: var(--white);
  border: none; border-radius: 8px; font-size: 16px; font-weight: 800;
  cursor: pointer; transition: all 0.15s; letter-spacing: 0.01em;
  font-family: inherit;
}
.atc-btn:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,74,138,0.3); }
.atc-btn:disabled { background: var(--gray-500); cursor: not-allowed; transform: none; box-shadow: none; }
.tax-note { font-size: 12px; color: var(--gray-500); text-align: center; margin-top: 8px; }

/* ── CHECKOUT PAGE ── */
.checkout-page { padding: 48px 24px 80px; }
.checkout-inner { max-width: 900px; margin: 0 auto; }
.checkout-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 900; margin-bottom: 32px;
}
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.checkout-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.checkout-form h3 { font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.15s; color: var(--text);
}
.form-group input:focus, .form-group select:focus { border-color: var(--blue); }
.checkout-summary { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
.checkout-summary h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.summary-line:last-of-type { border-bottom: none; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; font-size: 18px; font-weight: 900; border-top: 2px solid var(--gray-200); margin-top: 8px; }
.pay-btn {
  width: 100%; padding: 16px; background: var(--accent); color: var(--white);
  border: none; border-radius: 8px; font-size: 16px; font-weight: 800;
  cursor: pointer; transition: all 0.15s; font-family: inherit; margin-top: 20px;
}
.pay-btn:hover { background: #c93d14; }
#card-element { padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; margin-bottom: 16px; }
#card-errors { color: #c0392b; font-size: 13px; margin-bottom: 12px; }

/* ── SUCCESS PAGE ── */
.success-page { padding: 80px 24px; text-align: center; }
.success-icon { font-size: 72px; margin-bottom: 24px; }
.success-page h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; margin-bottom: 12px; }
.success-page p { font-size: 16px; color: var(--text-light); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-page-inner { grid-template-columns: 1fr; gap: 32px; }
  .prod-img-wrap { position: static; height: 300px; }
  .checkout-grid { grid-template-columns: 1fr; }
  /* On tablet/mobile, show right column first (product info) before image/specs */
  .product-page-inner { display: flex; flex-direction: column; }
  .product-page-inner > div:first-child { order: 2; }
  .product-page-inner > div:last-child { order: 1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 60px 20px 60px; }
  .section { padding: 56px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { gap: 20px; }
  .hero-stats { grid-template-columns: 1fr; }

  /* ── PRODUCT PAGE MOBILE ── */
  .product-page { padding: 24px 16px 100px; }
  .product-page-inner { gap: 24px; }
  .prod-img-wrap { height: 240px; border-radius: 12px; }
  .prod-title { font-size: 26px; }
  .prod-subtitle { font-size: 12px; }
  .prod-desc { font-size: 13px; margin-bottom: 20px; }
  .prod-specs-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prod-spec { font-size: 12px; }

  /* Size buttons — 2 per row on mobile */
  .size-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .size-btn { padding: 10px 8px; }
  .size-dims { font-size: 14px; }
  .size-price { font-size: 11px; }

  /* Stock/sides buttons — stack to 1 per row */
  .sides-group { gap: 8px; }
  .side-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
  }
  .side-from { font-size: 11px; }

  /* Qty row */
  .qty-row { gap: 10px; }
  .qty-input { width: 80px; font-size: 16px; }
  .qty-note { font-size: 12px; }

  /* Price display */
  .price-display { padding: 14px 16px; margin-bottom: 12px; }
  .price-total { font-size: 32px; }
  .price-breakdown { font-size: 12px; }
  .price-per { font-size: 12px; }

  /* ATC button */
  .atc-btn { font-size: 16px; padding: 16px 20px; }

  /* Spec download */
  .tax-note { font-size: 11px; }

  /* Artwork section */
  .artwork-section { padding: 14px; }
  .hightail-steps li { font-size: 12px; }
  .hightail-btn { font-size: 13px; padding: 12px 16px; }
  .artwork-file-reqs { font-size: 10px; }

  /* Sticky ATC */
  .sticky-atc { padding: 10px 16px; }
  .sticky-atc-price { font-size: 20px; }
  .sticky-atc-btn { padding: 12px 18px; font-size: 14px; }

  /* Page count buttons for booklets */
  .page-count-grid { grid-template-columns: repeat(4, 1fr) !important; }

  /* Info note */
  .info-note-gray { font-size: 12px; }
}

@media (max-width: 400px) {
  /* Very small phones */
  .product-page { padding: 16px 12px 100px; }
  .size-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .side-btn { font-size: 12px; }
  .prod-title { font-size: 22px; }
  .price-total { font-size: 28px; }
}

/* ── CUSTOMER MARQUEE ── */
.marquee-section {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.marquee-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.marquee-track-wrap::before,
.marquee-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 100px;
  flex-shrink: 0;
  border-right: 1px solid var(--gray-200);
  padding: 16px;
}
.marquee-item:last-child {
  border-right: none;
}
.marquee-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.2s ease;
}
.marquee-track:hover .marquee-item img {
  filter: grayscale(100%) opacity(0.8);
}
.marquee-item.text-fallback {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.3;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-play-state: paused; }
}

/* ── RESPONSIVE NAV FIX ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--gray-100); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }
  .nav-links .nav-cta {
    margin: 12px 16px;
    text-align: center;
    border-radius: 8px;
    display: block;
    padding: 12px;
  }
  .nav { position: sticky; }
}


/* ── CART NAV ICON ── */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.nav-cart:hover { background: var(--gray-100); color: var(--blue); }
.nav-cart svg { display: block; }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: 'Barlow', sans-serif;
}

/* ── NAV DROPDOWN ── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-item > a .chevron {
  width: 10px; height: 10px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-item:hover > a .chevron,
.nav-item:focus-within > a .chevron { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(26,36,53,0.13);
  min-width: 200px;
  padding: 8px;
  padding-top: 16px; /* bridges gap between trigger and menu */
  z-index: 200;
  white-space: nowrap;
  /* invisible top padding so mouse doesn't fall into gap */
  margin-top: 0;
}
/* Pseudo-element bridge fills the gap so hover doesn't break */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  display: none;
}
.nav-item:hover::after { display: block; }
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.nav-dropdown .dropdown-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 4px 8px;
}
.nav-dropdown .dropdown-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  padding: 6px 12px 2px;
}
@media (max-width: 860px) {
  .nav-dropdown { display: none !important; }
  .nav-dropdown.open { display: block !important; }
  .nav-item > a { justify-content: space-between; padding-right: 16px; }
  .nav-links .nav-item { border-bottom: 1px solid var(--gray-100); }
  .nav-dropdown a { padding-left: 36px; font-size: 14px; background: var(--off-white); }
  .nav-dropdown .dropdown-label { padding-left: 36px; }
}

/* ── STICKY ADD TO CART BAR ── */
.sticky-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--blue);
  box-shadow: 0 -4px 24px rgba(26,36,53,0.13);
  padding: 12px 24px;
  z-index: 300;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-atc.visible { display: flex; }
.sticky-atc-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sticky-atc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.sticky-atc-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.sticky-atc-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
.sticky-atc-btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.1s;
}
.sticky-atc-btn:hover { background: #c93d15; transform: translateY(-1px); }
.sticky-atc-btn:active { transform: translateY(0); }
@media (max-width: 540px) {
  .sticky-atc { padding: 10px 16px; }
  .sticky-atc-price { font-size: 22px; }
  .sticky-atc-btn { padding: 12px 20px; font-size: 14px; }
  .sticky-atc-desc { display: none; }
}
