/* ═══════════════════════════════════════════════════════════════
   NoDig EU — Shared Stylesheet
   nodig.eu.com  ·  NoDig d.o.o., Osijek, Croatia
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:        #f3f1ed;
  --surface:   #ffffff;
  --ink:       #0f0e0c;
  --ink2:      #6b6560;
  --blue:      #1c4fd6;
  --blue-dk:   #1440b0;
  --blue-lt:   #e8eeff;
  --green:     #1a7a3c;
  --green-lt:  #e4f5ea;
  --gold:      #c8952a;
  --gold-lt:   #fdf5e4;
  --border:    rgba(15,14,12,0.10);
  --r:         8px;
  --r-lg:      16px;
  --nav-h:     64px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Barlow', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nd-nav {
  background: rgba(243,241,237,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
}
.nd-nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nd-nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nd-nav-logo img {
  height: 38px; width: auto;
  background: #080c14; border-radius: 5px; padding: 3px 9px;
}
.nd-nav-logo-divider { width: 1px; height: 26px; background: var(--border); }
.nd-nav-logo-tag {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink2);
}

/* Desktop links */
.nd-nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nd-nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--ink2); padding: 6px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nd-nav-links a:hover  { color: var(--blue); background: var(--blue-lt); }
.nd-nav-links a.active { color: var(--blue); background: var(--blue-lt); }
.nd-nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 9px 18px !important; border-radius: var(--r) !important;
  font-weight: 600 !important; letter-spacing: 0.08em !important;
}
.nd-nav-cta:hover { background: var(--blue-dk) !important; }

/* Hamburger */
.nd-nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
  flex-shrink: 0;
}
.nd-nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nd-nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nd-nav-burger.open span:nth-child(2) { opacity: 0; }
.nd-nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nd-nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 199; padding: 28px 24px;
  overflow-y: auto;
  flex-direction: column; gap: 6px;
  border-top: 1px solid var(--border);
}
.nd-nav-drawer.open { display: flex; }
.nd-nav-drawer a {
  font-size: 1.05rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink2); padding: 13px 16px; border-radius: var(--r);
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nd-nav-drawer a:hover, .nd-nav-drawer a.active {
  color: var(--blue); background: var(--blue-lt); border-color: rgba(28,79,214,0.15);
}
.nd-nav-drawer .drawer-cta {
  margin-top: 8px; background: var(--blue); color: #fff !important;
  text-align: center; font-weight: 600;
}
.nd-nav-drawer .drawer-cta:hover { background: var(--blue-dk) !important; }
.drawer-divider {
  height: 1px; background: var(--border); margin: 8px 0;
}
.drawer-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink2); padding: 0 16px; margin-top: 4px;
}

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.nd-breadcrumb {
  padding: 12px 0;
  font-size: 0.72rem; color: var(--ink2);
  display: flex; align-items: center; gap: 7px;
}
.nd-breadcrumb a { color: var(--ink2); transition: color 0.2s; }
.nd-breadcrumb a:hover { color: var(--blue); }
.nd-breadcrumb-sep { opacity: 0.35; }

/* ── SECTION LABELS ──────────────────────────────────────────── */
.nd-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.nd-label::before {
  content: ''; width: 20px; height: 1.5px; background: var(--blue); flex-shrink: 0;
}
.nd-label.green  { color: var(--green);  }
.nd-label.green::before  { background: var(--green); }
.nd-label.gold   { color: var(--gold);   }
.nd-label.gold::before   { background: var(--gold); }
.nd-label.white  { color: rgba(255,255,255,0.55); }
.nd-label.white::before  { background: rgba(255,255,255,0.4); }

.nd-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem); letter-spacing: 0.02em;
  line-height: 1.06; text-transform: uppercase; margin-bottom: 12px;
}
.nd-desc {
  font-size: 0.97rem; font-weight: 300; color: var(--ink2);
  line-height: 1.72; max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 24px; border-radius: var(--r);
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  cursor: pointer; border: 1px solid transparent;
}
.btn-blue   { background: var(--blue);  color: #fff; }
.btn-blue:hover  { background: var(--blue-dk); transform: translateY(-1px); }
.btn-dark   { background: var(--ink);   color: #fff; }
.btn-dark:hover  { background: var(--blue); transform: translateY(-1px); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { background: #145e2e; transform: translateY(-1px); }
.btn-gold   { background: var(--gold);  color: #fff; }
.btn-gold:hover  { background: #a87820; transform: translateY(-1px); }
.btn-white  { background: #fff; color: var(--blue); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-text {
  background: none; padding: 0;
  font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink2);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--blue); border-color: var(--blue); }

/* ── FAQ (shared) ────────────────────────────────────────────── */
.nd-faq-layout {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 56px; align-items: start;
}
.nd-faq-sticky { position: sticky; top: calc(var(--nav-h) + 16px); }
.nd-faq-list   { display: flex; flex-direction: column; gap: 2px; }
.nd-faq-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.nd-faq-item.on-white { background: var(--surface); }
.nd-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.03em; text-transform: uppercase;
  transition: color 0.2s;
}
.nd-faq-q::-webkit-details-marker { display: none; }
.nd-faq-q:hover { color: var(--blue); }
details[open] > .nd-faq-q { color: var(--blue); border-bottom: 1px solid var(--border); }
.nd-faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; background: var(--surface);
  transition: transform 0.25s, background 0.2s, border-color 0.2s;
  font-style: normal;
}
details[open] > .nd-faq-q .nd-faq-icon {
  transform: rotate(45deg); background: var(--blue);
  border-color: var(--blue); color: #fff;
}
.nd-faq-a {
  padding: 16px 20px;
  font-size: 0.87rem; font-weight: 300;
  color: var(--ink2); line-height: 1.75;
}
.nd-faq-a a { color: var(--blue); border-bottom: 1px solid rgba(28,79,214,0.3); }
.nd-faq-a a:hover { border-color: var(--blue); }

/* green faq variant */
.nd-faq-list.green details[open] > .nd-faq-q { color: var(--green); }
.nd-faq-list.green .nd-faq-q:hover { color: var(--green); }
.nd-faq-list.green details[open] > .nd-faq-q .nd-faq-icon {
  background: var(--green); border-color: var(--green);
}

/* ── CONTACT BOX ─────────────────────────────────────────────── */
.nd-contact-box {
  border-radius: var(--r-lg); padding: 52px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.nd-contact-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: 0.02em;
  text-transform: uppercase; margin-bottom: 8px;
}
.nd-contact-links { display: flex; flex-direction: column; gap: 11px; align-items: flex-end; }
.nd-contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500;
  transition: color 0.2s; white-space: nowrap;
}
.nd-contact-ico {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; flex-shrink: 0;
}

/* light variant */
.nd-contact-box.light {
  background: var(--surface); border: 1px solid var(--border);
}
.nd-contact-box.light .nd-contact-link { color: var(--ink); }
.nd-contact-box.light .nd-contact-link:hover { color: var(--blue); }
.nd-contact-box.light .nd-contact-ico { background: var(--bg); border: 1px solid var(--border); }

/* dark variant */
.nd-contact-box.dark { background: var(--ink); }
.nd-contact-box.dark .nd-contact-title { color: #fff; }
.nd-contact-box.dark .nd-contact-sub  { color: rgba(255,255,255,0.5); }
.nd-contact-box.dark .nd-contact-link { color: rgba(255,255,255,0.65); }
.nd-contact-box.dark .nd-contact-link:hover { color: #fff; }
.nd-contact-box.dark .nd-contact-ico  { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }

.nd-contact-sub { font-size: 0.9rem; font-weight: 300; }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.nd-marquee { background: var(--ink); overflow: hidden; padding: 11px 0; }
.nd-marquee-track {
  display: flex; white-space: nowrap;
  animation: ndTicker 30s linear infinite;
}
.nd-marquee-item {
  display: inline-flex; align-items: center; gap: 16px; padding: 0 24px;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.nd-marquee-dot {
  width: 4px; height: 4px; background: var(--blue);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes ndTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FOOTER ──────────────────────────────────────────────────── */
.nd-footer {
  background: #080c10;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 44px 0 0;
  color: rgba(255,255,255,0.4);
}
.nd-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
}
.nd-footer-brand {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.4rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.nd-footer-brand span { color: #5ab4ff; }
.nd-footer-desc  { font-size: 0.78rem; line-height: 1.65; max-width: 240px; margin-bottom: 14px; }
.nd-footer-made  { font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.22); }
.nd-footer-col-title {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.nd-footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.nd-footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.nd-footer-links a:hover { color: #fff; }
.nd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
}

/* ── MINI FOOTER (subpages) ──────────────────────────────────── */
.nd-footer-mini {
  background: #080c10; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nd-footer-mini-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.nd-footer-mini img { height: 30px; background: #080c14; border-radius: 4px; padding: 3px 8px; }
.nd-footer-mini-info { font-size: 0.74rem; color: rgba(255,255,255,0.24); line-height: 1.6; }
.nd-footer-mini-nav  { display: flex; gap: 16px; flex-wrap: wrap; }
.nd-footer-mini-nav a { font-size: 0.74rem; color: rgba(255,255,255,0.32); transition: color 0.2s; }
.nd-footer-mini-nav a:hover { color: rgba(255,255,255,0.8); }

/* ── STAT STRIP ──────────────────────────────────────────────── */
.nd-stats {
  display: flex; gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 28px; margin-top: 40px;
}
.nd-stat-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 2rem; letter-spacing: 0.04em; line-height: 1; margin-bottom: 3px;
}
.nd-stat-label {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink2);
}
.nd-stats.on-dark .nd-stat-num   { color: #fff; }
.nd-stats.on-dark .nd-stat-label { color: rgba(255,255,255,0.38); }
.nd-stats.on-dark { border-top-color: rgba(255,255,255,0.1); }

/* ── HERO EYEBROW ────────────────────────────────────────────── */
.nd-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; margin-bottom: 18px;
}
.nd-eyebrow-line { width: 22px; height: 1.5px; flex-shrink: 0; }
.nd-eyebrow.blue   { color: var(--blue);  }
.nd-eyebrow.blue   .nd-eyebrow-line { background: var(--blue); }
.nd-eyebrow.cyan   { color: #5ab4ff; }
.nd-eyebrow.cyan   .nd-eyebrow-line { background: #5ab4ff; }
.nd-eyebrow.green  { color: #4fd68a; }
.nd-eyebrow.green  .nd-eyebrow-line { background: #4fd68a; }
.nd-eyebrow.gold   { color: var(--gold); }
.nd-eyebrow.gold   .nd-eyebrow-line { background: var(--gold); }

/* ── INDUSTRIAL TEXTURE OVERLAY ──────────────────────────────── */
.nd-tex {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.02) 3px, rgba(0,0,0,0.02) 4px);
}
.nd-tex.light {
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
}

/* ── CORNER BRACKETS ─────────────────────────────────────────── */
.nd-corner { position: absolute; width: 26px; height: 26px; z-index: 2; pointer-events: none; }
.nd-corner.tl { top: 14px;    left: 14px;  border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); }
.nd-corner.br { bottom: 14px; right: 14px; border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); }

/* ── CARDS ───────────────────────────────────────────────────── */
.nd-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.nd-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nd-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(28,79,214,0.09); border-color: rgba(28,79,214,0.25); }
.nd-card:hover::before { transform: scaleX(1); }
.nd-card.on-bg { background: var(--bg); }

/* ── INLINE BADGE ────────────────────────────────────────────── */
.nd-badge {
  display: inline-block;
  font-size: 0.61rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 100px;
}
.nd-badge.blue  { background: rgba(28,79,214,0.10);  color: var(--blue); }
.nd-badge.green { background: rgba(26,122,60,0.12);  color: var(--green); }
.nd-badge.gold  { background: rgba(200,149,42,0.14); color: var(--gold); }
.nd-badge.dark  { background: rgba(15,14,12,0.07);   color: var(--ink2); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nd-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nd-faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .nd-faq-sticky  { position: static; }
  .nd-contact-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .nd-contact-links { align-items: flex-start; }
  .nd-stats { flex-wrap: wrap; gap: 20px; }
  .nd-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nd-nav-links { display: none; }
  .nd-nav-burger { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nd-nav-inner { padding: 0 18px; }
  .nd-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nd-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .nd-footer-mini-inner { flex-direction: column; gap: 12px; text-align: center; }
  .nd-footer-mini-nav { justify-content: center; }
  .nd-contact-box { padding: 28px 20px; }
}

/* ── DESKTOP GRID FIXES ─────────────────────────────────────── */

/* Glavna stranica — 5 product kartica, 5 kolona na desktopu */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}
.products-grid a.product-card { display: block; color: inherit; }
.products-grid .product-card  { width: 100%; min-width: 0; box-sizing: border-box; }

/* Substranice — 3 kartice (ProLight/V8 grid), čisti minmax bez overflow */
.products .products-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.products .prod-card {
  display: flex; flex-direction: column;
  width: 100%; min-width: 0; height: 100%;
}

/* Hover arrow (zadržano) */
.product-arrow {
  position: absolute; right: 18px; bottom: 18px;
  font-size: 1.2rem; opacity: 0;
  transform: translateX(-6px); transition: all .25s ease;
  color: var(--blue);
}
.product-card:hover .product-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 1024px) {
  .products-grid            { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .products-grid,
  .products .products-grid  { grid-template-columns: 1fr !important; }
}
/* ── MOBILE FIXES ───────────────────────────────────────────── */

/* Drawer CTA button - full width, ne razvlači layout */
.nd-nav-drawer .drawer-cta {
  width: 100%;
  box-sizing: border-box;
  display: block;
}

/* Drawer links - spriječi overflow */
.nd-nav-drawer a {
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

/* Sve kartice na mobitelu - spriječi overflow iz grida */
@media (max-width: 720px) {
  /* products-grid override - kolaps na 1 kolonu */
  .products-grid,
  .products .products-grid {
    grid-template-columns: 1fr !important;
  }

  /* općenito sve grid kartice */
  .machine-card,
  .prod-card,
  .product-card,
  .ben-card,
  .uc-card,
  .dd-card,
  .partner-card,
  .ep-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* nd-nav-cta u navbaru - samo hamburger vidljiv, cta skriven */
  .nd-nav-cta {
    display: none;
  }
}

@media (max-width: 600px) {
  /* hero stats - 2 kolone umjesto 4 */
  .nd-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* contact box linkovi - stog */
  .nd-contact-links {
    flex-direction: column;
    gap: 12px;
  }

  /* nd-contact-link - puni width */
  .nd-contact-link {
    width: 100%;
    box-sizing: border-box;
  }

  /* marquee - smanji font na malom ekranu */
  .nd-marquee-item {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}