/* Packlabb v2. Print-on-demand packaging, built in Melbourne. */

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

:root {
  --bg: #F5F4EF;
  --surface: #FFFFFF;
  --surface-2: #EFEEE8;
  --ink: #0F0F0E;
  --ink-2: #2B2B28;
  --ink-3: #6B6B65;
  --ink-4: #9A9A93;
  --line: #DDDCD4;
  --line-2: #E9E8E2;
  --brand: #1D4ED8;
  --brand-ink: #1E40AF;
  --brand-soft: #EFF5FF;
  --brand-soft-line: #C7DBFF;
  --accent: #FF4E1C;
  --ok: #0B8C5A;
  --shadow-sm: 0 1px 2px rgba(15,15,14,.04);
  --shadow: 0 4px 16px rgba(15,15,14,.06);
  --shadow-lg: 0 20px 60px rgba(15,15,14,.10);
  --radius: 10px;
  --radius-lg: 14px;
  --max: 1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 16px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { padding: 88px 0; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; display: inline-block; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(40px, 5.6vw, 76px); }
h2 { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.12; }
h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.2; }
h4 { font-size: 16px; font-weight: 700; }
p { color: var(--ink-2); }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); line-height: 1.6; }

/* TOP BAR */
.topbar { background: var(--ink); color: #fff; text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: 0.2px; padding: 9px 20px; }
.topbar strong { color: #fff; }
.topbar span { color: #C9C8C0; }

/* NAV */
.nav { background: rgba(245,244,239,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-size: 22px; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); }
.logo b { color: var(--brand); font-weight: 900; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a { display: block; padding: 10px 14px; font-size: 14px; font-weight: 500; color: var(--ink-2); border-radius: 8px; transition: background .15s, color .15s; }
.nav-menu a:hover, .nav-menu a.on { color: var(--ink); background: var(--surface-2); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call { font-size: 13px; font-weight: 600; color: var(--ink-3); padding: 8px 12px; border-radius: 8px; }
.nav-call:hover { color: var(--ink); }
.nav-cta { background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 700; transition: opacity .15s, transform .12s; display: inline-block; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: 10px; transition: opacity .15s, transform .12s, border-color .15s, background .15s; cursor: pointer; text-align: center; white-space: nowrap; }
.btn-lg { padding: 16px 26px; font-size: 15.5px; }
.btn-md { padding: 12px 20px; font-size: 14.5px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-white { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-white:hover { border-color: var(--ink-3); }
.btn-arrow::after { content: '→'; display: inline-block; transition: transform .15s; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

/* MARQUEE TRUST STRIP */
.trust-strip { background: var(--ink); color: #C9C8C0; padding: 14px 0; overflow: hidden; border-bottom: 1px solid #1A1A18; }
.trust-track { display: flex; align-items: center; gap: 44px; font-size: 13px; font-weight: 500; white-space: nowrap; animation: scroll 40s linear infinite; }
.trust-track span { display: inline-flex; align-items: center; gap: 8px; }
.trust-track b { color: #fff; font-weight: 700; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO */
.hero { padding: 72px 0 88px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 99px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(0.85); } }
.hero h1 { margin-bottom: 22px; }
.hero h1 b { background: linear-gradient(180deg, transparent 62%, #FFE25A 62%); padding: 0 4px; color: var(--ink); font-weight: 900; }
.hero h1 u { text-decoration: none; color: var(--brand); }
.hero-sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); line-height: 1.6; margin-bottom: 30px; max-width: 560px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--brand); }
.hero-visual { position: relative; }
.hero-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip { position: absolute; background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-chip-1 { top: 24px; left: -24px; }
.hero-chip-2 { bottom: 24px; right: -24px; }
.hero-chip-label { font-size: 10.5px; font-weight: 700; color: var(--ink-3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.hero-chip-value { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.hero-chip-value b { color: var(--brand); font-weight: 800; }

/* STATS STRIP */
.stats { background: var(--ink); color: #fff; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 0 24px; border-right: 1px solid #2A2A27; text-align: left; }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(36px, 4vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.stat-num b { color: var(--brand); font-weight: 900; }
.stat-label { font-size: 13px; color: #C9C8C0; line-height: 1.5; max-width: 200px; }

/* PAS BLOCK */
.pas { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pas-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: stretch; }
.pas-card { background: var(--surface-2); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line-2); position: relative; }
.pas-card.good { background: var(--brand-soft); border-color: var(--brand-soft-line); }
.pas-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.pas-card.good .pas-tag { color: var(--brand-ink); }
.pas-card h3 { margin-bottom: 14px; }
.pas-card ul { list-style: none; margin-top: 14px; }
.pas-card li { padding: 8px 0; font-size: 14.5px; color: var(--ink-2); display: flex; gap: 10px; border-bottom: 1px solid var(--line-2); }
.pas-card.good li { border-bottom-color: var(--brand-soft-line); }
.pas-card li:last-child { border-bottom: none; }
.pas-card li::before { content: '✕'; color: var(--ink-4); font-weight: 700; flex-shrink: 0; }
.pas-card.good li::before { content: '✓'; color: var(--ok); }

/* PRODUCTS */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--ink-3); }
.prod-img { aspect-ratio: 4/3; position: relative; background: var(--surface-2); overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-tag { position: absolute; top: 14px; left: 14px; background: var(--ink); color: #fff; padding: 5px 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
.prod-tag.new { background: var(--brand); }
.prod-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { margin-bottom: 8px; }
.prod-body p { font-size: 14.5px; color: var(--ink-3); margin-bottom: 16px; flex: 1; }
.prod-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line-2); }
.prod-price .from { font-size: 12px; color: var(--ink-3); }
.prod-price .amt { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; }
.prod-price .unit { font-size: 12.5px; color: var(--ink-3); }
.prod-specs { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.prod-specs li { font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.prod-specs li::before { content: ''; width: 14px; height: 14px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231D4ED8'><path d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/></svg>") center/contain no-repeat; flex-shrink: 0; }

/* COMING SOON */
.soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.soon-card { background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius); padding: 24px 20px; text-align: center; opacity: 0.86; }
.soon-card .icon { font-size: 28px; margin-bottom: 10px; }
.soon-card h4 { font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.soon-card p { font-size: 12.5px; color: var(--ink-3); line-height: 1.5; }

/* HOW IT WORKS */
.how { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; background: var(--surface-2); border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; }
.how-step { padding: 32px 28px; border-right: 1px solid var(--line); position: relative; }
.how-step:last-child { border-right: none; }
.how-num { font-size: 13px; font-weight: 800; color: var(--brand); margin-bottom: 12px; letter-spacing: 1px; }
.how-step h4 { font-size: 17px; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }

/* COMPARE TABLE */
.compare { margin-top: 48px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line-2); font-size: 14.5px; vertical-align: middle; }
.compare thead th { background: var(--surface-2); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-3); }
.compare thead th.c-us { background: var(--brand-soft); color: var(--brand-ink); }
.compare tbody td.c-label { font-weight: 600; color: var(--ink-2); width: 32%; background: var(--surface-2); }
.compare tbody td.c-them { color: var(--ink-3); }
.compare tbody td.c-us { background: var(--brand-soft); color: var(--ink); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td .tick { color: var(--ok); font-weight: 700; }
.compare td .cross { color: var(--ink-4); }

/* SAMPLE BAR */
.sample-bar { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 40px 44px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; margin-top: 64px; }
.sample-bar h2 { color: #fff; margin-bottom: 10px; }
.sample-bar p { color: #C9C8C0; max-width: 480px; font-size: 15.5px; }
.sample-bar .price { font-size: 48px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 4px; }
.sample-bar .price b { color: var(--brand); font-weight: 900; }
.sample-bar small { display: block; color: #9A9A93; font-size: 12px; margin-bottom: 14px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 17px; font-weight: 600; color: var(--ink); cursor: pointer; user-select: none; gap: 20px; }
.faq-q:hover { color: var(--brand); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--ink-2); transition: transform .2s, background .2s, color .2s; }
.faq-item.open .faq-icon { background: var(--ink); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; font-size: 15px; color: var(--ink-2); line-height: 1.7; max-width: 720px; }
.faq-item.open .faq-a { display: block; }

/* CTA SECTION */
.cta { background: var(--ink); color: #fff; padding: 96px 0; text-align: center; }
.cta h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; }
.cta p { color: #C9C8C0; max-width: 520px; margin: 0 auto 32px; font-size: 17px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #0A0A09; color: #9A9A93; padding: 56px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #1F1F1C; }
.footer-brand .logo { color: #fff; font-size: 22px; }
.footer-brand p { color: #9A9A93; font-size: 14px; margin-top: 12px; max-width: 300px; line-height: 1.6; }
.footer-col h5 { font-size: 12px; color: #fff; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: #9A9A93; }
.footer-col a:hover { color: #fff; }
.footer-bot { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; font-size: 12.5px; flex-wrap: wrap; }
.footer-bot a:hover { color: #fff; }

/* STICKY MOBILE CTA */
.sticky-cta { display: none; position: fixed; bottom: 16px; left: 16px; right: 16px; background: var(--ink); color: #fff; padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 700; z-index: 90; box-shadow: 0 12px 32px rgba(0,0,0,0.3); justify-content: space-between; align-items: center; gap: 12px; }
.sticky-cta b { color: var(--brand); }
.sticky-cta .go { background: #fff; color: var(--ink); padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 800; }

/* PRODUCT PAGE */
.product-hero { padding: 48px 0 72px; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-media { position: sticky; top: 88px; }
.product-media-main { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-2); }
.product-media-main img { width: 100%; height: 100%; object-fit: contain; }
.product-media-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(64px, 90px)); gap: 10px; margin-top: 12px; justify-content: start; }
.product-media-thumbs div { aspect-ratio: 1; border-radius: 8px; overflow: hidden; border: 1.5px solid var(--line); cursor: pointer; background: var(--surface-2); }
.product-media-thumbs div.on { border-color: var(--ink); }
.product-media-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.breadcrumb { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--ink); }
.product-title { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 12px; }
.product-intro { font-size: 16.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 28px; }
.product-badges { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.product-badges span { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: 99px; font-size: 12px; font-weight: 600; color: var(--ink-2); }

.field { margin-bottom: 22px; }
.field-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { padding: 12px 18px; background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all .15s; text-align: center; }
.opt:hover { border-color: var(--ink-3); }
.opt.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.opt small { display: block; font-size: 11px; font-weight: 400; color: var(--ink-4); margin-top: 2px; }
.opt.on small { color: #C9C8C0; }

.qty-row { display: flex; flex-wrap: wrap; gap: 6px; }
.qbtn { padding: 10px 14px; background: var(--surface); border: 1.5px solid var(--line); border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all .15s; min-width: 64px; }
.qbtn:hover { border-color: var(--ink-3); }
.qbtn.on { border-color: var(--ink); background: var(--ink); color: #fff; }

.stepper { display: inline-flex; align-items: center; background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.stepper button { width: 48px; height: 48px; font-size: 22px; font-weight: 700; color: var(--ink); background: transparent; transition: background .15s; }
.stepper button:hover { background: var(--surface-2); }
.stepper button:disabled { color: var(--ink-4); cursor: not-allowed; }
.stepper button:disabled:hover { background: transparent; }
.stepper-val { min-width: 96px; padding: 0 14px; text-align: center; font-size: 15px; font-weight: 700; color: var(--ink); border-left: 1.5px solid var(--line); border-right: 1.5px solid var(--line); height: 48px; display: flex; align-items: center; justify-content: center; }
.stepper-val small { font-size: 11px; font-weight: 500; color: var(--ink-3); margin-left: 4px; }
.stepper-meta { font-size: 12.5px; color: var(--ink-3); margin-top: 8px; }
.stepper-meta b { color: var(--ink); }

.price-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px; margin: 24px 0; }
.price-box-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.price-big { font-size: 40px; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); }
.price-unit { font-size: 14px; color: var(--ink-3); }
.price-meta { font-size: 13px; color: var(--ink-3); line-height: 1.5; }
.price-meta b { color: var(--ink); }

.order-btn { width: 100%; padding: 18px; background: var(--ink); color: #fff; font-size: 16px; font-weight: 800; border-radius: 10px; margin-bottom: 14px; transition: opacity .15s, transform .12s; cursor: pointer; }
.order-btn:hover { opacity: .9; transform: translateY(-1px); }
.order-assurance { display: flex; justify-content: center; gap: 16px; font-size: 12px; color: var(--ink-3); flex-wrap: wrap; }
.order-assurance span { display: flex; align-items: center; gap: 5px; }

.art-box { background: var(--surface); border: 2px dashed var(--line); border-radius: var(--radius); padding: 20px; text-align: center; cursor: pointer; margin-bottom: 16px; transition: border-color .15s, background .15s; }
.art-box:hover { border-color: var(--ink); background: var(--surface-2); }
.art-box .i { font-size: 22px; margin-bottom: 6px; }
.art-box p { font-size: 13.5px; color: var(--ink-2); margin-bottom: 2px; font-weight: 600; }
.art-box small { font-size: 11.5px; color: var(--ink-3); }

.note-box { background: var(--brand-soft); border: 1px solid var(--brand-soft-line); border-radius: 10px; padding: 14px 16px; font-size: 13.5px; color: var(--brand-ink); display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }

.tabs-nav { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 36px; gap: 4px; }
.tab-btn { padding: 14px 22px; font-size: 14.5px; font-weight: 600; color: var(--ink-3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn:hover { color: var(--ink-2); }
.tab-btn.on { color: var(--ink); border-bottom-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.on { display: block; }

.price-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; background: var(--surface); }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--line-2); font-size: 14px; }
.price-table thead th { background: var(--surface-2); font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-3); }
.price-table td.val { font-weight: 700; color: var(--ink); }
.price-table tr.best td { background: var(--brand-soft); }
.price-table tr.best td:first-child { border-left: 3px solid var(--brand); font-weight: 700; color: var(--brand-ink); }
.price-table tr.contact td { background: var(--surface-2); color: var(--ink-3); font-style: italic; font-size: 13px; }
.price-table tr:last-child td { border-bottom: none; }
.pill { display: inline-block; background: var(--brand); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 4px; letter-spacing: 0.5px; text-transform: uppercase; margin-left: 6px; vertical-align: 1px; }

/* MODAL */
.modal { display: none; position: fixed; inset: 0; background: rgba(15,15,14,0.7); z-index: 1000; align-items: flex-start; justify-content: center; padding: 24px 16px; overflow-y: auto; }
.modal.open { display: flex; }
.modal-box { background: #fff; border-radius: 16px; max-width: 520px; width: 100%; padding: 32px; margin-top: 40px; margin-bottom: 40px; box-shadow: var(--shadow-lg); }
.modal-head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 20px; gap: 16px; }
.modal-head h3 { margin-bottom: 4px; }
.modal-head p { font-size: 13.5px; color: var(--ink-3); }
.modal-close { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ink-3); }
.modal-close:hover { background: var(--surface-2); color: var(--ink); }
.modal-spec { background: var(--brand-soft); border: 1px solid var(--brand-soft-line); border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; font-size: 14px; color: var(--ink); }
.modal-form .f { margin-bottom: 14px; }
.modal-form label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-3); margin-bottom: 6px; }
.modal-form input, .modal-form textarea, .modal-form select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 15px; color: var(--ink); background: #fff; transition: border-color .15s; }
.modal-form input:focus, .modal-form textarea:focus { outline: none; border-color: var(--ink); }
.modal-form .note { background: var(--surface-2); border-radius: 8px; padding: 12px 14px; font-size: 12.5px; color: var(--ink-3); line-height: 1.6; margin-bottom: 18px; }
.modal-form .note b { color: var(--ink); }
.modal-form button[type=submit] { width: 100%; background: var(--ink); color: #fff; padding: 15px; border-radius: 10px; font-size: 15px; font-weight: 800; transition: opacity .15s; }
.modal-form button[type=submit]:hover { opacity: .88; }
.modal-ok { display: none; text-align: center; padding: 28px 12px; }
.modal-ok.show { display: block; }
.modal-ok .tick { font-size: 52px; color: var(--ok); margin-bottom: 14px; }
.modal-ok h3 { margin-bottom: 10px; }
.modal-ok p { font-size: 14px; color: var(--ink-3); line-height: 1.7; margin-bottom: 20px; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; }
.contact-info { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.contact-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.contact-row:first-of-type { padding-top: 0; }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .icon { width: 38px; height: 38px; background: var(--brand-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand); font-size: 18px; font-weight: 800; }
.contact-row h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 15.5px; color: var(--ink); font-weight: 600; }
.contact-row a:hover { color: var(--brand); }

/* COMPACT ROI CALCULATOR (embedded on product pages) */
.roi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; max-width: 580px; }
.roi-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.roi h3 { font-size: 22px; margin-bottom: 4px; letter-spacing: -0.02em; }
.roi-sub { font-size: 13px; color: var(--ink-3); margin-bottom: 22px; }

.roi-tier { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line-2); }
.roi-tier-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.roi-tier-row > div { flex: 1; min-width: 120px; }
.roi-tier-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.roi-seg { display: flex; gap: 4px; }
.roi-seg button { flex: 1; padding: 8px 6px; border: 1.5px solid var(--line); border-radius: 7px; background: #fff; font-size: 12.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all .15s; }
.roi-seg button.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.roi-seg button:hover:not(.on) { border-color: var(--ink-3); }

.roi-slider { margin-bottom: 16px; }
.roi-slider-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.roi-slider-head label { font-size: 14px; font-weight: 600; color: var(--ink); }
.roi-slider-head .val { font-size: 14px; font-weight: 700; color: var(--brand); }
.roi-range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--line); border-radius: 99px; outline: none; cursor: pointer; }
.roi-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: var(--brand); border: 2px solid #fff; border-radius: 50%; cursor: pointer; box-shadow: 0 2px 5px rgba(29,78,216,.3); transition: transform .12s; }
.roi-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-range::-webkit-slider-thumb:active { transform: scale(1.2); }
.roi-range::-moz-range-thumb { width: 18px; height: 18px; background: var(--brand); border: 2px solid #fff; border-radius: 50%; cursor: pointer; box-shadow: 0 2px 5px rgba(29,78,216,.3); }
.roi-range::-moz-range-track { background: var(--line); height: 4px; border-radius: 99px; }
.roi-range::-moz-range-progress { background: var(--brand); height: 4px; border-radius: 99px; }
.roi-range::-webkit-slider-runnable-track { background: var(--line); height: 4px; border-radius: 99px; }

.roi-result { background: var(--brand-soft); border: 1px solid var(--brand-soft-line); border-radius: 12px; padding: 18px 20px; margin-top: 18px; }
.roi-result-main { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 12px; }
.roi-result-main > div { flex: 1; min-width: 130px; }
.roi-result-num { font-size: 26px; font-weight: 900; letter-spacing: -0.025em; line-height: 1; color: var(--ink); }
.roi-result-num.brand { color: var(--brand); }
.roi-result-label { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.roi-result-foot { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--brand-soft-line); font-size: 13px; color: var(--ink-2); flex-wrap: wrap; gap: 8px; }
.roi-result-foot b { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) {
  .nav-menu, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.mobile-open { display: flex; position: absolute; top: 68px; left: 0; right: 0; background: rgba(245,244,239,0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 16px; gap: 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-menu.mobile-open a { padding: 14px; border-radius: 8px; font-size: 15px; }
  .hero-grid, .product-hero-grid, .pas-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-media { position: static; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .soon-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .stat { border-right: none; padding: 12px 24px; }
  .stat:nth-child(odd) { border-right: 1px solid #2A2A27; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-step:nth-child(2n) { border-right: none; }
  .how-step:nth-child(1), .how-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sample-bar { grid-template-columns: 1fr; text-align: left; }
  .sticky-cta { display: flex; }
  section { padding: 60px 0; }
}

/* ============ MOBILE (≤640px) — comprehensive pass ============ */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-inner { padding: 0 18px; height: 60px; }

  /* Announcement bar — shortened on mobile via JS-free CSS hiding */
  .topbar { padding: 8px 16px; font-size: 11.5px; line-height: 1.4; }
  .topbar .mobile-hide { display: none; }

  /* Header — hide the chunky "Order sample" pill on mobile, sticky CTA covers it */
  .nav-cta-mobile-hide { display: none !important; }
  .nav-toggle { width: 40px; height: 40px; }

  /* Homepage hero — smaller, image stays visible */
  .hero { padding: 24px 0 40px; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px) !important; line-height: 1.05; margin-bottom: 14px; word-break: normal; overflow-wrap: break-word; }
  .hero h1 b, .hero h1 u { white-space: nowrap; }
  .hero p { font-size: 15px; }
  .hero-cta-row { gap: 8px; flex-wrap: wrap; }
  .hero-media { aspect-ratio: 4/3; max-height: 320px; border-radius: 14px; overflow: hidden; }
  .hero-media img { width:100%; height:100%; object-fit:cover; }
  .hero-chip { padding: 10px 12px; font-size: 11px; }
  .hero-chip-1 { top: 10px; left: 10px; }
  .hero-chip-2 { bottom: 10px; right: 10px; }
  .hero-chip-value { font-size: 14px; }

  /* Marquee/ticker — tighter on mobile */
  .marquee { font-size: 12px; }
  .marquee-track > div { padding: 12px 18px; }

  /* ============ PRODUCT PAGES ============ */
  .product-hero { padding: 18px 0 32px; }
  .product-hero-grid { gap: 20px !important; }
  .breadcrumb { font-size: 12px; margin-bottom: 8px; }
  .product-title { font-size: 26px !important; margin-bottom: 8px; line-height: 1.15; }
  .product-intro { font-size: 14px; margin-bottom: 14px; line-height: 1.45; }

  /* Trust pill row — keep on one tight horizontal scroll if too many */
  .trust-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .trust-row::-webkit-scrollbar { display: none; }
  .trust-row .pill { flex-shrink: 0; font-size: 11.5px; padding: 5px 10px; }

  /* Main image — capped so title/price peek into view */
  .product-media-main { aspect-ratio: 1/1; max-height: 48vh; }
  .product-media-main img { object-fit: contain; }
  .product-media-thumbs { grid-template-columns: repeat(auto-fit, minmax(48px, 56px)); gap: 6px; margin-top: 8px; }
  .product-media-thumbs > div { border-radius: 6px; }

  /* Field spacing tighter */
  .field { margin-bottom: 16px; }
  .field-label { font-size: 11px; margin-bottom: 8px; letter-spacing: 0.5px; }

  /* Size/type/style buttons — keep inline, allow horizontal scroll if overflow */
  .opt-row { flex-wrap: wrap; gap: 6px; }
  .opt { font-size: 13px; padding: 10px 12px; }
  .opt small { font-size: 10.5px; display: block; margin-top: 1px; opacity: 0.75; }

  /* Quantity buttons — wrap into compact grid, smaller text */
  .qty-row { gap: 6px; }
  .qbtn { font-size: 13px; padding: 9px 10px; min-width: 56px; }

  /* Carton stepper full-width on mobile */
  .stepper { width: 100%; max-width: 220px; }
  .stepper-meta { font-size: 12px; }

  /* Price card — bigger emphasis, less padding */
  .price-card { padding: 18px 18px; margin-top: 8px; }
  .price-big { font-size: 34px !important; }
  .price-unit { font-size: 12px; }
  .price-meta { font-size: 12.5px; margin-top: 4px; }

  /* Note boxes (sample credit, carton info) tighter */
  .note-box { padding: 10px 12px; font-size: 12.5px; gap: 8px; margin-top: 12px; }

  /* Artwork upload tighter */
  .artwork-upload { padding: 22px 14px; }
  .artwork-upload p { font-size: 13px; }
  .artwork-upload small { font-size: 11px; }

  /* Place order button — full width, big tap target */
  .btn-primary-lg { width: 100%; padding: 16px; font-size: 15px; }

  /* Tabs — horizontal scroll, no wrap */
  .tabs-nav { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; gap: 4px; padding-bottom: 2px; scrollbar-width: none; }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tabs-nav .tab { font-size: 13px; padding: 10px 12px; flex-shrink: 0; }

  /* Pricing tables — already scroll, tighten min-width */
  .price-table { overflow-x: auto; }
  .price-table table { min-width: 420px; font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 8px; }

  /* Sticky CTA — refined: smaller, doesn't crush content */
  .sticky-cta { bottom: 12px; left: 12px; right: 12px; padding: 12px 14px; font-size: 13px; border-radius: 10px; }
  .sticky-cta .go { font-size: 12px; padding: 7px 11px; }

  /* Ensure sticky CTA doesn't overlap final content — push footer up */
  body { padding-bottom: 72px; }

  /* Section padding tighter */
  section { padding: 44px 0; }

  /* ============ HOMEPAGE GRIDS ============ */
  .prod-grid, .soon-grid { grid-template-columns: 1fr; gap: 14px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; padding: 16px 24px; border-bottom: 1px solid #2A2A27; }
  .stat:last-child { border-bottom: none; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none !important; border-bottom: 1px solid var(--line); }
  .how-step:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .sample-bar { padding: 24px 18px; font-size: 14px; }
  .sample-bar h3 { font-size: 22px; }
}

/* ============================================================
   CART DRAWER
   ============================================================ */

#cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,15,14,.45);
  z-index: 900;
  backdrop-filter: blur(2px);
}
#cart-overlay.open { display: block; }

#cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 100vw;
  background: var(--surface);
  box-shadow: -4px 0 40px rgba(15,15,14,.12);
  z-index: 901;
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
#cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-head h3 { font-size: 17px; font-weight: 800; }
.cart-close {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--ink-3); padding: 4px 8px;
  border-radius: 6px; transition: background .15s;
}
.cart-close:hover { background: var(--surface-2); color: var(--ink); }

.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
  color: var(--ink-3);
}

.cart-items {
  flex: 1; overflow-y: auto;
  padding: 12px 0;
}

.cart-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-2);
  gap: 12px;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; }
.cart-item-label { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--brand); font-weight: 700; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-item-qty { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: var(--ink-4); padding: 2px 6px;
  border-radius: 4px; transition: all .15s;
}
.cart-item-remove:hover { background: #fee2e2; color: #dc2626; }

.cart-foot {
  padding: 18px 22px 24px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--surface);
}
.cart-foot-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
  font-size: 15px;
}
.cart-foot-row strong { font-size: 20px; font-weight: 900; color: var(--ink); }

.cart-checkout-btn {
  width: 100%;
  background: var(--brand); color: #fff;
  border: none; border-radius: var(--radius);
  padding: 16px; font-size: 16px; font-weight: 800;
  cursor: pointer; font-family: inherit;
  transition: background .2s;
}
.cart-checkout-btn:hover { background: var(--brand-ink); }

/* Cart icon in nav */
.nav-cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  transition: background .15s;
}
.nav-cart:hover { background: var(--line); }
#cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
}

/* ============ Very small phones (≤380px) ============ */
@media (max-width: 380px) {
  .product-title { font-size: 23px !important; }
  .price-big { font-size: 30px !important; }
  .opt { font-size: 12.5px; padding: 9px 10px; }
  .qbtn { font-size: 12.5px; min-width: 48px; }
}
