/* ===========================================
   Livo — Header Styles
   Synced with Figma Make mockup
=========================================== */

.livo-hdr {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.livo-hdr-top {
  max-width: var(--livo-max-w, 1440px);
  margin: 0 auto;
  padding: 12px var(--livo-px, 24px);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── Logo ── */
.livo-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 8px;
  user-select: none;
}

.livo-logo-mark {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
  line-height: 1;
}

.livo-logo-i {
  position: relative;
  display: inline-block;
}

.livo-tagline {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #999;
  letter-spacing: .3px;
  margin-top: 1px;
  line-height: 1;
  white-space: nowrap;
}

.livo-logo-dot {
  position: absolute;
  top: 0px;
  left: calc(50% + 2px);
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: var(--livo-accent, #FF4A00);
  border-radius: 50%;
  display: block;
  z-index: 1;
}

/* Footer logo is 36px — dot proportionally larger */
.livo-footer-logo .livo-logo-dot {
  width: 9px;
  height: 9px;
  top: 0px;
  left: calc(50% + 2px);
}

/* ── Search ── */
.livo-srch {
  flex: 1;
  min-width: 0;
}

.livo-srch-box {
  display: flex;
  align-items: stretch;
  border: 2px solid #1A1A1A;
  border-radius: var(--livo-radius-lg, 16px);
  overflow: hidden;
  height: 46px;
  transition: border-color .15s;
}

.livo-srch-box:focus-within {
  border-color: #1A1A1A;
}

.livo-srch-cat {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-right: 1px solid #e8e8e8;
  padding: 0 10px 0 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Allow dropdown to escape search box clipping */
.livo-srch-box:has(.livo-custom-dd.open) {
  overflow: visible;
  z-index: 50;
}

/* Header search — category dropdown sizing */
.livo-cat-dd {
  min-width: 72px;
  max-width: 130px;
}

.livo-cat-dd .livo-custom-dd-trigger {
  font-size: 12px;
  font-weight: 500;
  color: #444;
}

.livo-cat-dd .livo-custom-dd-trigger:hover { color: #111; }

.livo-cat-dd .livo-custom-dd-label { max-width: 96px; }

.livo-cat-dd .livo-custom-dd-list {
  left: -14px;
  min-width: 220px;
  max-width: 280px;
}

.livo-srch-input {
  flex: 1;
  display: flex;
}

.livo-srch-input input[type=search] {
  flex: 1;
  padding: 0 14px;
  font-family: var(--livo-font, 'Inter', sans-serif);
  font-size: 14px;
  color: #111;
  border: none;
  outline: none;
  background: #fff;
  -webkit-appearance: none;
}

.livo-srch-input input::placeholder { color: #bbb; }

.livo-srch-extra {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: none;
  border: none;
  border-right: 1px solid #e8e8e8;
  color: #aaa;
  cursor: pointer;
  transition: color .15s;
  flex-shrink: 0;
}
.livo-srch-extra:hover { color: #555; }

.livo-srch-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  background: var(--livo-accent, #FF4A00);
  color: #fff;
  font-family: var(--livo-font, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: filter .15s;
  white-space: nowrap;
}
.livo-srch-btn:hover { filter: brightness(1.08); }

/* ── Right icons ── */
.livo-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.livo-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
  white-space: nowrap;
}
.livo-icon:hover { color: #111; }

/* SVG wrapper — badge positioned relative to icon, not whole block */
.livo-icon-svg {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.livo-icon-cart { gap: 8px; }

.livo-icon-label {
  font-size: 11px;
  color: #999;
  line-height: 1;
  display: block;
}
.livo-icon-sub {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-top: 2px;
}

.livo-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: #1A1A1A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  padding: 0 3px;
  border: 1.5px solid #fff;
}

/* ── Nav bar ── */
.livo-nav {
  border-top: 1px solid #f0f0f0;
  background: #fff;
  position: relative;
}

.livo-nav-inner {
  max-width: var(--livo-max-w, 1440px);
  margin: 0 auto;
  padding: 0 var(--livo-px, 24px);
  display: flex;
  align-items: stretch;
  height: 42px;
  /* NO overflow here — keeps dropdown unclipped */
  overflow: visible;
  position: relative;
}

/* Scrollable links strip (everything after Каталог) */
.livo-nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Fade mask on right edge */
  -webkit-mask-image: linear-gradient(to right, #000 80%, transparent 100%);
  mask-image: linear-gradient(to right, #000 80%, transparent 100%);
}
.livo-nav-links::-webkit-scrollbar { display: none; }

.livo-nav-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  height: 100%;
  font-family: var(--livo-font, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: #444;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
  line-height: 1;
}
.livo-nav-btn:hover {
  color: #111;
  border-bottom-color: #111;
}

/* Figma: h-full, bg #1A1A1A, no border-radius */
.livo-catalog-wrap {
  height: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
}

.livo-catalog-btn {
  background: #1A1A1A;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0;
  border-bottom-color: transparent !important;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -.1px;
}
.livo-catalog-btn:hover { background: #2a2a2a; }

.livo-nav-sep {
  width: 1px;
  height: 18px;
  background: #e8e8e8;
  margin: 0 6px;
  flex-shrink: 0;
}

/* Акції — fire accent */
.livo-nav-sale {
  color: #E8440A;
  font-weight: 600;
}
.livo-nav-sale:hover {
  color: #c23508;
  border-bottom-color: #E8440A;
}
.livo-nav-sale svg { color: #E8440A; }

.livo-nav-quick {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  padding: 0 9px;
}
.livo-nav-quick:hover {
  color: #111;
  background: #F5F5F7;
  border-bottom-color: transparent;
}

/* ── Catalog dropdown ── */
.livo-catalog-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 99999;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--livo-radius-lg, 16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 8px;
  min-width: 680px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;

  /* Hidden by default — CSS handles 500ms close delay */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease, visibility 0s linear 0.5s;
}

.livo-catalog-wrap:hover .livo-catalog-drop,
.livo-catalog-wrap.open .livo-catalog-drop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.12s ease, visibility 0s linear 0s;
}

.cat-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  transition: background .12s;
}
.cat-drop-item:hover { background: #f5f5f7; color: #111; }

.cat-drop-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--livo-radius-sm, 8px);
  background: var(--livo-accent-light, #FFF3EE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--livo-accent, #FF4A00);
}
.cat-drop-item:hover .cat-drop-ico { background: #FFE8DE; }

.cat-drop-name { font-weight: 600; font-size: 13px; }

.cat-drop-ico .cat-drop-thumb {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: var(--livo-radius-sm, 8px);
  display: block;
}

/* ── Cart wrap — relative для позиціонування flyout ── */
.livo-cart-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Mini Cart Flyout ── */
.livo-cart-fly {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,.16), 0 2px 12px rgba(0,0,0,.08);
  z-index: 100000;
  border: 1px solid #f0f0f0;

  /* Hidden by default */
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
/* Arrow caret */
.livo-cart-fly::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 22px;
  width: 14px;
  height: 7px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,.06));
}
.livo-cart-fly.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Head row */
.lcf-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #f5f5f5;
}
.lcf-head-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lcf-head-txt {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.lcf-close {
  width: 24px;
  height: 24px;
  border: none;
  background: #f5f5f7;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  flex-shrink: 0;
  transition: background .12s, color .12s;
}
.lcf-close:hover { background: #e8e8e8; color: #333; }

/* ── Items: full WC mini-cart, scrollable ── */
.lcf-items {
  max-height: 320px;
  overflow-y: auto;
  padding: 4px 12px 4px 16px;
  border-bottom: 1px solid #f5f5f5;
  scrollbar-width: thin;                 /* Firefox */
  scrollbar-color: #EBEBEB transparent;
}
.lcf-items::-webkit-scrollbar { width: 5px; }
.lcf-items::-webkit-scrollbar-track { background: transparent; }
.lcf-items::-webkit-scrollbar-thumb {
  background: #EBEBEB;
  border-radius: 99px;
}
.lcf-items::-webkit-scrollbar-thumb:hover { background: #ddd; }

/* WC mini-cart list reset */
.livo-cart-fly ul.cart_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.livo-cart-fly .mini_cart_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}
.livo-cart-fly .mini_cart_item:last-child { border-bottom: none; }

/* Product link (thumbnail + name) */
.livo-cart-fly .mini_cart_item a:not(.remove) {
  order: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  line-height: 1.35;
  text-decoration: none;
}
.livo-cart-fly .mini_cart_item a:not(.remove):hover { color: var(--acc, #FF4A00); }
.livo-cart-fly .mini_cart_item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: #f5f5f7;
  border: 1px solid #f0f0f0;
  padding: 3px;
  flex-shrink: 0;
}

/* Qty × price */
.livo-cart-fly .mini_cart_item .quantity {
  order: 2;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #111;
}

/* Remove "×" button */
.livo-cart-fly .mini_cart_item .remove_from_cart_button {
  order: 3;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  border-radius: 50%;
  color: #888 !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.livo-cart-fly .mini_cart_item .remove_from_cart_button:hover {
  background: #fee2e2;
  color: #dc2626 !important;
}

/* Variation details — compact */
.livo-cart-fly .mini_cart_item dl.variation {
  margin: 2px 0 0;
  font-size: 10px;
  color: #888;
}
.livo-cart-fly .mini_cart_item dl.variation dt,
.livo-cart-fly .mini_cart_item dl.variation dd { display: inline; margin: 0; }

/* Hide native WC total & buttons — we render our own */
.livo-cart-fly .woocommerce-mini-cart__total,
.livo-cart-fly .woocommerce-mini-cart__buttons { display: none; }

/* Empty cart message */
.livo-cart-fly .woocommerce-mini-cart__empty-message {
  margin: 0;
  padding: 18px 0;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* Summary row */
.lcf-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 12px;
  color: #888;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.lcf-summary strong { color: #111; font-weight: 700; }

/* Action buttons */
.lcf-actions {
  display: flex;
  gap: 12px;
  padding: 12px 16px 0;
}
.lcf-btn-order,
.lcf-btn-checkout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.lcf-btn-order {
  background: transparent;
  border: 1px solid #EBEBEB;
  color: #111111;
  transition: border-color .15s;
}
.lcf-btn-order:hover { border-color: #111; color: #111; }

.lcf-btn-checkout {
  background: #FF4A00;
  color: #FFFFFF;
  transition: background .15s;
  box-shadow: 0 4px 12px rgba(255,74,0,.3);
}
.lcf-btn-checkout:hover { background: #E04100; color: #fff; }

/* Continue shopping link */
.continue-shopping-close {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  color: #555555;
  text-decoration: underline;
  transition: color .15s;
}
.continue-shopping-close:hover { color: #111111; }

/* ══════════════════════════════════════════
   Mobile Responsiveness  (≤ 768px)
══════════════════════════════════════════ */

/* ── Desktop defaults: hide mobile-only elements ── */
.livo-mob-only      { display: none !important; }
.livo-desk-only     { display: flex !important; }

/* These three are ONLY shown on mobile — hidden globally */
.livo-burger        { display: none; }
.livo-mob-srch-bar  { display: none; }
.livo-mob-nav-hd    { display: none; }

@media (max-width: 768px) {
  /* ── Show/hide helpers ── */
  .livo-mob-only  { display: flex !important; }
  .livo-desk-only { display: none !important; }

  /* ── Header top row: burger | logo | cart ── */
  .livo-hdr-top {
    padding: 10px 16px 8px;
    gap: 10px;
  }

  .livo-logo {
    flex: 1;
    min-width: 0;
    margin-right: 0;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .livo-logo-mark {
    font-size: 28.8px; /* −10% від 32px */
    flex-shrink: 0;
  }

  .livo-tagline {
    font-size: 9px; /* −10% від 10px */
    margin-top: 0;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .livo-logo-dot {
    width: 8px;
    height: 8px;
  }

  /* Search — hidden; mobile bar below */
  .livo-srch { display: none; }

  /* Icons — compare, wishlist, cart (icon-only) */
  .livo-icons {
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .livo-icons .livo-icon > div:not(.livo-icon-svg) {
    display: none;
  }

  .livo-icons .livo-icon {
    gap: 0;
    padding: 4px;
  }

  /* Cart: hide label text on mobile */
  .livo-icon-cart .livo-icon-label,
  .livo-icon-cart .livo-icon-sub { display: none; }
  .livo-icon-cart { gap: 0; }

  /* ── Burger button ── */
  .livo-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 8px;
    transition: background .15s;
  }
  .livo-burger:hover { background: #f5f5f7; }
  .livo-burger span {
    display: block;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform .25s, opacity .25s, width .25s;
    transform-origin: center;
  }
  .livo-burger span:nth-child(1) { width: 22px; }
  .livo-burger span:nth-child(2) { width: 18px; }
  .livo-burger span:nth-child(3) { width: 14px; }
  /* Open state */
  .livo-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
  .livo-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .livo-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

  /* ── Mobile search bar (always visible) ── */
  .livo-mob-srch-bar {
    display: block;
    padding: 0 16px 12px;
  }

  .livo-mob-srch-form {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 14px;
    background: #F5F5F7;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }

  .livo-mob-srch-form:focus-within {
    background: #FFFFFF;
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
  }

  .livo-mob-srch-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #888888;
    line-height: 0;
  }

  .livo-mob-srch-form:focus-within .livo-mob-srch-icon {
    color: #111111;
  }

  .livo-mob-srch-form input[type=search] {
    flex: 1;
    min-width: 0;
    padding: 0;
    font-family: var(--livo-font, 'Inter', sans-serif);
    font-size: 14px;
    color: #111111;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .livo-mob-srch-form input[type=search]::placeholder {
    color: #AAAAAA;
  }

  .livo-mob-srch-form input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }

  /* ── Mobile nav — off-canvas drawer ── */
  .livo-mob-nav-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #f0f0f0;
  }
  .livo-mob-nav-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f5f5f7;
    border-radius: 50%;
    cursor: pointer;
    color: #444;
    transition: background .15s;
  }
  .livo-mob-nav-close:hover { background: #e8e8e8; }

  .livo-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 99998;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 4px 0 24px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
  }
  .livo-nav.mob-open { transform: translateX(0); }

  .livo-nav-inner {
    flex-direction: column;
    height: auto;
    padding: 8px 12px 24px;
    gap: 2px;
    align-items: stretch;
    overflow: visible;
  }
  .livo-nav-links {
    flex-direction: column;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
    height: auto;
    flex: none; /* don't stretch — prevents empty gap */
  }

  /* Nav links — full-width rows */
  .livo-nav-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    height: auto;
    border-bottom: none;
    border-radius: 10px;
    font-size: 14px;
  }
  .livo-nav-btn:hover { background: #f5f5f7; border-bottom-color: transparent; }
  .livo-nav-sale  { color: #E8440A; }
  .livo-nav-quick { display: none; } /* hidden on mobile — categories shown in grid above */
  .livo-nav-sep   { display: none; } /* separator not needed on mobile */

  /* Catalog wrap: hide toggle button, show categories directly */
  .livo-catalog-wrap { height: auto; width: 100%; }
  .livo-catalog-btn  { display: none; } /* hide on mobile — categories always visible */

  /* Catalog dropdown — always expanded on mobile */
  .livo-catalog-drop {
    position: static !important;
    display: grid !important;          /* always open */
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    min-width: unset;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 12px;
    margin: 0;
    padding: 4px 0;
    background: transparent;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none;
  }

  /* Catalog items styled as compact tiles on mobile */
  .cat-drop-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    background: #f5f5f7;
    border-radius: 9px;
    font-size: 13px;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: background .15s;
  }
  .cat-drop-item:hover { background: #ebebeb; }
  .cat-drop-ico { color: #888; flex-shrink: 0; }
  .cat-drop-name { flex: 1; line-height: 1.2; }

  /* ── Overlay ── */
  .livo-mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99997;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: opacity .25s;
  }
  .livo-mob-overlay.open { display: block; }

  /* ── Category bar — horizontal scroll ── */
  .cbi { gap: 0; }
  .cba { padding: 10px 12px; font-size: 12px; }
}
