/* ---------- Design tokens ---------- */
:root {
  --iks-red: #c8242a;
  --iks-red-dark: #9b1c20;
  --iks-red-glow: rgba(200, 36, 42, 0.20);
  --ink: #0d0f12;
  --ink-2: #1a1d22;
  --slate: #2c3239;
  --muted: #5b6471;
  --line: #e3e6eb;
  --line-soft: #eef0f4;
  --bg: #fafbfc;
  --bg-2: #f3f4f7;
  --white: #ffffff;
  --warn: #d97706;
  --ok: #047857;

  --shadow-sm: 0 1px 2px rgba(13,15,18,.04), 0 1px 3px rgba(13,15,18,.06);
  --shadow-md: 0 4px 12px rgba(13,15,18,.06), 0 2px 6px rgba(13,15,18,.05);
  --shadow-lg: 0 14px 40px rgba(13,15,18,.10), 0 4px 12px rgba(13,15,18,.06);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --topbar-h: 72px;
  --stepper-h: 56px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { width: min(1280px, 92vw); margin: 0 auto; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--iks-red);
  margin-bottom: 14px;
}
.accent { color: var(--iks-red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all .18s ease;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
}
.btn-primary {
  background: var(--iks-red);
  color: #fff;
  box-shadow: 0 6px 18px var(--iks-red-glow);
}
.btn-primary:hover { background: var(--iks-red-dark); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--line);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-link {
  padding: 12px 4px;
  background: transparent;
  color: var(--ink);
  border-bottom: 2px solid var(--iks-red);
  border-radius: 0;
}
.btn-link:hover { color: var(--iks-red); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--topbar-h);
}
.topbar-inner {
  max-width: 1380px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand img { height: 50px; }
.topnav {
  display: flex; gap: 28px; justify-content: center;
  font-weight: 600; font-size: 14px; color: var(--ink-2);
}
.topnav a:hover { color: var(--iks-red); }
.cfg-breadcrumb {
  font-size: 14px; color: var(--muted); display: flex; gap: 8px; align-items: center;
}
.cfg-breadcrumb a:hover { color: var(--iks-red); }
.cfg-breadcrumb .sep { color: var(--line); }
#bcProduct { color: var(--ink); font-weight: 600; }
.topbar-actions { display: flex; gap: 16px; align-items: center; }
.phone { font-size: 13px; color: var(--muted); }

/* ---------- Hero (landing) ---------- */
.hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(1100px 480px at 88% -10%, rgba(200,36,42,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.hero-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 6px 0 18px;
}
.hero p {
  font-size: 17px;
  color: var(--slate);
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 36px;
  font-size: 13px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 22px; font-weight: 800; color: var(--ink); }
.hero-stats span { color: var(--muted); }
.hero-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: #1f232b;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,15,18,0.55) 100%);
  pointer-events: none;
}

/* ---------- Catalog cards ---------- */
.catalog { padding: 80px 0 100px; }
.catalog-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
.catalog-head h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 4px 0 12px;
}
.catalog-head .lead {
  max-width: 60ch;
  font-size: 16px;
  color: var(--slate);
  margin: 0;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .catalog-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .25s ease;
  overflow: hidden;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--iks-red);
  box-shadow: var(--shadow-lg);
}
.product-card .img-wrap {
  background: linear-gradient(180deg, #f8f9fb 0%, #eceff4 100%);
  border-radius: var(--r-sm);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .35s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.04); }
.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
}
.product-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  flex: 1;
}
.product-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.product-card .card-foot small {
  color: var(--muted);
  font-size: 12px;
}
.product-card .card-foot .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--iks-red);
}
.product-card .card-foot .cta::after {
  content: '→';
  transition: transform .2s ease;
}
.product-card:hover .card-foot .cta::after { transform: translateX(4px); }

/* ---------- Bands section ---------- */
.bands {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}
.bands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .bands-grid { grid-template-columns: 1fr; } }
.bands article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.icon-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--iks-red-glow);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.bands h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.bands p { color: var(--muted); margin: 0; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cbd0d6;
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
.site-footer h4 { color: #fff; font-size: 14px; margin: 0 0 10px; font-weight: 700; }
.site-footer .footer-logo { background: #fff; padding: 6px; border-radius: 6px; height: 40px; width: auto; margin-bottom: 12px; }
.site-footer a:hover { color: #fff; }
.site-footer .muted { color: #8d9097; }


/* =====================================================================
   CONFIGURATOR PAGE
   ===================================================================== */
body.cfg { background: var(--bg-2); }

.cfg-stepper {
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: var(--stepper-h);
}
.cfg-stepper ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 16px; align-items: center;
  height: var(--stepper-h);
  font-size: 13px;
  color: var(--muted);
}
.cfg-stepper li {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.cfg-stepper li + li::before {
  content: '›';
  color: var(--line);
  margin-right: 8px;
  font-size: 16px;
}
.cfg-stepper li span {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  border: 1px solid var(--line);
}
.cfg-stepper li.active { color: var(--ink); }
.cfg-stepper li.active span {
  background: var(--iks-red);
  color: #fff;
  border-color: var(--iks-red);
}
.cfg-stepper li.done { color: var(--ok); }
.cfg-stepper li.done span {
  background: var(--ok);
  color: #fff;
  border-color: var(--ok);
}

.cfg-main {
  display: grid;
  grid-template-columns: 380px 1fr 360px;
  gap: 0;
  height: calc(100vh - var(--topbar-h) - var(--stepper-h));
  min-height: 720px;
}
@media (max-width: 1280px) {
  .cfg-main { grid-template-columns: 340px 1fr 320px; }
}
@media (max-width: 1100px) {
  .cfg-main { grid-template-columns: 1fr; height: auto; min-height: 0; }
}

/* ---------- Form (left) ---------- */
.cfg-form {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 28px 26px;
  overflow-y: auto;
}
.cfg-form-head {
  padding-bottom: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.cfg-form-head h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 4px 0 6px;
}
.cfg-form-head .muted { font-size: 13px; }

details.group {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
details.group[open] { border-color: var(--iks-red); }
details.group summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  user-select: none;
}
details.group summary::-webkit-details-marker { display: none; }
details.group summary::after {
  content: '+';
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border-radius: 50%;
  font-weight: 700;
  color: var(--muted);
  font-size: 16px;
  transition: transform .2s ease, background .2s ease;
}
details.group[open] summary::after {
  content: '−';
  background: var(--iks-red);
  color: #fff;
}
details.group .group-body {
  padding: 4px 16px 18px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label.field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: .02em;
}
.field .input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.field input[type="number"],
.field input[type="text"],
.field select,
.field textarea {
  flex: 1;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--iks-red);
  box-shadow: 0 0 0 3px var(--iks-red-glow);
}
.field .unit {
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 0 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: none;
  border-radius: 0 6px 6px 0;
  min-width: 44px;
}
.field input[type="number"] + .unit,
.field input[type="text"] + .unit { border-radius: 0 6px 6px 0; }
.field input[type="number"] { border-radius: 6px 0 0 6px; }

.field.range-field input[type="range"] {
  width: 100%;
  accent-color: var(--iks-red);
}
.field .range-value {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.radio-group, .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.radio-group label,
.check-group label {
  flex: 1 1 calc(50% - 3px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s ease;
}
.radio-group label:hover,
.check-group label:hover { border-color: var(--ink); }
.radio-group input,
.check-group input { accent-color: var(--iks-red); }
.radio-group label.is-active,
.check-group label.is-active {
  border-color: var(--iks-red);
  background: var(--iks-red-glow);
  color: var(--ink);
}

.field textarea { min-height: 90px; resize: vertical; }

/* ---------- Visualization (center) ---------- */
.cfg-viz {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 460px at 50% -10%, rgba(255,255,255,1), rgba(243,244,247,1) 70%),
    var(--bg-2);
}
.viz-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
}
.viz-toggle {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.viz-toggle button {
  border: none;
  background: transparent;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: all .15s ease;
}
.viz-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.viz-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
#vizDims {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 6px;
}

.viz-stage {
  position: relative;
  flex: 1;
  min-height: 480px;
  overflow: hidden;
}
.viz-pane {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.viz-pane.active { display: flex; }
#viz2d svg { width: 100%; height: 100%; max-width: 1100px; }

.viz-watermark {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--muted);
  pointer-events: none;
}
.viz-watermark img { height: 22px; }

/* ---------- Summary (right) ---------- */
.cfg-summary {
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 24px 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.summary-head { padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.summary-head .price {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  color: var(--ink);
  line-height: 1;
  margin-top: 4px;
}
.summary-head .price-meta {
  font-size: 11px; color: var(--muted); margin-top: 8px;
}

.summary-bars { display: flex; flex-direction: column; gap: 10px; }
.bar { display: grid; grid-template-columns: 1fr 60px; gap: 8px; align-items: center; font-size: 12px; }
.bar label { color: var(--muted); grid-column: 1; }
.bar .meter {
  grid-column: 1 / -1;
  height: 5px; border-radius: 999px; background: var(--line-soft); overflow: hidden;
}
.bar .meter span { display: block; height: 100%; background: var(--iks-red); width: 0%; transition: width .3s ease; }
.bar strong { font-weight: 700; font-size: 12px; text-align: right; font-feature-settings: "tnum"; }

.summary-list {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
}
.summary-list .row {
  display: flex; justify-content: space-between; gap: 12px;
  color: var(--slate);
}
.summary-list .row strong { font-weight: 600; color: var(--ink); }

.summary-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.action-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

.summary-note {
  background: var(--iks-red-glow);
  border-left: 3px solid var(--iks-red);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--ink-2);
  border-radius: 0 6px 6px 0;
  line-height: 1.45;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  animation: toast-in .3s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* Fullscreen viz state */
body.viz-fullscreen .cfg-form,
body.viz-fullscreen .cfg-summary,
body.viz-fullscreen .cfg-stepper { display: none; }
body.viz-fullscreen .cfg-main { grid-template-columns: 1fr; height: calc(100vh - var(--topbar-h)); }

/* ---------- Range styling ---------- */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 999px;
  background: var(--line);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--iks-red);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--iks-red);
  transition: transform .12s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }

/* Scrollbar (subtle) */
.cfg-form::-webkit-scrollbar,
.cfg-summary::-webkit-scrollbar,
.summary-list::-webkit-scrollbar { width: 8px; }
.cfg-form::-webkit-scrollbar-thumb,
.cfg-summary::-webkit-scrollbar-thumb,
.summary-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.cfg-form::-webkit-scrollbar-thumb:hover,
.cfg-summary::-webkit-scrollbar-thumb:hover,
.summary-list::-webkit-scrollbar-thumb:hover { background: #c7ccd2; }

/* =====================================================================
   LOGIN PAGE
   ===================================================================== */
body.login-page { background: #0d0f12; min-height: 100vh; }

.login-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 100vh;
}
@media (max-width: 880px) { .login-shell { grid-template-columns: 1fr; } }

.login-side {
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(200,36,42,0.18), transparent 60%),
    radial-gradient(900px 600px at 100% 100%, rgba(80,90,110,0.30), transparent 70%),
    linear-gradient(160deg, #161a20 0%, #0d0f12 100%);
  color: #d8dde3;
  padding: 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.login-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: contrast(1.05) saturate(1.1);
}
.login-side-inner { position: relative; max-width: 460px; }
.login-logo {
  height: 70px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 28px;
}
.login-side h1 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.login-side p { color: #b0b6be; font-size: 16px; max-width: 50ch; margin: 0 0 32px; }
.login-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.login-pills li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 14px;
  border-radius: 999px;
  color: #d8dde3;
  font-size: 13px;
  font-weight: 500;
}
.login-side-foot {
  position: absolute;
  bottom: 32px;
  left: 64px;
  right: 64px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6c727a;
}
.login-side-foot strong { color: #c8242a; font-weight: 700; }

.login-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  padding: 48px;
}
.login-card {
  width: 100%;
  max-width: 440px;
}
.login-card h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 4px 0 8px;
}
.login-card .muted {
  font-size: 14px;
  margin: 0 0 28px;
}
.login-form { display: flex; flex-direction: column; gap: 14px; }
.login-form .field { display: flex; flex-direction: column; gap: 6px; }
.login-form input {
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.login-form input:focus {
  outline: none;
  border-color: var(--iks-red);
  box-shadow: 0 0 0 3px var(--iks-red-glow);
}
.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.btn-lg { padding: 14px 22px; font-size: 15px; }

.login-error {
  background: var(--iks-red-glow);
  color: var(--iks-red-dark);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  border-left: 3px solid var(--iks-red);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 16px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.login-quick { display: flex; flex-direction: column; gap: 8px; }
.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  transition: all .15s ease;
}
.quick-card:hover {
  border-color: var(--iks-red);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.quick-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--iks-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.quick-card .meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.quick-card .meta strong { font-size: 14px; }
.quick-card .meta span { font-size: 12px; color: var(--muted); }
.quick-card .meta small { font-size: 11px; color: var(--muted); margin-top: 2px; }

.login-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.login-foot a:hover { color: var(--iks-red); text-decoration: underline; }

/* =====================================================================
   ERP PILL & USER PILL (used in topbar)
   ===================================================================== */
.erp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--slate);
  white-space: nowrap;
}
.erp-pill strong { color: var(--ink); font-weight: 700; }
.erp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.18);
  animation: pulse-ok 2.4s ease-in-out infinite;
}
.erp-dot.ok    { background: var(--ok); box-shadow: 0 0 0 3px rgba(4,120,87,0.18); }
.erp-dot.dirty { background: var(--warn); box-shadow: 0 0 0 3px rgba(217,119,6,0.18); animation: pulse-warn 1.6s ease-in-out infinite; }
@keyframes pulse-ok { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes pulse-warn { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.user-pill.compact { background: transparent; border: none; padding: 0; }
.user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--iks-red) 0%, var(--iks-red-dark) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.user-meta { display: flex; flex-direction: column; gap: 0; line-height: 1.2; }
.user-meta strong { font-size: 12px; font-weight: 600; }
.user-meta span { font-size: 11px; color: var(--muted); }

/* ERP tag chips */
.erp-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--bg-2);
  color: var(--slate);
  border: 1px solid var(--line);
}
.erp-tag.tag-stammkunde,
.erp-tag.tag-grokunde,
.erp-tag.tag-neukunde { background: #e6f4ee; color: var(--ok); border-color: #c1e2d2; }

/* Customer-ID chip */
.cust-id {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--muted);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 3px 6px;
  border-radius: 4px;
}


/* =====================================================================
   HUB PAGE (post-login customer + product picker)
   ===================================================================== */
body.hub-page { background: var(--bg-2); }

.topbar-cfg { grid-template-columns: 180px auto 1fr auto; gap: 24px; }
.topbar-cfg .erp-pill { justify-self: start; }
.topbar-cfg .cfg-breadcrumb { justify-self: start; }
.topbar-cfg .topbar-actions { justify-self: end; }

.hub { padding: 36px 0 80px; }
.hub-greet { margin-bottom: 32px; max-width: 1280px; }
.hub-greet h1 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 4px 0 8px;
}
.hub-greet .lead { font-size: 15px; color: var(--slate); margin: 0; max-width: 64ch; }

.hub-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
}
@media (max-width: 1100px) { .hub-grid { grid-template-columns: 1fr; } }

.hub-customer, .hub-products {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
}
.hub-customer h2, .hub-products h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hub-customer .muted, .hub-products .muted { font-size: 13px; margin: 0 0 16px; }

.step-num {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--iks-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.customer-search { margin-bottom: 12px; }
.customer-search input {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 11px 14px;
}
.customer-search input:focus {
  outline: none;
  border-color: var(--iks-red);
  box-shadow: 0 0 0 3px var(--iks-red-glow);
}

.customer-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 360px;
  overflow-y: auto;
  margin-bottom: 12px;
  padding-right: 4px;
}
.cust-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all .15s ease;
}
.cust-row:hover { border-color: var(--ink); }
.cust-row.active {
  border-color: var(--iks-red);
  background: var(--iks-red-glow);
}
.cust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a4f57 0%, #2c3239 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.cust-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cust-meta strong { font-size: 13px; }
.cust-meta span { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.btn-newcustomer {
  border-style: dashed;
  border-color: var(--line);
  color: var(--muted);
  font-weight: 600;
}
.btn-newcustomer:hover { color: var(--iks-red); border-color: var(--iks-red); }

.hub-customer-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.hub-customer-detail h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 12px;
}

.kv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 12px;
  margin: 0;
}
.kv dt { color: var(--muted); font-weight: 500; }
.kv dd { margin: 0; color: var(--ink); font-weight: 600; }


/* =====================================================================
   CONFIGURATOR — sales-rep additions
   ===================================================================== */
/* Configurator stepper + customer strip */
.cfg-stepper { padding: 0; height: auto; }
.cfg-stepper .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 10px 0;
  width: min(1380px, 96vw);
}
.cfg-stepper ol { padding: 0; height: auto; margin: 0; }

.customer-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  max-width: 540px;
}
.customer-strip > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.customer-strip strong {
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}
.customer-strip .muted {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}
.customer-strip .cust-avatar { width: 28px; height: 28px; font-size: 11px; }
.customer-strip .btn { margin-left: 4px; }

@media (max-width: 1100px) {
  .cfg-stepper .container { grid-template-columns: 1fr; gap: 8px; }
  .customer-strip { max-width: 100%; }
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }

.btn-block svg { flex-shrink: 0; }

.margin-row { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.margin-row label > span:first-child {
  display: block;
  font-size: 12px;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 6px;
}
.discount-control {
  display: grid;
  grid-template-columns: 1fr 60px auto;
  gap: 10px;
  align-items: center;
}
.discount-control input[type="number"] {
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  text-align: right;
  font-weight: 700;
  font-feature-settings: "tnum";
}
.discount-control input[type="number"]:focus {
  outline: none;
  border-color: var(--iks-red);
  box-shadow: 0 0 0 3px var(--iks-red-glow);
}
.discount-control > span:last-child { color: var(--muted); font-weight: 600; }

.bar.discount-bar .meter span { background: var(--ok); }

.erp-state {
  background: var(--bg-2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
}
.erp-state-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.erp-state-row span { color: var(--muted); }
.erp-state-row strong { color: var(--ink); font-weight: 600; font-feature-settings: "tnum"; }
#signState.ok { color: var(--ok); }
#signState.warn { color: var(--warn); }


/* =====================================================================
   MODALS
   ===================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 18, 0.55);
  backdrop-filter: blur(4px);
  animation: backdrop-in .2s ease;
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  overflow: hidden;
  animation: modal-in .25s ease;
}
@keyframes backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal-card header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.modal-card header .eyebrow { margin: 0 0 2px; font-size: 11px; }
.modal-body {
  padding: 22px;
  overflow-y: auto;
}
.modal-card footer {
  display: flex;
  gap: 8px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  flex-shrink: 0;
}
.footer-spacer { flex: 1; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-body .field { display: flex; flex-direction: column; gap: 6px; }
.modal-body .field input,
.modal-body .field select {
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
}
.modal-body .field input:focus {
  outline: none;
  border-color: var(--iks-red);
  box-shadow: 0 0 0 3px var(--iks-red-glow);
}

.modal-sign { max-width: 920px; }
.sign-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: 8px;
  margin: 14px 0 18px;
  font-size: 12px;
}
.sign-summary > div { display: flex; flex-direction: column; gap: 2px; }
.sign-summary .muted { font-size: 11px; }
.sign-summary strong { font-size: 13px; color: var(--ink); }

.sign-pad-wrap {
  background: #fafbfc;
  border: 2px dashed var(--line);
  border-radius: 8px;
  padding: 6px;
  position: relative;
}
#signPad {
  width: 100%;
  height: 220px;
  display: block;
  border-radius: 6px;
  background: #fff;
  cursor: crosshair;
  touch-action: none;
}
.sign-baseline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 4px;
  font-size: 11px;
  color: var(--muted);
}
.sign-baseline span:first-child { font-weight: 700; color: var(--ink); }
.sign-baseline .dashed { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 10px); }

.sign-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
}
.sign-checkbox input { margin-top: 2px; accent-color: var(--iks-red); width: 18px; height: 18px; flex-shrink: 0; }

.modal-erp { max-width: 540px; }
.erp-success { text-align: center; }
.erp-success .erp-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ok);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(4,120,87,0.12);
}
.erp-success h4 { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.erp-success > p { color: var(--muted); margin: 0 0 20px; font-size: 14px; }
.erp-success .kv {
  text-align: left;
  background: var(--bg-2);
  padding: 14px;
  border-radius: 8px;
  font-size: 13px;
}

/* small helper */
.small { font-size: 12px; }
.center { text-align: center; }

/* Contact form (request wizard step 1) */
.contact-form { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.contact-form .field {
  display: flex; flex-direction: column; gap: 5px;
}
.contact-form .field-label {
  font-size: 12px; font-weight: 600; color: var(--slate);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit; font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--iks-red);
  box-shadow: 0 0 0 3px var(--iks-red-glow);
}
.contact-form textarea { min-height: 90px; resize: vertical; font-family: inherit; }

.agree-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 6px;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
}
.agree-checkbox input { margin-top: 2px; accent-color: var(--iks-red); width: 18px; height: 18px; flex-shrink: 0; }
.agree-checkbox a { color: var(--iks-red); text-decoration: underline; }

/* Picker page (Step 1: choose crane type) */
body.picker-page { background: var(--bg-2); min-height: 100vh; }
.picker { padding: 36px 0 80px; }
.picker-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.picker-head h1 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}
.picker-head .lead {
  font-size: 16px;
  color: var(--slate);
  margin: 0;
}
.picker-page .topbar-inner { grid-template-columns: 180px 1fr auto; }

/* CTA hint under finalize button */
.cta-hint {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0 8px;
}

/* =====================================================================
   FINALIZE WIZARD MODAL
   ===================================================================== */
.modal-wizard { max-width: 880px; }
.wizard-head {
  padding: 14px 22px !important;
  align-items: stretch !important;
}
.wizard-steps {
  display: flex;
  gap: 4px;
  flex: 1;
  align-items: center;
}
.ws-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-2);
  white-space: nowrap;
  transition: all .2s ease;
}
.ws-step span {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.ws-step.active {
  color: var(--ink);
  background: var(--iks-red-glow);
}
.ws-step.active span {
  background: var(--iks-red);
  color: #fff;
  border-color: var(--iks-red);
}
.ws-step.done {
  color: var(--ok);
  background: rgba(4,120,87,0.08);
}
.ws-step.done span {
  background: var(--ok);
  color: #fff;
  border-color: var(--ok);
}
.ws-step.done span::before { content: "✓"; }
.ws-step.done span > * { display: none; }

.wizard-body { padding: 24px; min-height: 340px; }
.wizard-step h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; }
.wizard-step > p { margin: 0 0 18px; font-size: 13px; }

.wizard-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px !important;
}

/* Step 1: Review summary card */
.finalize-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  padding: 18px 20px;
  background: var(--bg-2);
  border-radius: 10px;
  margin-bottom: 14px;
}
.finalize-summary > div { display: flex; flex-direction: column; gap: 2px; }
.finalize-summary span { font-size: 11px; }
.finalize-summary strong { font-size: 15px; color: var(--ink); font-weight: 700; }

/* ERP transfer animation */
.erp-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--iks-red-glow);
  border: 1px solid #f0c8ca;
  border-radius: 8px;
  margin-top: 10px;
}
.erp-progress > div { display: flex; flex-direction: column; gap: 2px; }
.erp-progress strong { font-size: 13px; }
.erp-progress span { font-size: 12px; }

.erp-spinner {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2.5px solid var(--line);
  border-top-color: var(--iks-red);
  animation: spin 0.85s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.erp-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(4,120,87,0.06);
  border: 1px solid #c1e2d2;
  border-radius: 8px;
  margin-top: 10px;
}
.erp-result > div { display: flex; flex-direction: column; gap: 2px; }
.erp-result strong { font-size: 13px; color: var(--ok); }
.erp-result span { font-size: 12px; color: var(--muted); }
.erp-result span strong { color: var(--ink); }

.erp-check.sm {
  width: 32px; height: 32px;
  font-size: 18px;
  margin: 0;
  box-shadow: 0 0 0 4px rgba(4,120,87,0.10);
}

/* Step 2 — keep existing sign styling, just refine for inside wizard */
.wizard-step .sign-pad-wrap { position: relative; }
#signPad { height: 200px !important; }
.sign-clear-floating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.95);
  z-index: 2;
}

/* Step 3 — Done & Send */
.finalize-done { text-align: center; padding: 4px 0; }
.finalize-done .erp-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ok);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 6px rgba(4,120,87,0.12);
}
.finalize-done h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.finalize-done > p { color: var(--muted); margin: 0 0 20px; font-size: 14px; }

.done-kv {
  text-align: left;
  background: var(--bg-2);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 22px;
  grid-template-columns: 38% 1fr;
}

.finalize-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.send-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
}
@media (max-width: 600px) { .send-row { grid-template-columns: 1fr; } }
#sendEmail { font-weight: 400; opacity: 0.85; margin-left: 6px; }

