/* ═══════════════════════════════════════════
   ÓPTICAS MANRIQUE — estilo inspirado en Meller
   ═══════════════════════════════════════════ */
:root {
  --ink: #101010;
  --muted: #6d6a66;
  --bg: #ffffff;
  --card: #f5f3ef;
  --line: #e8e4dd;
  --green: #00954d;
  --red: #e4372e;
  --gold: #b98a2f;
  --whats: #25d366;
  --radius: 14px;
  --shadow: 0 18px 40px -18px rgba(16, 16, 16, .22);
  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
h1, h2, h3 { text-transform: uppercase; letter-spacing: .02em; }

/* ── Barra de anuncios ─────────────────── */
.announcement {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 38px;
  padding: 0 10px;
}
.ann-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  animation: annIn .4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes annIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.ann-arrow {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  opacity: .7;
  padding: 4px 8px;
  transition: opacity .2s;
}
.ann-arrow:hover { opacity: 1; }

/* ── Header ────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.nav-left { display: flex; align-items: center; gap: 22px; }
.nav-left .nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-left .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--ink);
  transition: width .25s;
}
.nav-left .nav-link:hover::after { width: 100%; }

.brand { display: flex; align-items: center; gap: 10px; justify-self: center; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; }
.brand-name {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.brand-name strong { font-weight: 800; }

.nav-right { display: flex; align-items: center; gap: 6px; justify-self: end; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  position: relative;
  transition: background .2s;
}
.icon-btn:hover { background: var(--card); }
.icon-btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.whats-icon svg { fill: currentColor; stroke: none; }
.cart-count {
  position: absolute;
  top: 2px; right: 0;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  background: var(--red);
  color: #fff;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--ink); display: block; transition: .25s; }

/* ── Menú móvil ────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: calc(var(--header-h) + 38px) 0 0 0;
  background: #fff;
  z-index: 55;
  padding: 28px 26px;
  transform: translateX(-102%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .nav-link {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

/* ── Buscador ──────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 16, 16, .45);
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 0;
}
.search-overlay.open { display: flex; }
.search-box {
  background: #fff;
  border-radius: 16px;
  width: min(620px, 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  box-shadow: var(--shadow);
}
.search-box svg { width: 20px; height: 20px; fill: none; stroke: var(--muted); stroke-width: 2; flex: none; }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font: 500 16px 'Montserrat', sans-serif;
  padding: 14px 0;
}
.search-box button { font-size: 16px; color: var(--muted); padding: 8px; }

/* ── Hero ──────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #f8f5f0 0%, #f1ebe2 55%, #e9e0d2 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 30px;
  min-height: 66vh;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(42px, 6.2vw, 84px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-sub {
  margin: 22px 0 30px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 44ch;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 320px; }
.hero-blob {
  position: absolute;
  width: min(480px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
              conic-gradient(from 200deg, #f3c14b22, #e4372e18, #00954d14, #f3c14b22);
  filter: blur(2px);
}
.hero-glasses {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  transform: rotate(-7deg);
  animation: floaty 5.5s ease-in-out infinite;
  filter: drop-shadow(0 34px 28px rgba(16,16,16,.18));
}
@keyframes floaty {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-14px); }
}
.hero-glasses svg { width: 100%; height: auto; }

/* ── Botones ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 99px;
  border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { box-shadow: 0 10px 24px -8px rgba(16,16,16,.5); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { box-shadow: 0 10px 24px -8px rgba(0,0,0,.4); }
.btn-whats { background: var(--whats); color: #fff; }
.btn-whats:hover { background: #1fb858; box-shadow: 0 10px 24px -8px rgba(37,211,102,.6); }
.btn-block { width: 100%; }

/* ── Beneficios ────────────────────────── */
.benefits {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  text-align: center;
}
.benefit svg { width: 22px; height: 22px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ── Colección ─────────────────────────── */
.collection { max-width: 1280px; margin: 0 auto; padding: 64px 24px 30px; }
.collection-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.collection-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; }
.collection-head p { color: var(--muted); font-size: 13px; font-weight: 600; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip {
  padding: 10px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fff;
  transition: all .2s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 18px;
}

/* ── Tarjeta producto ──────────────────── */
.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media {
  position: relative;
  background: var(--card);
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-media svg { width: 82%; height: auto; transition: transform .35s ease; }
.card:hover .card-media svg { transform: scale(1.06) rotate(-2deg); }
.badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.badge {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
}
.badge.nuevo { background: var(--green); }
.badge.promo { background: var(--red); }
.badge.premium { background: var(--gold); }

.card-add {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  padding: 13px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all .25s ease;
}
.card:hover .card-add, .card-add:focus-visible { opacity: 1; transform: none; }
.card-add:hover { background: var(--green); }
.card-add.added { background: var(--green); }

.card-info { padding: 14px 6px 6px; }
.swatches { display: flex; gap: 7px; margin-bottom: 10px; }
.swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.12);
  padding: 0;
  transition: transform .15s;
}
.swatch:hover { transform: scale(1.2); }
.swatch.active { outline: 2px solid var(--ink); outline-offset: 2px; }
.card-name {
  font-size: 14.5px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: .01em;
}
.card-price { margin-top: 4px; font-size: 14px; font-weight: 800; }
.card-price .from { font-weight: 500; color: var(--muted); font-size: 12px; }

/* ── Tiles categorías ──────────────────── */
.tiles {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.tile {
  position: relative;
  border-radius: 20px;
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform .25s;
}
.tile:hover { transform: translateY(-4px); }
.tile-dark { background: linear-gradient(150deg, #1c1b19, #3a352d); color: #fff; }
.tile-light { background: linear-gradient(150deg, #efe9df, #ddd2bf); color: var(--ink); }
.tile-glasses {
  position: absolute;
  top: 6%; right: -4%;
  width: 62%;
  transform: rotate(-10deg);
  opacity: .96;
  transition: transform .4s ease;
}
.tile:hover .tile-glasses { transform: rotate(-6deg) scale(1.05); }
.tile-copy { position: relative; z-index: 2; }
.tile h3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; margin-bottom: 8px; }
.tile-cta { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* ── Banner promo ──────────────────────── */
.promo-banner {
  margin: 70px 0 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 76px 24px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before, .promo-banner::after {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  opacity: .14;
}
.promo-banner::before { background: var(--green); top: -170px; left: -110px; }
.promo-banner::after { background: var(--red); bottom: -170px; right: -110px; }
.promo-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f3c14b;
  margin-bottom: 14px;
}
.promo-banner h2 { font-size: clamp(34px, 5vw, 60px); font-weight: 800; margin-bottom: 14px; }
.promo-sub { color: #cfccc7; font-size: 16px; margin-bottom: 30px; }
.promo-banner .btn { position: relative; z-index: 2; }

/* ── Servicios ─────────────────────────── */
.services { max-width: 1280px; margin: 0 auto; padding: 80px 24px 40px; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 15px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service {
  background: var(--card);
  border-radius: 18px;
  padding: 28px 22px;
  transition: transform .2s, box-shadow .2s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.service p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ── Visítanos ─────────────────────────── */
.visit {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 90px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}
.visit-card {
  background: var(--card);
  border-radius: 20px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
.visit-card h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 24px; }
.visit-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.visit-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; font-weight: 500; }
.visit-list a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.visit-list svg { width: 22px; height: 22px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; margin-top: 1px; }
.visit-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.visit-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Footer ────────────────────────────── */
.footer { background: #111; color: #d8d5d0; }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.f-brand img { width: 74px; border-radius: 50%; margin-bottom: 16px; background: #fff; }
.f-brand p { font-size: 13.5px; line-height: 1.65; color: #a5a19b; max-width: 30ch; }
.f-social {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  margin-top: 16px;
  transition: background .2s;
}
.f-social:hover { background: #0866ff; }
.f-social svg { width: 20px; height: 20px; }
.footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid a { display: block; font-size: 14px; padding: 6px 0; color: #a5a19b; transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.f-addr { font-size: 14px; line-height: 1.7; color: #a5a19b; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid #262626;
  padding: 20px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #8a867f;
}
.footer-bottom a { color: #d8d5d0; text-decoration: underline; text-underline-offset: 3px; }

/* ── Carrito drawer ────────────────────── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16,16,16,.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #fff;
  z-index: 95;
  display: flex;
  flex-direction: column;
  transform: translateX(103%);
  transition: transform .3s ease;
  box-shadow: -20px 0 50px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 16px; font-weight: 800; }
.cart-head button { font-size: 18px; padding: 6px; color: var(--muted); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-empty { text-align: center; color: var(--muted); font-size: 14px; padding: 50px 10px; line-height: 1.6; }
.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.ci-thumb { background: var(--card); border-radius: 10px; padding: 6px; }
.ci-thumb svg { width: 100%; height: auto; }
.ci-name { font-size: 13.5px; font-weight: 700; text-transform: lowercase; }
.ci-price { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.ci-qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; border: 1.5px solid var(--line); border-radius: 99px; padding: 3px 10px; }
.ci-qty button { font-size: 15px; font-weight: 800; padding: 2px 4px; }
.ci-qty span { font-size: 13px; font-weight: 700; min-width: 14px; text-align: center; }
.ci-remove { color: var(--muted); font-size: 15px; padding: 6px; }
.ci-remove:hover { color: var(--red); }
.cart-foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}
.cart-total strong { font-size: 22px; font-weight: 800; }
.cart-note { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }

/* ── WhatsApp flotante ─────────────────── */
.whats-float {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 70;
  box-shadow: 0 12px 28px -6px rgba(37, 211, 102, .55);
  transition: transform .2s;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 30px; height: 30px; }

/* ── Toast ─────────────────────────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 99px;
  z-index: 120;
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive ────────────────────────── */
@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
}
@media (max-width: 900px) {
  .nav-left .nav-link { display: none; }
  .burger { display: flex; }
  .brand-name { font-size: 15px; }
  .hero-inner { grid-template-columns: 1fr; padding: 54px 24px 60px; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; min-height: 230px; }
  .hero-glasses { width: min(380px, 84%); }
  .tiles { grid-template-columns: 1fr; }
  .visit { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .card-add { opacity: 1; transform: none; padding: 11px; font-size: 10px; }
  .collection-head { flex-direction: column; gap: 4px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .ann-text { font-size: 10px; letter-spacing: .1em; }
}
