@font-face {
  font-family: "Dalat Sans";
  src: url("/assets/fonts/dalat-sans.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Antonio";
  src: url("/assets/fonts/antonio-light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Antonio";
  src: url("/assets/fonts/antonio-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Antonio";
  src: url("/assets/fonts/antonio-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Antonio";
  src: url("/assets/fonts/antonio-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Antonio";
  src: url("/assets/fonts/antonio-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Gopher Mono";
  src: url("/assets/fonts/gopher-mono-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gopher Mono";
  src: url("/assets/fonts/gopher-mono-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #010506;
  --paper: #fefef4;
  --cream: #f5f1e6;
  --pink: #e4ab98;
  --mint: #b6d5ce;
  --teal: #80b0aa;
  --yellow: #d5c65a;
  --orange: #f9a66c;
  --red: #ca564f;
  --green: #4a8c61;
  --olive: #6f6e58;
  --plum: #563348;
  --gray: #d8d8d8;
  --muted: #5f625f;
  --line: rgba(1, 5, 6, 0.22);
  --line-strong: #010506;
  --shadow: 8px 8px 0 rgba(1, 5, 6, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 100% 8%, rgba(182, 213, 206, 0.48), transparent 27rem),
    radial-gradient(circle at 0 82%, rgba(228, 171, 152, 0.32), transparent 24rem),
    var(--cream);
  color: var(--ink);
  font-family: "Antonio", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

button, input, select { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.5; }
button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.official-logo {
  width: 166px;
  aspect-ratio: 2.35 / 1;
  flex: 0 0 auto;
  background: url("/assets/brand/ursa-coffee-roasters.png") center / 110% auto no-repeat;
}

.auth-gate {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 17% 20%, var(--mint) 0 6.8rem, transparent 6.9rem),
    radial-gradient(circle at 82% 76%, var(--yellow) 0 5rem, transparent 5.1rem),
    linear-gradient(118deg, var(--pink) 0 54%, var(--cream) 54% 100%);
}

.auth-card {
  width: min(520px, 100%);
  padding: clamp(32px, 6vw, 56px);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(254, 254, 244, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-card::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  right: -39px;
  top: 42px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 0;
}

.auth-card > * { position: relative; z-index: 1; }
.auth-brand { width: 232px; margin: 0 auto 34px; }
.auth-card h1 {
  margin: 11px 0 16px;
  font-family: "Dalat Sans", "Antonio", sans-serif;
  font-size: clamp(39px, 8vw, 59px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.auth-card > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0;
  color: var(--plum);
  font-family: "Gopher Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.google-button {
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.google-button:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 var(--pink); }
.google-g { color: var(--orange); font: 700 20px/1 Arial, sans-serif; }
.auth-footnote { margin-top: 18px !important; font-family: "Gopher Mono", monospace; font-size: 10px !important; }
.pending-panel { margin-top: 23px; padding: 18px; border: 1px solid var(--ink); border-radius: var(--radius-md); background: var(--mint); text-align: left; }
.pending-panel p { margin: 5px 0 10px; color: var(--ink); line-height: 1.45; }
.pending-panel span { display: block; overflow-wrap: anywhere; font-family: "Gopher Mono", monospace; font-size: 11px; }
.pending-panel button { margin: 10px 0 -7px -10px; }

.topbar {
  min-height: 86px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(245, 241, 230, 0.94);
  border-bottom: 1.5px solid var(--ink);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-logo { width: 154px; }
.session-fields { display: flex; align-items: center; gap: 11px; position: relative; }
.session-fields label, .select-field { display: grid; gap: 4px; }
.session-fields label > span, .select-field > span, .team-member label > span {
  color: var(--muted);
  font-family: "Gopher Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-fields select, .select-field select {
  height: 42px;
  padding: 0 36px 0 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}

.user-button {
  min-height: 50px;
  padding: 4px 13px 4px 5px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
}

.user-button img, .team-member > img {
  width: 40px;
  height: 40px;
  padding: 2px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--pink);
}

.user-button span { display: grid; max-width: 180px; }
.user-button strong, .user-button small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-button small { margin-top: 2px; color: var(--muted); font-family: "Gopher Mono", monospace; font-size: 8px; text-transform: uppercase; }
.user-menu { position: absolute; right: 0; top: calc(100% + 10px); width: min(280px, calc(100vw - 32px)); padding: 14px; border: 1.5px solid var(--ink); border-radius: var(--radius-md); background: var(--paper); box-shadow: 5px 5px 0 rgba(1, 5, 6, 0.15); z-index: 20; }
.user-menu span { display: block; padding: 2px 4px 10px; color: var(--muted); font-family: "Gopher Mono", monospace; font-size: 10px; overflow-wrap: anywhere; }
.user-menu button { width: 100%; min-height: 38px; border: 1px solid var(--ink); border-radius: 999px; background: var(--cream); color: var(--ink); font-weight: 600; }
.connection-banner { padding: 10px 18px; border-bottom: 1px solid var(--ink); background: var(--yellow); color: var(--ink); text-align: center; font-family: "Gopher Mono", monospace; font-size: 10px; }

.app-shell { width: min(1160px, calc(100% - 36px)); margin: 0 auto; padding: 42px 0 72px; }
.hero {
  min-height: 240px;
  padding: clamp(29px, 5vw, 54px);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--pink);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; }
.hero::before { width: 235px; height: 235px; right: -80px; top: -105px; background: var(--mint); border: 1px solid var(--ink); }
.hero::after { width: 118px; height: 118px; right: 105px; bottom: -74px; background: var(--yellow); border: 1px solid var(--ink); }
.hero > * { position: relative; z-index: 1; }
.hero h1 { max-width: 680px; margin: 8px 0 11px; font-family: "Dalat Sans", "Antonio", sans-serif; font-size: clamp(39px, 6vw, 69px); font-weight: 400; line-height: 0.92; letter-spacing: -0.025em; }
.hero p { max-width: 610px; margin: 0; color: rgba(1, 5, 6, 0.69); font-size: 17px; line-height: 1.5; }
.hero .eyebrow { color: var(--plum); }

.primary-button, .secondary-button, .ghost-button, .danger-button, .quick-move {
  min-height: 45px;
  padding: 0 19px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.primary-button { background: var(--ink); color: var(--paper); }
.secondary-button { background: var(--paper); color: var(--ink); }
.ghost-button { border-color: transparent; background: transparent; color: var(--ink); }
.danger-button { background: var(--red); color: var(--ink); }
.primary-button:hover, .secondary-button:hover, .danger-button:hover { transform: translateY(-2px); box-shadow: 3px 3px 0 rgba(1, 5, 6, 0.2); }
.hero .primary-button { min-width: 218px; background: var(--paper); color: var(--ink); }

.view-tabs { display: flex; gap: 0; margin: 28px 0; width: fit-content; border: 1.5px solid var(--ink); border-radius: 999px; overflow: hidden; background: var(--paper); }
.tab { min-height: 42px; padding: 0 21px; border: 0; border-right: 1px solid var(--ink); background: transparent; color: var(--ink); font-weight: 600; }
.tab:last-child { border-right: 0; }
.tab.active { background: var(--ink); color: var(--paper); }
.view { display: none; }
.view.active { display: block; animation: fade-in 180ms ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(4px); } }

.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.summary-card { min-height: 118px; padding: 21px; border: 1.5px solid var(--ink); border-radius: var(--radius-lg); display: flex; align-items: center; gap: 18px; }
.accent-green { background: var(--mint); }
.accent-amber { background: var(--yellow); }
.accent-cream { background: var(--paper); }
.summary-icon { width: 49px; height: 49px; display: grid; place-items: center; border: 1.5px solid var(--ink); border-radius: 50%; background: var(--paper); font-family: "Gopher Mono", monospace; font-size: 18px; }
.summary-card div { display: grid; gap: 4px; }
.summary-card small { font-family: "Gopher Mono", monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; }
.summary-card strong { font-family: "Gopher Mono", monospace; font-size: 30px; font-weight: 500; line-height: 1; }

.section-heading { margin: 40px 0 19px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.section-heading h2 { margin: 5px 0 0; font-family: "Dalat Sans", "Antonio", sans-serif; font-size: clamp(32px, 4vw, 46px); font-weight: 400; line-height: 0.98; letter-spacing: -0.02em; }
.heading-actions { display: flex; gap: 9px; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.search-field { min-width: 280px; height: 46px; padding: 0 15px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--ink); border-radius: 999px; background: var(--paper); color: var(--muted); }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { min-height: 38px; padding: 0 15px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); font-weight: 500; }
.chip.active { background: var(--mint); }

.alert-stack { display: grid; gap: 9px; margin-bottom: 14px; }
.stock-alert { padding: 13px 16px; border: 1.5px solid var(--ink); border-radius: var(--radius-md); background: var(--orange); color: var(--ink); display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.stock-alert strong { font-family: "Gopher Mono", monospace; font-size: 10px; }

.inventory-list { border: 1.5px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); }
.inventory-item { min-height: 96px; padding: 18px 20px; display: grid; grid-template-columns: minmax(260px, 1fr) 150px auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--ink); }
.inventory-item:last-child { border-bottom: 0; }
.inventory-item:hover { background: rgba(182, 213, 206, 0.22); }
.item-main { min-width: 0; display: flex; align-items: center; gap: 15px; }
.area-dot { flex: 0 0 auto; width: 13px; height: 13px; border: 1px solid var(--ink); border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(74, 140, 97, 0.16); }
.area-dot.pasteleria { background: var(--pink); box-shadow: 0 0 0 5px rgba(228, 171, 152, 0.23); }
.area-dot.general { background: var(--blue); box-shadow: 0 0 0 5px rgba(74, 156, 193, 0.18); }
.item-copy { min-width: 0; }
.item-title-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.item-title-row h3 { margin: 0; font-family: "Dalat Sans", "Antonio", sans-serif; font-size: 18px; font-weight: 400; }
.item-meta { margin: 5px 0 0; color: var(--muted); font-family: "Gopher Mono", monospace; font-size: 9px; }
.status-pill { padding: 4px 9px; border: 1px solid var(--ink); border-radius: 999px; background: var(--mint); color: var(--ink); font-family: "Gopher Mono", monospace; font-size: 8px; text-transform: uppercase; }
.status-pill.low { background: var(--orange); }
.stock-display { text-align: right; }
.stock-display strong { font-family: "Gopher Mono", monospace; font-size: 26px; font-weight: 500; line-height: 1; }
.stock-display span { margin-left: 4px; color: var(--muted); font-family: "Gopher Mono", monospace; font-size: 9px; }
.item-actions { display: flex; align-items: center; gap: 6px; }
.quick-move { min-height: 38px; padding: 0 13px; background: var(--ink); color: var(--paper); font-size: 12px; }
.icon-button { width: 39px; height: 39px; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); color: var(--ink); display: grid; place-items: center; font-size: 18px; }
.icon-button:hover { background: var(--mint); }
.archive-item:hover { background: var(--red); }

.empty-state { padding: 58px 20px; border: 1.5px dashed var(--ink); border-radius: var(--radius-lg); text-align: center; color: var(--muted); }
.empty-state > span { display: block; margin-bottom: 10px; font-size: 30px; }
.empty-state h3 { margin: 0 0 7px; color: var(--ink); font-family: "Dalat Sans", "Antonio", sans-serif; font-size: 25px; font-weight: 400; }
.empty-state p { margin: 0; }

.history-toolbar { justify-content: flex-start; }
.table-wrap { overflow-x: auto; border: 1.5px solid var(--ink); border-radius: var(--radius-lg); background: var(--paper); }
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--ink); }
th { background: var(--mint); color: var(--ink); font-family: "Gopher Mono", monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; }
tbody tr:last-child td { border-bottom: 0; }
td { font-size: 15px; }
.movement-badge { display: inline-flex; padding: 5px 9px; border: 1px solid var(--ink); border-radius: 999px; font-family: "Gopher Mono", monospace; font-size: 8px; text-transform: uppercase; }
.movement-badge.compra { background: var(--mint); }
.movement-badge.consumo { background: var(--cream); }
.movement-badge.merma { background: var(--orange); }
.movement-badge.conteo { background: var(--blue); }
.quantity-positive, .quantity-negative { font-family: "Gopher Mono", monospace; font-size: 11px; }
.quantity-positive { color: #29663d; }
.quantity-negative { color: #9e312d; }

.team-note { margin-bottom: 18px; padding: 18px 21px; border: 1.5px solid var(--ink); border-radius: var(--radius-md); background: var(--mint); color: var(--ink); }
.team-note p { display: inline; margin: 0 0 0 8px; color: rgba(1, 5, 6, 0.66); }
.team-list { display: grid; gap: 10px; }
.team-member { padding: 16px; display: grid; grid-template-columns: auto minmax(180px, 1fr) 160px 140px auto; align-items: center; gap: 14px; border: 1.5px solid var(--ink); border-radius: var(--radius-md); background: var(--paper); }
.member-copy { min-width: 0; }
.member-copy h3 { margin: 0; font-family: "Dalat Sans", "Antonio", sans-serif; font-size: 18px; font-weight: 400; }
.member-copy p { margin: 4px 0 7px; color: var(--muted); font-family: "Gopher Mono", monospace; font-size: 9px; overflow-wrap: anywhere; }
.access-status { display: inline-flex; padding: 4px 8px; border: 1px solid var(--ink); border-radius: 999px; background: var(--orange); font-family: "Gopher Mono", monospace; font-size: 8px; text-transform: uppercase; }
.access-status.active { background: var(--mint); }
.team-member label { display: grid; gap: 5px; }
.team-member select { height: 42px; padding: 0 10px; border: 1px solid var(--ink); border-radius: 999px; background: var(--paper); color: var(--ink); }
.team-member .active-control { display: flex; align-items: center; gap: 8px; }
.active-control input { width: 18px; height: 18px; accent-color: var(--green); }
.save-member { min-height: 42px; }

.modal { width: min(610px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 0; border: 1.5px solid var(--ink); border-radius: var(--radius-lg); background: var(--cream); color: var(--ink); box-shadow: 9px 9px 0 rgba(1, 5, 6, 0.32); overflow-y: auto; }
.modal::backdrop { background: rgba(1, 5, 6, 0.57); backdrop-filter: blur(4px); }
.modal form, .compact-modal { padding: 27px; }
.modal-header { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.modal-header h2 { margin: 5px 0 0; font-family: "Dalat Sans", "Antonio", sans-serif; font-size: 35px; font-weight: 400; line-height: 0.98; }
.form-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 7px; color: var(--muted); font-family: "Gopher Mono", monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-grid label.full-field { grid-column: 1 / -1; }
.form-grid input, .form-grid select { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--ink); border-radius: 999px; background: var(--paper); color: var(--ink); font-family: "Antonio", sans-serif; font-size: 16px; text-transform: none; }
.form-hint { margin: 13px 0 0; color: var(--muted); font-family: "Gopher Mono", monospace; font-size: 9px; line-height: 1.5; }
.modal-actions { margin-top: 25px; display: flex; justify-content: flex-end; gap: 9px; }
.compact-modal > p { color: var(--muted); line-height: 1.55; }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 50; transform: translate(-50%, 24px); max-width: calc(100% - 32px); padding: 13px 18px; border: 1.5px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--paper); font-family: "Gopher Mono", monospace; font-size: 10px; text-align: center; box-shadow: 4px 4px 0 var(--pink); opacity: 0; pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.visible { opacity: 1; transform: translate(-50%, 0); }
.toast.error { background: var(--red); color: var(--ink); }
.button-loading { opacity: 0.66; pointer-events: none; }

@media (max-width: 900px) {
  .topbar { position: static; align-items: flex-start; }
  .session-fields { align-items: stretch; }
  .hero { align-items: flex-start; flex-direction: column; }
  .hero .primary-button { min-width: 0; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-card { min-height: 92px; }
  .toolbar { align-items: stretch; flex-direction: column; }
  .search-field { min-width: 0; width: 100%; }
  .inventory-item { grid-template-columns: minmax(0, 1fr) auto; }
  .item-actions { grid-column: 1 / -1; padding-left: 28px; }
  .team-member { grid-template-columns: auto 1fr; }
  .team-member label, .team-member .save-member { grid-column: 2; }
}

@media (max-width: 620px) {
  .auth-gate { padding: 20px; background: linear-gradient(160deg, var(--pink), var(--cream)); }
  .auth-card { padding: 32px 25px; box-shadow: 5px 5px 0 rgba(1, 5, 6, 0.12); }
  .auth-brand { width: 205px; margin-bottom: 29px; }
  .auth-card h1 { font-size: 45px; }
  .topbar { padding: 10px 15px 15px; flex-direction: column; }
  .topbar-logo { width: 145px; margin-left: 2px; }
  .session-fields { width: 100%; display: grid; grid-template-columns: 112px minmax(0, 1fr); }
  .user-button { width: 100%; }
  .user-menu { top: 100%; }
  .app-shell { width: min(100% - 24px, 1160px); padding-top: 18px; }
  .hero { min-height: 0; padding: 29px 23px; }
  .hero h1 { font-size: 49px; }
  .hero p { font-size: 16px; }
  .hero .primary-button { width: 100%; }
  .view-tabs { width: 100%; }
  .tab { flex: 1; padding-inline: 8px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-top: 31px; }
  .heading-actions { width: 100%; flex-direction: column; }
  .section-heading .secondary-button { width: 100%; }
  .inventory-item { padding: 17px; gap: 12px; }
  .stock-display strong { font-size: 22px; }
  .item-actions { padding-left: 0; }
  .quick-move { flex: 1; }
  .stock-alert { flex-direction: column; gap: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full-field { grid-column: auto; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions button { width: 100%; }
  .team-note p { display: block; margin: 7px 0 0; }
  .team-member { grid-template-columns: auto minmax(0, 1fr); }
}

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