/* ITSHEAVEN — demo marketplace de moda (14-jul-2026)
   Colores de José: negro + gris + MOSTAZA de acento. Outfit + Inter.
   Última tecnología: View Transitions en el catálogo, carrito drawer con memoria. */

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-var.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --black: #0b0b0c;
  --black-2: #151517;
  --grey: #8a8a8f;
  --grey-soft: #c9c9cd;
  --must: #d9a514;
  --must-soft: #e8c258;
  --white: #f4f4f5;
  --line: rgba(244, 244, 245, .13);
  --disp: 'Outfit', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 74px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.64;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--must); color: var(--black); }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- tipografía ---------- */
.kicker {
  font-family: var(--disp); font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--must); font-weight: 600; margin-bottom: 16px;
}
h1, h2, h3 { font-family: var(--disp); font-weight: 700; line-height: 1.02; letter-spacing: -.025em; }
h2 { font-size: clamp(34px, 4.8vw, 60px); }
h1 em, h2 em { font-style: normal; color: var(--must-soft); }
h3 { font-size: 22px; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 4px;
  font-family: var(--disp); font-size: 14.5px; font-weight: 600; letter-spacing: .02em;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
  border: 0; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-must { background: var(--must); color: var(--black); }
.btn-must:hover { background: var(--white); }
.btn-line { border: 1px solid rgba(244, 244, 245, .3); color: var(--white); background: transparent; }
.btn-line:hover { border-color: var(--must); color: var(--must-soft); }
.btn-line-w { border: 1px solid rgba(244, 244, 245, .4); color: var(--white); background: transparent; }
.btn-line-w:hover { border-color: var(--must); color: var(--must-soft); }
.btn-lg { padding: 19px 38px; font-size: 15.5px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 30px;
  padding: 16px var(--pad);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.scrolled {
  background: rgba(11, 11, 12, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 11px; padding-bottom: 11px;
}
.nav-logo { font-family: var(--disp); font-size: 24px; font-weight: 800; letter-spacing: -.03em; margin-right: auto; }
.nav-logo em { font-style: normal; color: var(--must); }
.nav-links { display: flex; gap: 26px; font-family: var(--disp); font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--grey); padding: 4px 0; position: relative; transition: color .25s; }
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--must); transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cart {
  position: relative; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(244, 244, 245, .25); background: transparent; color: var(--white);
  cursor: pointer; transition: border-color .3s, color .3s;
}
.nav-cart:hover { border-color: var(--must); color: var(--must-soft); }
.nav-cart i {
  position: absolute; top: -4px; right: -4px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--must); color: var(--black); border-radius: 999px;
  font-style: normal; font-family: var(--disp); font-size: 11.5px; font-weight: 700;
}
.burger { display: none; }

/* menú móvil */
.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--black);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--pad);
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.menu.open { opacity: 1; pointer-events: auto; }
.menu-list li a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--disp); font-size: clamp(38px, 10vw, 56px); font-weight: 800; letter-spacing: -.03em; padding: 12px 0;
}
.menu-list small { font-size: 13px; color: var(--must); font-weight: 700; }
.menu-foot { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; color: var(--grey); }
.menu-foot a { color: var(--must-soft); font-weight: 600; }

/* ---------- carrito drawer ---------- */
.cart {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80;
  width: min(420px, 92vw);
  background: var(--black-2); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.cart.open { transform: none; }
.cart-veil {
  position: fixed; inset: 0; z-index: 79;
  background: rgba(11, 11, 12, .6); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .4s;
}
.cart-veil.open { opacity: 1; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 20px; }
.cart-head button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--white);
  font-size: 20px; cursor: pointer; transition: border-color .3s, color .3s;
}
.cart-head button:hover { border-color: var(--must); color: var(--must-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-empty { padding: 40px 0; text-align: center; color: var(--grey); font-size: 14.5px; }
.cart-item {
  display: grid; grid-template-columns: 62px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.cart-item img { width: 62px; height: 78px; object-fit: cover; border-radius: 4px; }
.cart-item h4 { font-family: var(--disp); font-size: 14.5px; font-weight: 600; }
.cart-item small { display: block; color: var(--grey); font-size: 12.5px; margin-top: 2px; }
.cart-item .ci-qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-item .ci-qty button {
  width: 24px; height: 24px; border-radius: 4px; border: 1px solid var(--line);
  background: transparent; color: var(--white); cursor: pointer; font-size: 14px; line-height: 1;
}
.cart-item .ci-qty button:hover { border-color: var(--must); }
.cart-item b { font-family: var(--disp); color: var(--must-soft); font-size: 15px; }
.cart-foot { padding: 20px 26px 24px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; }
.cart-total span { color: var(--grey); font-size: 14px; }
.cart-total b { font-family: var(--disp); font-size: 26px; color: var(--must-soft); }
.cart-foot small { color: var(--grey); font-size: 11.5px; text-align: center; }

/* toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 80px); z-index: 90;
  background: var(--must); color: var(--black);
  font-family: var(--disp); font-size: 14px; font-weight: 700;
  padding: 13px 22px; border-radius: 999px;
  opacity: 0; transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .4s;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 11, 12, .88) 10%, rgba(11, 11, 12, .3) 60%, rgba(217, 165, 20, .12) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 42%);
}
.hero-inner { position: relative; padding: 0 var(--pad) clamp(90px, 13vh, 130px); max-width: 900px; }
.hero-title { font-size: clamp(52px, 9vw, 128px); margin: 8px 0 24px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line i {
  display: block; font-style: normal;
  transform: translateY(108%);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .line:nth-child(2) i { animation-delay: .12s; }
@keyframes rise { to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-title .line i { animation: none; transform: none; } }
.hero-sub { max-width: 48ch; color: var(--grey-soft); font-size: 17.5px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 28px; width: max-content; align-items: center;
  padding: 13px 0; border-top: 1px solid var(--line);
  font-family: var(--disp); font-size: 13.5px; color: var(--grey); white-space: nowrap;
  animation: slide 24s linear infinite;
}
.hero-ticker i { color: var(--must); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-ticker { animation: none; } }

/* ---------- categorías ---------- */
.cats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.cat {
  padding: clamp(30px, 4vw, 50px) var(--pad);
  border-right: 1px solid var(--line);
  transition: background .3s;
  position: relative; overflow: hidden;
}
.cat:last-child { border-right: 0; }
.cat::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--must); transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.cat:hover { background: var(--black-2); }
.cat:hover::after { transform: none; }
.cat span { font-family: var(--disp); font-size: 12px; color: var(--must); font-weight: 700; }
.cat h3 { margin: 8px 0 4px; font-size: clamp(22px, 2.2vw, 30px); }
.cat p { font-size: 13px; color: var(--grey); }

/* ---------- grid de producto ---------- */
.drop { padding: clamp(70px, 11vh, 130px) var(--pad); }
.drop-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px); }
.pcard {
  background: var(--black-2); border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s;
  view-transition-class: card;
}
.pcard:hover { transform: translateY(-6px); border-color: rgba(217, 165, 20, .5); }
.pcard-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25); transition: filter .45s, transform .8s cubic-bezier(.2,.7,.2,1); }
.pcard:hover .pcard-media img { filter: none; transform: scale(1.04); }
.pcard-tag {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--disp); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--must); color: var(--black); padding: 4px 10px; border-radius: 3px;
}
.pcard-body { padding: 16px 18px 18px; }
.pcard-brand { font-family: var(--disp); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }
.pcard-body h3 { font-size: 17px; margin: 5px 0 2px; }
.pcard-line { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.pcard-line b { font-family: var(--disp); font-size: 18px; color: var(--must-soft); }
.pcard-add {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(244, 244, 245, .3); background: transparent; color: var(--white);
  font-size: 19px; line-height: 1; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.pcard-add:hover { background: var(--must); border-color: var(--must); color: var(--black); }

/* ---------- manifiesto ---------- */
.manifesto { min-height: 145vh; position: relative; background: var(--black-2); }
.manifesto-sticky {
  position: sticky; top: 0; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--pad);
}
.manifesto-text {
  max-width: 22ch;
  font-family: var(--disp); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(30px, 5.4vw, 64px); line-height: 1.1;
}
.manifesto-text .w { color: rgba(244, 244, 245, .15); transition: color .35s; }
.manifesto-text .w.lit { color: var(--white); }
.manifesto-text .w.lit:nth-child(4n) { color: var(--must-soft); }

/* ---------- how ---------- */
.how { padding: clamp(70px, 11vh, 130px) var(--pad); }
.how-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.hcard { border: 1px solid var(--line); border-radius: 6px; padding: 32px 30px; background: var(--black-2); }
.hcard span {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--must); color: var(--black); font-size: 20px; font-weight: 800;
  margin-bottom: 18px;
}
.hcard h3 { margin-bottom: 8px; }
.hcard p { font-size: 14.5px; color: var(--grey); }

/* ---------- CTA ---------- */
.cta {
  padding: clamp(80px, 13vh, 150px) var(--pad); text-align: center;
  background:
    radial-gradient(55% 85% at 50% 115%, rgba(217, 165, 20, .16), transparent 70%),
    var(--black-2);
  border-top: 1px solid var(--line);
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 34px 0 20px; }
.cta-note { font-size: 13.5px; color: var(--grey); }

/* ---------- footer ---------- */
.footer { padding: 64px var(--pad) 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(26px, 4vw, 60px); margin-bottom: 48px; }
.footer-logo { font-family: var(--disp); font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.footer-logo em { font-style: normal; color: var(--must); }
.footer-brand p { margin-top: 12px; font-size: 14px; color: var(--grey); max-width: 36ch; }
.footer-col h4 { font-family: var(--disp); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--must); margin-bottom: 14px; font-weight: 700; }
.footer-col li { font-size: 14.5px; color: var(--grey); padding: 4px 0; }
.footer-col a:hover { color: var(--must-soft); }
.footer-legal {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--grey);
}
.footer-legal a:hover { color: var(--must-soft); }

/* ---------- interiores ---------- */
.page-hero { padding: clamp(120px, 18vh, 170px) var(--pad) clamp(30px, 5vh, 50px); max-width: 980px; }
.page-hero h1 { font-size: clamp(40px, 6.6vw, 84px); margin: 6px 0 18px; }
.page-hero p { color: var(--grey); font-size: 17px; max-width: 54ch; }

/* tienda: filtros */
.shop { padding: 0 var(--pad) clamp(70px, 10vh, 110px); }
.filters {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  padding: 18px 0 26px;
  border-bottom: 1px solid var(--line); margin-bottom: 30px;
}
.chip {
  font-family: var(--disp); font-size: 13.5px; font-weight: 600;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(244, 244, 245, .25); background: transparent; color: var(--grey-soft);
  cursor: pointer; transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--must); color: var(--must-soft); }
.chip.on { background: var(--must); border-color: var(--must); color: var(--black); }
.filters select {
  margin-left: auto;
  font: 600 13.5px var(--disp); color: var(--white);
  background: var(--black-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; outline: none; cursor: pointer;
}
.shop-count { font-family: var(--disp); font-size: 13px; color: var(--grey); margin-bottom: 18px; }

/* producto */
.pdp { padding: 10px var(--pad) clamp(70px, 10vh, 110px); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 64px); align-items: start; }
.pdp-media { position: relative; border-radius: 6px; overflow: hidden; }
.pdp-media video, .pdp-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.pdp-info { position: sticky; top: 100px; }
.pdp-brand { font-family: var(--disp); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.pdp-info h1 { font-size: clamp(32px, 4vw, 52px); margin: 8px 0 10px; }
.pdp-price { font-family: var(--disp); font-size: 30px; color: var(--must-soft); margin-bottom: 18px; }
.pdp-desc { color: var(--grey-soft); font-size: 15.5px; max-width: 50ch; }
.pdp-sizes { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0; }
.size {
  min-width: 48px; padding: 11px 0; text-align: center;
  font-family: var(--disp); font-weight: 600; font-size: 14.5px;
  border: 1px solid rgba(244, 244, 245, .25); border-radius: 4px;
  background: transparent; color: var(--white); cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.size:hover { border-color: var(--must); }
.size.on { background: var(--must); border-color: var(--must); color: var(--black); }
.pdp-actions { display: grid; gap: 10px; margin-top: 8px; }
.pdp-meta { margin-top: 22px; display: grid; gap: 8px; font-size: 13.5px; color: var(--grey); }
.pdp-meta b { color: var(--grey-soft); font-weight: 600; }

/* vender */
.contact { padding: 10px var(--pad) clamp(70px, 10vh, 110px); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 60px); align-items: start; }
.cform { border: 1px solid var(--line); background: var(--black-2); border-radius: 8px; padding: clamp(28px, 4vw, 46px); display: grid; gap: 18px; }
.cform label { font-family: var(--disp); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); display: grid; gap: 8px; font-weight: 600; }
.cform input, .cform select, .cform textarea {
  font: 500 16px var(--sans); color: var(--white);
  background: var(--black); border: 1px solid var(--line); border-radius: 6px;
  padding: 13px 15px; outline: none; transition: border-color .3s; width: 100%;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--must); }
.cform select option { background: var(--black-2); }
.form-ok { text-align: center; padding: 40px 10px; }
.form-ok b { font-family: var(--disp); font-size: 26px; font-weight: 800; display: block; margin-bottom: 10px; color: var(--must-soft); }
.form-ok p { color: var(--grey); }
.cinfo { display: grid; gap: 16px; }
.cinfo-card { border: 1px solid var(--line); background: var(--black-2); border-radius: 8px; padding: 26px 28px; }
.cinfo-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--must-soft); }
.cinfo-card p { font-size: 14.5px; color: var(--grey); }

.legal-body { padding: 10px var(--pad) clamp(70px, 10vh, 110px); max-width: 760px; color: var(--grey); display: grid; gap: 16px; }
.legal-body h2 { font-size: 26px; margin-top: 18px; color: var(--white); }

/* ---------- View Transitions del catálogo ---------- */
::view-transition-group(*.card) { animation-duration: .45s; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: 1fr 1fr; }
  .cat:nth-child(2) { border-right: 0; }
  .cat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .how-grid { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-info { position: static; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger {
    display: block; position: relative;
    width: 44px; height: 44px; border: 1px solid rgba(244, 244, 245, .25); border-radius: 50%;
    background: transparent; cursor: pointer; z-index: 61;
  }
  .burger i {
    position: absolute; left: 50%; top: 50%;
    width: 17px; height: 2px; margin: -1px 0 0 -8.5px;
    background: var(--white);
    transition: transform .35s; display: block;
  }
  .burger i:first-child { transform: translateY(-3.5px); }
  .burger i:last-child { transform: translateY(3.5px); }
  .burger.active i:first-child { transform: rotate(45deg); }
  .burger.active i:last-child { transform: rotate(-45deg); }

  .contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filters select { margin-left: 0; width: 100%; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pcard-body { padding: 12px 13px 14px; }
  .pcard-body h3 { font-size: 14.5px; }
  .pcard-line b { font-size: 15.5px; }
  .cats, .footer-grid { grid-template-columns: 1fr; }
  .cat { border-right: 0; border-bottom: 1px solid var(--line); }
  /* pie compacto en móvil */
  .footer { padding: 40px var(--pad) 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; margin-bottom: 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 13px; }
  .footer-col h4 { margin-bottom: 8px; }
  .footer-col li { font-size: 13px; padding: 2.5px 0; }
  .footer-legal { flex-direction: column; gap: 6px; padding-top: 16px; font-size: 11.5px; }
}
