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

/* ── VARIABLES ── */
:root {
  --bg:            #0d0d10;
  --surface:       #141418;
  --surface-2:     #1c1c22;
  --surface-3:     #222229;
  --text:          #f0eff2;
  --text-2:        #8b8a98;
  --text-3:        #48475a;
  --accent:        #ff78b2;
  --accent-2:      #a07ef9;
  --accent-dark:   #e055a0;
  --accent-bg:     rgba(255,120,178,.08);
  --accent-border: rgba(255,120,178,.24);
  --grad:          linear-gradient(135deg, #ff78b2 0%, #a07ef9 100%);
  --grad-r:        linear-gradient(135deg, #a07ef9 0%, #ff78b2 100%);
  --border:        #1e1e26;
  --border-2:      #2a2a34;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.5);
  --shadow:        0 4px 16px rgba(0,0,0,.45), 0 2px 4px rgba(0,0,0,.3);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.55), 0 4px 12px rgba(0,0,0,.4);
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     18px;
  --font:          'Inter', system-ui, sans-serif;
  --font-brand:    'Orbitron', 'Courier New', monospace;
}

/* ── BASE ── */
html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* clears sticky navbar */
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,16,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-brand {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.navbar-brand span { color: var(--accent); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  transition: color .12s;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-3); }
.breadcrumb-current { color: var(--text); font-weight: 600; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.navbar-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color .2s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width .25s ease;
}

.navbar-links a:hover { color: var(--accent); }
.navbar-links a:hover::after { width: calc(100% - 24px); }

.navbar-links a.navbar-cta::after { display: none; }

.navbar-cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
  background: var(--grad) !important;
  padding: 7px 16px !important;
  border-radius: var(--radius-sm) !important;
  border: 2px solid transparent !important;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease !important;
}

.navbar-cta:hover {
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(255,120,178,.25) !important;
}

/* ── HAMBURGER ── */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-shrink: 0;
}

.navbar-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .2s, opacity .15s;
}

.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.navbar-mobile {
  display: none;
  position: sticky;
  top: 60px;
  z-index: 99;
  background: rgba(13,13,16,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar-mobile.open { display: block; }

.navbar-mobile a {
  display: block;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .12s, color .12s;
}

.navbar-mobile a:hover { background: var(--accent-bg); color: var(--accent); }

.navbar-mobile a:last-child {
  display: block;
  margin: 12px 16px;
  padding: 11px 16px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--radius-sm);
  border-bottom: none;
  text-align: center;
  font-weight: 600;
}

.navbar-mobile a:last-child:hover { opacity: .9; background: var(--grad); color: #fff; }

@media (max-width: 640px) {
  .navbar-links { display: none; }
  .breadcrumb { display: none; }
  .navbar-hamburger { display: flex; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s ease, transform .18s ease, box-shadow .25s ease;
}

.btn-primary:hover {
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,120,178,.28);
}

.btn-ghost {
  display: inline-block;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .2s ease, transform .18s ease, box-shadow .25s ease;
}

.btn-ghost:hover {
  background:
    linear-gradient(#000, #000) padding-box,
    var(--grad) border-box;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160,126,249,.2);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #08080b;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}

.trust-bar-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.trust-svg {
  width: 18px;
  height: 18px;
  display: block;
  /* tint the SVG stroke to match --accent (#ff78b2) */
  filter: invert(62%) sepia(60%) saturate(600%) hue-rotate(295deg) brightness(105%);
}

.trust-icon {
  width: 38px;
  height: 38px;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.trust-item strong { display: block; color: var(--text); font-size: 13px; font-weight: 600; }

/* ── SECTIONS ── */
.section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--grad);
  opacity: .4;
  -webkit-text-fill-color: initial;
}

.section-heading {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 580px;
}

.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── VIDEO CAROUSEL (demo section) ── */
.video-area { overflow: hidden; background: #000; }
.video-carousel { position: relative; }
.vc-video { width: 100%; display: none; }
.vc-video.vc-active { display: block; }

.vc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0 0;
  background: transparent;
}

/* ── TYPE CARDS ── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 22px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}

.type-card:hover {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255,120,178,.14), 0 4px 12px rgba(0,0,0,.3);
  color: var(--text);
}

.type-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(255,120,178,.2));
}

.type-card-name { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.type-card-tag  { font-size: 12px; color: var(--accent); font-weight: 500; }

/* ── PROCESS GRID ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 16px;
  margin-top: 20px;
}

@media (max-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

.process-step { text-align: center; }

.process-step-icon {
  width: 44px;
  height: 44px;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.process-step-icon img {
  width: 20px;
  height: 20px;
  filter: invert(62%) sepia(60%) saturate(600%) hue-rotate(295deg) brightness(105%);
}

.process-step-title { font-size: 13px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.process-step-desc  { font-size: 12px; color: var(--text); line-height: 1.55; }
.process-step-desc em { font-style: normal; color: var(--accent); font-weight: 500; }

/* ── IMAGE/VIDEO GALLERY CAROUSEL ── */
.carousel-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); }

.carousel-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.carousel-track-outer:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 8px;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.carousel-item {
  flex: 0 0 calc((100% - 32px) / 5);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.carousel-item img,
.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform .28s, opacity .2s;
}

.carousel-item:hover img,
.carousel-item:hover video { opacity: .82; transform: scale(1.04); }

@media (max-width: 720px) { .carousel-item { flex: 0 0 calc((100% - 20px) / 3); } }
@media (max-width: 480px) { .carousel-item { flex: 0 0 calc((100% - 8px) / 2); } }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}

.carousel-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .02em;
}

.carousel-more:hover { color: var(--accent-dark); text-decoration: underline; }

/* ── ARROWS + DOTS (shared by both carousels) ── */
.carousel-arrow {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  color: var(--text-2);
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}

.carousel-arrow:hover {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad) border-box;
  color: var(--accent);
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .15s, transform .15s, box-shadow .15s;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(255,120,178,.6);
}

/* ── QUICK LINKS FOOTER NAV ── */
.footer-nav {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.footer-nav-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

.footer-nav-grid a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.footer-nav-grid a:hover { background: var(--accent-bg); color: var(--accent); padding-left: 26px; }

/* ── SITE FOOTER (small, used on inner pages) ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  margin-top: 40px;
  text-align: center;
}

.site-footer p { font-size: 13px; color: var(--text-3); margin-bottom: 5px; }
.site-footer a { color: var(--accent); text-decoration: none; font-weight: 500; }
.site-footer a:hover { text-decoration: underline; }

/* ── BIG FOOTER (index page) ── */
.big-footer {
  background: #08080b;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-nl {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-nl-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

.footer-nl-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-nl-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.footer-nl-form-wrap {
  flex-shrink: 0;
  width: 340px;
  position: relative;
}

.footer-nl-form {
  display: flex;
  gap: 8px;
}

.footer-nl-input {
  flex: 1;
  padding: 9px 12px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s;
}

.footer-nl-input:focus { border-color: var(--accent); }
.footer-nl-input::placeholder { color: var(--text-3); }

.footer-nl-btn {
  padding: 9px 18px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  background: var(--grad);
  color: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s ease, transform .18s ease, box-shadow .25s ease;
}

.footer-nl-btn:hover {
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,120,178,.28);
}

.footer-nl-error {
  font-size: 11px;
  color: #ef4444;
  margin-top: 6px;
}

.footer-nl-success {
  display: none;
  position: absolute;
  inset: 0;
  background: #08080b;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}

.footer-nl-success.visible { display: flex; }

@media (max-width: 700px) {
  .footer-nl { flex-direction: column; gap: 20px; }
  .footer-nl-form-wrap { width: 100%; }
}

.big-footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.big-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.big-footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
}

.big-footer-logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.big-footer-tagline {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.big-footer-email {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}

.big-footer-email:hover { color: var(--accent-2); }

.big-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 16px;
}

.big-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.big-footer-col ul li a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  position: relative;
  transition: color .15s;
}

.big-footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--text);
  border-radius: 1px;
  transition: width .25s ease;
}

.big-footer-col ul li a:hover { color: var(--text); }
.big-footer-col ul li a:hover::after { width: 100%; }

.big-footer-bottom {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
}

@media (max-width: 700px) {
  .big-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .big-footer-brand { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════
   PRODUCT PAGE STYLES
   (used by all sticker pages)
════════════════════════════════════════ */

.page { max-width: 1024px; margin: 0 auto; padding: 36px 24px 80px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 820px) { .product-layout { grid-template-columns: 1fr; } }

.order-widget { position: sticky; top: 80px; }

@media (max-width: 820px) {
  .order-widget { position: static; }
}

/* Product info card */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-hero-icon {
  background: linear-gradient(160deg, rgba(255,120,178,.08) 0%, rgba(160,126,249,.07) 100%);
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-icon img {
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 28px rgba(255,120,178,.28)) drop-shadow(0 4px 28px rgba(160,126,249,.2));
}

.product-card-body { padding: 24px; }

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,120,178,.12) 0%, rgba(160,126,249,.12) 100%);
  border: 1px solid rgba(190,140,252,.28);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.product-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }

.product-desc { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin-bottom: 18px; }

.specs-highlight {
  background: linear-gradient(135deg, rgba(255,120,178,.08) 0%, rgba(160,126,249,.08) 100%);
  border: 1px solid rgba(190,140,252,.22);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.specs-highlight p { font-size: 13px; font-weight: 600; color: var(--accent); margin: 0; }

.specs-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }

.specs-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.4; }

.spec-check { color: var(--accent); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.spec-label { color: var(--text); font-weight: 600; }

.info-row { font-size: 13px; color: var(--text); padding-top: 16px; border-top: 1px solid var(--border); }
.info-row a { color: var(--accent); text-decoration: none; font-weight: 500; }
.info-row a:hover { text-decoration: underline; }

/* Sticker type nav (compact cards on product pages) */
.type-cards-compact { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-top: 20px; }

.type-card--compact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: background .2s, transform .15s;
}

.type-card--compact:hover {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  transform: translateY(-2px);
  color: var(--text);
}

.type-card--compact.active {
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
}

.type-card--compact img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(255,120,178,.18));
}

.type-card--compact .type-card-name { font-size: 11px; font-weight: 600; line-height: 1.3; }

/* Order widget */
.widget-card {
  background: var(--surface);
  border: 1px solid rgba(190,140,252,.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.widget-header {
  background: var(--grad);
  color: #fff;
  padding: 16px 20px;
  text-align: center;
}

.widget-header h2 { font-size: 15px; font-weight: 600; letter-spacing: .01em; }

.widget-price-area {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

#bigPrice {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
}

#totalQuantity, #pricePerPiece, #totalHolo {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.widget-body { padding: 20px; }

/* Tabs */
.input-tabs {
  display: flex;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.input-tab {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  background: none;
  color: var(--text-2);
  transition: background .15s, color .15s;
}

.input-tab.active { background: var(--accent); color: #fff; }
.input-tab:not(.active):hover { background: var(--accent-bg); color: var(--accent); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Fields */
.field-group { margin-bottom: 16px; }

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .07em;
  color: var(--text-2);
  margin-bottom: 6px;
}

.size-row { display: flex; align-items: flex-end; gap: 8px; }
.size-row .field-group { flex: 1; margin-bottom: 0; }
.dim-sep { font-size: 18px; color: var(--text-3); padding-bottom: 6px; flex-shrink: 0; }

/* Select */
.w-select-wrap { position: relative; }

.w-select {
  width: 100%;
  height: 38px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 0 32px;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .15s;
}

.w-select:hover {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-select:focus {
  outline: none;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--text-3);
  pointer-events: none;
}

/* Number input */
.w-input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 0 12px;
  text-align: center;
  transition: border-color .15s;
}

.w-input:hover {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-input:focus {
  outline: none;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-input::placeholder { color: var(--text-3); font-weight: 400; }

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* Qty stepper */
.qty-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-row:hover,
.qty-row:focus-within {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.qty-btn {
  width: 38px;
  background: var(--surface-2);
  border: none;
  font-family: var(--font);
  font-size: 18px;
  cursor: pointer;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
}

.qty-btn:hover { background: var(--accent-bg); color: var(--accent); }

.qty-input {
  flex: 1;
  border: none;
  background: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  min-width: 0;
}

.qty-input:focus { outline: none; }

/* Text / textarea */
.w-text {
  width: 100%;
  height: 38px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  padding: 0 12px;
  transition: border-color .15s;
}

.w-text:hover {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-text:focus {
  outline: none;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-text::placeholder { color: var(--text-3); }

.w-textarea {
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  padding: 8px 12px;
  resize: vertical;
  transition: border-color .15s;
}

.w-textarea:hover {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-textarea:focus {
  outline: none;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}

.w-textarea::placeholder { color: var(--text-3); }

/* Add to cart button */
.add-to-cart-btn {
  width: 100%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .25s ease, transform .18s ease, box-shadow .25s ease;
  letter-spacing: .02em;
}

.add-to-cart-btn:hover {
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,120,178,.22);
}

.widget-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}

.widget-footer a { color: var(--accent); text-decoration: none; }
.widget-footer a:hover { text-decoration: underline; }

/* Process section (inside product pages) */
.process-section {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.process-section-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.process-section-sub   { font-size: 13px; color: var(--text); }

/* Cart section */
.cart-section-wrap {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cart-section-header {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-section-header h3 { font-size: 14px; font-weight: 700; }

.cart-section-body { padding: 0; }

.cart-empty { padding: 20px; font-size: 13px; color: var(--text-2); text-align: center; }

.cart-entry {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

.cart-entry:first-child { border-top: none; }

.cart-entry-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

.cart-filename { font-size: 14px; font-weight: 700; color: var(--text); cursor: text; transition: color .15s; }
.cart-filename:hover { color: var(--accent); }

.cart-filename-input {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--accent);
  outline: none;
  padding: 0;
  width: 180px;
  max-width: 100%;
}

.cart-entry-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-price { font-size: 14px; font-weight: 700; color: var(--text); }

.cart-delete-btn {
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--text-3) border-box;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text-2);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font);
  transition: background .15s, color .15s;
}

.cart-delete-btn:hover {
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
  color: var(--accent);
}

.cart-entry-details { font-size: 12px; color: var(--text); line-height: 1.6; }
.cart-entry-notes        { font-size: 12px; color: var(--text); margin-top: 4px; font-style: italic; cursor: text; transition: color .15s; }
.cart-entry-notes:hover  { color: var(--accent); }
.cart-entry-notes-empty  { color: var(--text-3); font-style: italic; }

.cart-notes-input {
  font-size: 12px;
  font-family: var(--font);
  font-style: italic;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--accent);
  outline: none;
  padding: 0;
  margin-top: 4px;
  width: 100%;
  resize: none;
  line-height: 1.6;
}

.cart-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-2);
}

.cart-count-label { font-size: 13px; color: var(--text); font-weight: 500; }
.cart-total-label { font-size: 16px; font-weight: 700; color: var(--text); }

.cart-action-btn {
  flex: 1;
  padding: 8px 14px;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

.cart-action-btn:hover {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad) border-box;
  color: var(--accent);
  transform: translateY(-1px);
}


.cart-footer-notes { font-size: 12px; color: var(--text); white-space: pre-wrap; line-height: 1.6; }

.field-label-sm { font-size: 10px; }

.page-title { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; letter-spacing: -.025em; }
