:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #fffbf2;
  --text: #17201b;
  --muted: #66756d;
  --line: #e7dfd2;
  --navy: #10231d;
  --gold: #d6a84f;
  --gold-soft: #f5ead3;
  --coral: #d85b3f;
  --green: #16875f;
  --red: #c2413a;
  --blue: #315f72;
  --radius: 10px;
  --shadow: 0 14px 36px rgba(28, 37, 33, .10);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% -10%, rgba(214,168,79,.18), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(49,95,114,.10), transparent 28rem),
    var(--bg);
  color: var(--text);
}

.platform-notice {
  padding: 10px 16px;
  color: #08233f;
  background: #f7b500;
  text-align: center;
  font-weight: 900;
}

.maintenance-shell {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: calc(100vh - 92px);
  padding: 32px;
  text-align: center;
}

.maintenance-shell img {
  width: 78px;
  height: 78px;
  border-radius: 8px;
}

.maintenance-shell p {
  margin: 18px 0 8px;
  color: #946200;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.maintenance-shell h1 {
  max-width: 760px;
  margin: 0;
  color: #08233f;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1;
}

.maintenance-shell span {
  max-width: 620px;
  margin-top: 16px;
  color: #657386;
  line-height: 1.6;
}

button.brand {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 0;
}
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(16, 35, 29, .96);
  border-bottom: 1px solid rgba(214,168,79,.18);
  box-shadow: 0 10px 30px rgba(16,35,29,.12);
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--gold);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.brand strong { display: block; line-height: 1; color: #fffaf0; }
.brand small { display: block; color: #d8c6a2; margin-top: 4px; }
.top-actions { display: flex; align-items: center; gap: 8px; }
.panel-link,
.primary,
.secondary,
.danger {
  border: 0;
  border-radius: 8px;
  padding: 11px 14px;
  text-decoration: none;
  font-weight: 800;
}
.panel-link,
.secondary { color: var(--navy); background: rgba(255,255,255,.9); border: 1px solid rgba(214,168,79,.24); }
.panel-link.quiet { opacity: .82; }
.top-actions .panel-link {
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
}
.primary { color: #fff; background: linear-gradient(135deg, var(--coral), #b9432e); border: 1px solid rgba(130,42,27,.18); box-shadow: 0 8px 18px rgba(216,91,63,.18); }
.danger { color: #fff; background: var(--red); border: 1px solid rgba(0,0,0,.08); }

.app-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 26px 0 80px; }
.hero { margin: 14px 0 16px; }
.hero-card,
.card,
.cart,
.filters,
.product-card,
.store-card,
.mode-tabs {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: clamp(24px, 4vw, 46px); position: relative; overflow: hidden; border-left: 6px solid var(--gold); background: linear-gradient(135deg, #fff, #fffaf1); }
.eyebrow { color: #9a6a1f; font-weight: 950; letter-spacing: .05em; text-transform: uppercase; font-size: 12px; }
h1 { max-width: 820px; font-size: clamp(30px, 5vw, 52px); line-height: 1.02; margin: 10px 0 14px; letter-spacing: 0; }
p { color: var(--muted); line-height: 1.58; }

.mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  margin-bottom: 14px;
}
.mode-tabs button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #444;
  padding: 13px 16px;
  font-weight: 900;
}
.mode-tabs button.active { background: var(--navy); color: #fffaf0; box-shadow: inset 0 0 0 1px rgba(214,168,79,.22); }

.filters { padding: 14px; display: grid; gap: 14px; margin-bottom: 22px; }
.steps { display: flex; gap: 8px; flex-wrap: wrap; }
.steps span { color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; font-size: 13px; font-weight: 850; background: #fff; }
.steps span.active { color: var(--navy); background: var(--gold-soft); border-color: #e2bf77; }
.filter-step { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; align-items: end; }
.filter-step label { color: var(--muted); font-size: 13px; display: grid; gap: 7px; }
.optional { opacity: .72; font-weight: 500; }
.input, .select, textarea {
  width: 100%;
  color: var(--text);
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 12px 13px;
  outline: none;
}
.input:focus, .select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(52,131,250,.12); }

.section-title { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin: 24px 0 14px; }
.section-title h2 { margin: 0; font-size: clamp(24px, 4vw, 34px); letter-spacing: 0; }
.section-title p { margin: 0; }
.grid-stores { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.store-card { overflow: hidden; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
.store-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15, 23, 42, .14); }
.store-cover { height: 96px; background: linear-gradient(135deg, var(--navy), var(--gold)); overflow: hidden; }
.store-cover img { width: 100%; height: 100%; object-fit: cover; }
.service-cover { background: linear-gradient(135deg, var(--navy), var(--coral)); }
.store-body { padding: 14px; }
.store-logo-row { display: flex; gap: 12px; align-items: center; margin-top: -40px; }
.logo-img, .service-avatar {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 3px solid #fff;
  object-fit: cover;
  background: #fff;
}
.service-avatar { display: grid; place-items: center; background: linear-gradient(135deg, var(--coral), var(--gold)); color: #fff; font-weight: 950; margin-top: -40px; }
.store-body h3 { margin: 10px 0 4px; font-size: 18px; letter-spacing: 0; }
.meta { color: var(--muted); font-size: 13px; }
.niche-strip { margin-top: 10px; color: #6f4b18; background: var(--gold-soft); border: 1px solid #ead3a8; border-radius: 8px; padding: 8px; font-size: 12px; font-weight: 800; }
.hero-niche { display: inline-flex; margin-top: 8px; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; border-radius: 999px; font-size: 12px; font-weight: 900; margin-top: 10px; }
.badge.open { background: rgba(0,166,80,.12); color: var(--green); border: 1px solid rgba(0,166,80,.22); }
.badge.closed { background: rgba(229,57,53,.1); color: var(--red); border: 1px solid rgba(229,57,53,.2); }

.store-hero {
  min-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #111827;
  box-shadow: var(--shadow);
}
.store-hero.food { background: #4b1f16; }
.store-hero.sweet { background: #6b2848; }
.store-hero.market { background: #174a34; }
.store-hero.fashion { background: #30244d; }
.store-hero.retail { background: #172f4a; }
.store-rules {
  max-width: 760px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  color: var(--navy) !important;
  font-size: .88rem;
  font-weight: 800;
}
.store-hero img.cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.store-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 78%); }
.store-hero-content { position: relative; z-index: 2; display: flex; align-items: end; gap: 18px; padding: clamp(20px, 4vw, 34px); color: #fff; }
.store-hero .logo-img { width: 92px; height: 92px; border-radius: 10px; }
.store-hero h1 { margin: 6px 0; font-size: clamp(32px, 6vw, 56px); }
.store-hero p { color: rgba(255,255,255,.86); margin: 6px 0; }
.notice { margin: 18px 0; padding: 16px; border-radius: 8px; background: #fff; border: 1px solid var(--line); color: var(--text); }
.notice.danger { background: #fff1f1; border-color: #ffc9c9; color: #b42318; }
.notice.warning { background: #fff8db; border-color: #ffe08a; color: #7a4b00; }

.store-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 20px; margin-top: 24px; align-items: start; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.product-card { padding: 14px; display: grid; grid-template-columns: 116px minmax(0, 1fr); gap: 14px; box-shadow: none; }
.product-card img { width: 116px; height: 116px; object-fit: cover; border-radius: 8px; background: #f2f4f7; }
.product-card h3 { margin: 0 0 6px; letter-spacing: 0; }
.addition-list { display: grid; gap: 6px; margin-top: 10px; padding: 9px; border: 1px solid var(--line); border-radius: 8px; background: #fffaf1; }
.addition-list strong { font-size: 12px; color: var(--navy); }
.addition-list label { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }
.price { color: #111827; font-weight: 950; font-size: 21px; margin: 10px 0; }
.cart { position: sticky; top: 86px; padding: 18px; }
.cart h2 { margin: 0 0 14px; }
.cart-empty { color: var(--muted); padding: 18px; border: 1px dashed var(--line); border-radius: 8px; text-align: center; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.qty { display: inline-flex; align-items: center; gap: 6px; background: #f2f4f7; border-radius: 999px; padding: 4px; }
.qty button { width: 28px; height: 28px; border: 0; border-radius: 50%; background: #fff; color: #111827; }
.total-row { display: flex; justify-content: space-between; font-size: 20px; font-weight: 950; margin: 18px 0; }
.form-stack { display: grid; gap: 10px; }
.form-stack label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.hidden { display: none !important; }
.full { width: 100%; text-align: center; display: inline-flex; justify-content: center; }
.back-btn { margin-bottom: 16px; }
.toast { position: fixed; right: 18px; bottom: 18px; max-width: 360px; padding: 14px 16px; border-radius: 8px; background: #111827; color: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(140%); transition: transform .2s ease; z-index: 100; }
.toast.show { transform: translateY(0); }
.empty-state { padding: 30px; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; background: #fff; }
.legal-page { display: grid; gap: 14px; }
.legal-page h1 { margin-bottom: 0; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px; padding: 8px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.legal-nav button { border: 0; border-radius: 8px; padding: 11px 14px; background: transparent; font-weight: 900; color: var(--muted); }
.legal-nav button.active { background: var(--navy); color: #fffaf0; }
.legal-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.legal-section h2 { margin: 0 0 8px; font-size: 20px; }
.legal-section p { margin: 0; }
.legal-footer { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.legal-footer a { color: var(--navy); font-weight: 800; text-decoration: none; }

/* CidadePlus premium visual layer */
:root {
  --bg: #f8faf7;
  --surface: #ffffff;
  --surface-2: #fff9e8;
  --text: #081b32;
  --muted: #647083;
  --line: #e6e1d4;
  --navy: #071d36;
  --navy-2: #102b4a;
  --gold: #ffbd00;
  --gold-2: #f59f00;
  --gold-soft: #fff3c4;
  --coral: #e95f35;
  --green: #16875f;
  --blue: #315f72;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(7, 29, 54, .12);
  --shadow-soft: 0 10px 28px rgba(7, 29, 54, .08);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf7 42%, #f3f0e8 100%);
}

.topbar {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(7, 29, 54, .98), rgba(15, 43, 74, .96));
  border-bottom: 1px solid rgba(255, 189, 0, .28);
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
}

.brand strong { font-size: 18px; }
.brand small { color: #ffe6a0; }

.panel-link,
.secondary {
  background: rgba(255,255,255,.96);
  border-color: rgba(255,189,0,.32);
  box-shadow: 0 8px 20px rgba(7,29,54,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.panel-link:hover,
.secondary:hover,
.primary:hover {
  transform: translateY(-1px);
}

.primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  border: 1px solid rgba(126, 82, 0, .18);
  box-shadow: 0 14px 28px rgba(245,159,0,.22);
}

.primary::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -70%;
  width: 46%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  animation: buttonSheen 4.8s ease-in-out infinite;
}

.hero { margin: 20px 0 18px; }

.hero-card {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 5vw, 58px);
  border-left: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,249,232,.95)),
    linear-gradient(135deg, rgba(255,189,0,.26), transparent);
  box-shadow: 0 24px 70px rgba(7,29,54,.14);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,189,0,.70), rgba(7,29,54,.18), rgba(255,255,255,.56));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  color: var(--navy);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .92;
  margin: 12px 0 16px;
}

.hero-copy p {
  max-width: 560px;
  color: #4d5b6d;
  font-size: clamp(16px, 2vw, 20px);
}

.eyebrow {
  color: #8a5a00;
  letter-spacing: .08em;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pills button {
  border: 1px solid rgba(255,189,0,.52);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.hero-pills button:hover,
.hero-pills button:focus-visible {
  background: linear-gradient(135deg, #fff9df, #fff);
  border-color: rgba(255,189,0,.88);
  box-shadow: 0 14px 34px rgba(7,29,54,.14);
  transform: translateY(-2px);
  outline: none;
}

.hero-pills button:active {
  transform: translateY(0);
}

.hero-brand-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(7,29,54,.05), rgba(255,189,0,.12));
  border: 1px solid rgba(255,189,0,.26);
}

.hero-brand-panel img {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(7,29,54,.18));
  animation: brandFloat 6s ease-in-out infinite;
}

.mode-tabs {
  border-radius: 16px;
  padding: 7px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-color: rgba(255,189,0,.24);
}

.mode-tabs button {
  color: #4b5565;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.mode-tabs button:hover {
  background: #fff7da;
  color: var(--navy);
}

.mode-tabs button.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff6d6;
  box-shadow: 0 12px 24px rgba(7,29,54,.18), inset 0 0 0 1px rgba(255,189,0,.25);
}

.filters {
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border-color: rgba(7,29,54,.08);
}

.steps span {
  border-color: rgba(7,29,54,.08);
  background: #fff;
}

.steps span.active {
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border-color: rgba(255,189,0,.65);
  box-shadow: 0 8px 18px rgba(245,159,0,.12);
}

.input,
.select,
textarea {
  border-color: #d9deea;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.input:focus,
.select:focus,
textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(255,189,0,.18);
}

.section-title {
  margin-top: 30px;
}

.section-title h2 {
  color: var(--navy);
}

.store-card,
.product-card,
.cart,
.card {
  border-color: rgba(7,29,54,.08);
  box-shadow: var(--shadow-soft);
}

.store-card {
  border-radius: 16px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,189,0,.52);
  box-shadow: 0 24px 52px rgba(7,29,54,.16);
}

.store-cover {
  height: 112px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}

.store-body {
  padding: 16px;
}

.logo-img,
.service-avatar {
  border-radius: 12px;
  border-color: #fff;
  box-shadow: 0 10px 24px rgba(7,29,54,.14);
}

.service-avatar {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: var(--navy);
}

.niche-strip {
  background: linear-gradient(135deg, #fff4c9, #fffaf0);
  border-color: rgba(255,189,0,.45);
  color: #77510b;
}

.badge {
  border-radius: 999px;
}

.store-hero {
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(7,29,54,.16);
}

.store-layout {
  gap: 24px;
}

.product-card {
  border-radius: 16px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,189,0,.45);
  box-shadow: 0 18px 40px rgba(7,29,54,.12);
}

.cart {
  border-radius: 16px;
  border-color: rgba(255,189,0,.22);
}

.legal-footer {
  color: var(--muted);
}

.hero,
.mode-tabs,
.filters,
.section-title,
.grid-stores,
.empty-state,
.store-layout,
.legal-page {
  animation: pageReveal .46s cubic-bezier(.2, .72, .22, 1) both;
}

.mode-tabs { animation-delay: .04s; }
.filters { animation-delay: .08s; }
.section-title { animation-delay: .11s; }
.grid-stores,
.empty-state,
.store-layout,
.legal-page { animation-delay: .14s; }

.grid-stores > * {
  animation: cardRise .42s cubic-bezier(.2, .72, .22, 1) both;
}

.grid-stores > *:nth-child(2) { animation-delay: .04s; }
.grid-stores > *:nth-child(3) { animation-delay: .08s; }
.grid-stores > *:nth-child(4) { animation-delay: .12s; }
.grid-stores > *:nth-child(n+5) { animation-delay: .16s; }

@keyframes brandFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes buttonSheen {
  0%, 62% { left: -70%; }
  100% { left: 125%; }
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(-18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 920px) {
  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-brand-panel {
    min-height: 220px;
  }
  .store-layout { grid-template-columns: 1fr; }
  .grid-stores { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-step { grid-template-columns: 1fr; }
  .legal-sections { grid-template-columns: 1fr; }
  .cart { position: static; }
}
@media (max-width: 640px) {
  .topbar { padding: 12px 16px; }
  .brand small { display: none; }
  .top-actions { gap: 4px; }
  .top-actions .panel-link { padding: 7px 8px; font-size: .72rem; }
  .top-actions .panel-link:first-child,
  .top-actions .panel-link:last-child { display: none; }
  .brand-mark { width: 44px; height: 44px; }
  .hero-card { padding: 22px; border-radius: 16px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-brand-panel { min-height: 170px; }
  .mode-tabs { grid-template-columns: 1fr; }
  .grid-stores, .product-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 96px 1fr; }
  .product-card img { width: 96px; height: 96px; }
}
