/* NANU Market 2026 — live work-status utility bar */
.nanu-workbar,
.nanu-workbar *{box-sizing:border-box}

.nanu-workbar{
  position:relative!important;
  z-index:95!important;
  width:100%!important;
  min-height:42px!important;
  background:linear-gradient(180deg,#fffdf9 0%,#fff8ef 100%)!important;
  border-bottom:1px solid rgba(236,102,8,.10)!important;
  box-shadow:0 6px 20px rgba(45,28,13,.025)!important;
}
.nanu-workbar__inner{
  min-height:42px!important;
  display:grid!important;
  grid-template-columns:minmax(180px,1fr) auto minmax(180px,1fr)!important;
  align-items:center!important;
  gap:18px!important;
}
.nanu-workbar__brand{
  min-width:0!important;
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  color:#8b7663!important;
  font-size:11px!important;
  line-height:1!important;
  font-weight:800!important;
  letter-spacing:.035em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
.nanu-workbar__brand strong{color:#3a312a!important;font-size:11px!important;font-weight:950!important}
.nanu-workbar__brand-mark{
  width:7px!important;height:7px!important;flex:0 0 7px!important;border-radius:50%!important;
  background:#ec6608!important;box-shadow:0 0 0 4px rgba(236,102,8,.10)!important;
}
.nanu-workbar__button{
  appearance:none!important;
  min-height:34px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:9px!important;
  max-width:min(520px,46vw)!important;
  margin:0!important;
  padding:0 14px!important;
  border:1px solid transparent!important;
  border-radius:13px!important;
  background:transparent!important;
  color:#4d4137!important;
  font:inherit!important;
  font-size:12.5px!important;
  line-height:1!important;
  font-weight:850!important;
  cursor:pointer!important;
  white-space:nowrap!important;
  transition:background .2s ease,border-color .2s ease,box-shadow .2s ease,color .2s ease!important;
}
.nanu-workbar__button:hover,
.nanu-workbar__button[aria-expanded="true"]{
  background:#fff!important;
  border-color:rgba(236,102,8,.13)!important;
  box-shadow:0 9px 22px rgba(44,28,13,.055)!important;
  color:#231f20!important;
}
.nanu-workbar__status-dot{
  width:9px!important;height:9px!important;flex:0 0 9px!important;border-radius:50%!important;
  background:#9c958e!important;
  box-shadow:0 0 0 4px rgba(156,149,142,.10)!important;
  transition:background .2s ease,box-shadow .2s ease!important;
}
.nanu-workbar__status-dot.is-open{
  background:#29b66f!important;
  box-shadow:0 0 0 4px rgba(41,182,111,.12),0 0 14px rgba(41,182,111,.28)!important;
  animation:nanuWorkPulseGreen 1.9s ease-in-out infinite!important;
}
.nanu-workbar__status-dot.is-closing{
  background:#f0a324!important;
  box-shadow:0 0 0 4px rgba(240,163,36,.12),0 0 14px rgba(240,163,36,.24)!important;
  animation:nanuWorkPulseOrange 1.9s ease-in-out infinite!important;
}
.nanu-workbar__status-dot.is-opening{
  background:#ff9c00!important;
  box-shadow:0 0 0 4px rgba(255,156,0,.12),0 0 14px rgba(255,156,0,.26)!important;
  animation:nanuWorkPulseOrange 1.9s ease-in-out infinite!important;
}
.nanu-workbar__status-dot.is-closed{
  background:#dd4e4e!important;
  box-shadow:0 0 0 4px rgba(221,78,78,.10),0 0 12px rgba(221,78,78,.20)!important;
}
@keyframes nanuWorkPulseGreen{0%,100%{transform:scale(1)}50%{transform:scale(1.12)}}
@keyframes nanuWorkPulseOrange{0%,100%{transform:scale(1)}50%{transform:scale(1.12)}}
.nanu-workbar__status-copy{overflow:hidden!important;text-overflow:ellipsis!important}
.nanu-workbar__status-copy strong{color:#231f20!important;font-weight:950!important}
.nanu-workbar__status-copy b{color:#ec6608!important;font-weight:950!important}
.nanu-workbar__chevron{
  width:14px!important;height:14px!important;flex:0 0 14px!important;color:#ec6608!important;
  transition:transform .22s ease!important;
}
.nanu-workbar__button[aria-expanded="true"] .nanu-workbar__chevron{transform:rotate(180deg)!important}
.nanu-workbar__today{
  justify-self:end!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  min-width:0!important;
  color:#917a66!important;
  font-size:11px!important;
  line-height:1!important;
  font-weight:800!important;
  white-space:nowrap!important;
}
.nanu-workbar__today span{text-transform:uppercase!important;letter-spacing:.055em!important;font-size:10px!important}
.nanu-workbar__today strong{color:#3a312a!important;font-size:11px!important;font-weight:950!important}

/* Portal panel */
.nanu-work-panel{
  position:fixed!important;
  z-index:2147482000!important;
  width:min(360px,calc(100vw - 24px))!important;
  max-height:calc(100dvh - 24px)!important;
  overflow:auto!important;
  padding:16px!important;
  border:1px solid rgba(236,102,8,.14)!important;
  border-radius:24px!important;
  background:rgba(255,253,250,.985)!important;
  box-shadow:0 26px 70px rgba(34,24,16,.18),0 0 0 1px rgba(255,255,255,.8) inset!important;
  backdrop-filter:blur(18px)!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
  transform:translateY(-9px) scale(.985)!important;
  transform-origin:top center!important;
  transition:opacity .2s ease,transform .24s cubic-bezier(.2,.8,.2,1),visibility .2s ease!important;
}
.nanu-work-panel:before{
  content:""!important;position:absolute!important;left:18px!important;right:18px!important;top:0!important;height:3px!important;border-radius:999px!important;
  background:linear-gradient(90deg,#ff9c00,#ec6608,rgba(236,102,8,0))!important;
}
.nanu-work-panel.is-open{
  opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0) scale(1)!important;
}
.nanu-work-panel__head{
  display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:14px!important;
  padding:5px 2px 13px!important;border-bottom:1px solid rgba(236,102,8,.10)!important;
}
.nanu-work-panel__kicker{
  display:inline-flex!important;align-items:center!important;min-height:22px!important;padding:0 9px!important;margin-bottom:7px!important;
  border-radius:999px!important;background:#fff1df!important;color:#d86000!important;
  font-size:9px!important;line-height:1!important;font-weight:950!important;letter-spacing:.08em!important;text-transform:uppercase!important;
}
.nanu-work-panel__head h3{margin:0!important;color:#171614!important;font-size:20px!important;line-height:1.08!important;font-weight:950!important;letter-spacing:-.03em!important}
.nanu-work-panel__head p{margin:5px 0 0!important;color:#9a826d!important;font-size:11px!important;line-height:1.2!important;font-weight:750!important}
.nanu-work-panel__close{
  appearance:none!important;width:36px!important;height:36px!important;min-width:36px!important;display:grid!important;place-items:center!important;
  margin:0!important;padding:0!important;border:1px solid rgba(23,22,20,.07)!important;border-radius:13px!important;background:#fff!important;color:#6f5d4e!important;
  box-shadow:0 7px 18px rgba(38,27,18,.05)!important;cursor:pointer!important;transition:.18s ease!important;
}
.nanu-work-panel__close:hover{background:#ff9c00!important;border-color:#ff9c00!important;color:#fff!important;transform:translateY(-1px)!important}
.nanu-work-panel__close svg{width:17px!important;height:17px!important}
.nanu-work-panel__summary{
  display:flex!important;align-items:center!important;gap:10px!important;
  margin:13px 0 9px!important;padding:11px 12px!important;border-radius:16px!important;
  background:linear-gradient(135deg,#fff7ed 0%,#fffdf9 100%)!important;border:1px solid rgba(236,102,8,.10)!important;
  color:#635347!important;font-size:12px!important;line-height:1.35!important;font-weight:800!important;
}
.nanu-work-panel__summary .nanu-work-summary-dot{width:9px!important;height:9px!important;flex:0 0 9px!important;border-radius:50%!important;background:#9c958e!important}
.nanu-work-panel__summary .nanu-work-summary-dot.is-open{background:#29b66f!important}
.nanu-work-panel__summary .nanu-work-summary-dot.is-closing{background:#f0a324!important}
.nanu-work-panel__summary .nanu-work-summary-dot.is-opening{background:#ff9c00!important}
.nanu-work-panel__summary .nanu-work-summary-dot.is-closed{background:#dd4e4e!important}
.nanu-work-panel__summary strong{color:#231f20!important;font-weight:950!important}
.nanu-work-panel__days{display:flex!important;flex-direction:column!important;gap:3px!important}
.nanu-work-panel__row{
  display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;
  min-height:39px!important;padding:7px 10px!important;border-radius:13px!important;color:#746252!important;
  font-size:12px!important;line-height:1.2!important;font-weight:750!important;
  transition:background .16s ease,color .16s ease!important;
}
.nanu-work-panel__row + .nanu-work-panel__row{border-top:1px solid rgba(23,22,20,.035)!important}
.nanu-work-panel__row.is-today{
  background:linear-gradient(135deg,rgba(255,156,0,.10),rgba(236,102,8,.055))!important;
  color:#342b24!important;border-top-color:transparent!important;box-shadow:inset 0 0 0 1px rgba(236,102,8,.09)!important;
}
.nanu-work-panel__day{display:flex!important;align-items:center!important;gap:8px!important;min-width:0!important}
.nanu-work-panel__day-dot{width:6px!important;height:6px!important;flex:0 0 6px!important;border-radius:50%!important;background:#d9cdc2!important}
.nanu-work-panel__row.is-today .nanu-work-panel__day-dot{background:#ec6608!important;box-shadow:0 0 0 4px rgba(236,102,8,.10)!important}
.nanu-work-panel__today-chip{
  display:inline-flex!important;align-items:center!important;min-height:20px!important;padding:0 7px!important;margin-left:3px!important;border-radius:999px!important;
  background:#fff!important;border:1px solid rgba(236,102,8,.12)!important;color:#d86000!important;font-size:8px!important;line-height:1!important;font-weight:950!important;letter-spacing:.05em!important;text-transform:uppercase!important;
}
.nanu-work-panel__row strong{color:#3b3129!important;font-size:12px!important;font-weight:950!important;white-space:nowrap!important}

@media(max-width:900px){
  .nanu-workbar__inner{grid-template-columns:1fr!important;min-height:40px!important;gap:0!important}
  .nanu-workbar__brand,.nanu-workbar__today{display:none!important}
  .nanu-workbar__button{
    width:100%!important;max-width:none!important;min-height:40px!important;padding:0 8px!important;border-radius:0!important;border:0!important;background:transparent!important;box-shadow:none!important;
    font-size:12px!important;
  }
  .nanu-workbar__button:hover,.nanu-workbar__button[aria-expanded="true"]{background:rgba(255,156,0,.055)!important;border:0!important;box-shadow:none!important}
  .nanu-work-panel{width:auto!important;left:12px!important;right:12px!important;max-height:calc(100dvh - 74px)!important;border-radius:22px!important}
}
@media(max-width:420px){
  .nanu-workbar__status-copy{max-width:calc(100vw - 76px)!important}
  .nanu-work-panel{padding:14px!important}
  .nanu-work-panel__head h3{font-size:19px!important}
}
@media(prefers-reduced-motion:reduce){
  .nanu-workbar__status-dot{animation:none!important}
  .nanu-work-panel{transition:none!important}
}


/* ===== HOTFIX: compact single-line utility bar ===== */
@media(min-width:901px){
  .nanu-workbar{
    min-height:36px!important;
  }
  .nanu-workbar__inner{
    min-height:36px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:24px!important;
  }
  .nanu-workbar__brand{
    flex:0 0 auto!important;
  }
  .nanu-workbar__button{
    flex:0 0 auto!important;
    min-height:30px!important;
    max-width:none!important;
    margin-left:auto!important;
    padding:0 10px!important;
    border-radius:11px!important;
    font-size:12px!important;
  }
  .nanu-workbar__today{
    display:none!important;
  }
}

/* ===== NANU 2026: centered location + live status cluster ===== */
.nanu-workbar__inner{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:38px!important;
}
.nanu-workbar__brand,
.nanu-workbar__today{display:none!important}
.nanu-workbar__cluster{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:4px!important;
  min-height:32px!important;
  padding:3px 5px!important;
  border:1px solid rgba(236,102,8,.09)!important;
  border-radius:14px!important;
  background:rgba(255,255,255,.62)!important;
  box-shadow:0 7px 20px rgba(44,28,13,.035)!important;
}
.nanu-workbar__divider{
  width:1px!important;
  height:18px!important;
  margin:0 2px!important;
  background:rgba(236,102,8,.14)!important;
}
.nanu-location-button,
.nanu-workbar__button{
  appearance:none!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:30px!important;
  margin:0!important;
  padding:0 10px!important;
  border:1px solid transparent!important;
  border-radius:10px!important;
  background:transparent!important;
  color:#3f352d!important;
  font:inherit!important;
  font-size:12px!important;
  line-height:1!important;
  font-weight:850!important;
  white-space:nowrap!important;
  cursor:pointer!important;
  transition:background .18s ease,border-color .18s ease,box-shadow .18s ease!important;
}
.nanu-location-button:hover,
.nanu-location-button[aria-expanded="true"],
.nanu-workbar__button:hover,
.nanu-workbar__button[aria-expanded="true"]{
  background:#fff!important;
  border-color:rgba(236,102,8,.13)!important;
  box-shadow:0 7px 18px rgba(44,28,13,.045)!important;
}
.nanu-location-button__pin{
  width:18px!important;height:18px!important;min-width:18px!important;
  display:grid!important;place-items:center!important;
  color:#ec6608!important;
}
.nanu-location-button__pin svg{width:18px!important;height:18px!important;display:block!important}
.nanu-location-button__label{color:#231f20!important;font-weight:950!important}
.nanu-location-button__chevron{
  width:13px!important;height:13px!important;min-width:13px!important;color:#ec6608!important;
  transition:transform .2s ease!important;
}
.nanu-location-button[aria-expanded="true"] .nanu-location-button__chevron{transform:rotate(180deg)!important}

.nanu-location-panel{
  position:fixed!important;
  z-index:2147482001!important;
  width:min(330px,calc(100vw - 24px))!important;
  max-height:calc(100dvh - 24px)!important;
  overflow:auto!important;
  padding:16px!important;
  border:1px solid rgba(236,102,8,.14)!important;
  border-radius:24px!important;
  background:rgba(255,253,250,.99)!important;
  box-shadow:0 26px 70px rgba(34,24,16,.18),0 0 0 1px rgba(255,255,255,.8) inset!important;
  backdrop-filter:blur(18px)!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
  transform:translateY(-8px) scale(.985)!important;
  transform-origin:top center!important;
  transition:opacity .2s ease,transform .22s cubic-bezier(.2,.8,.2,1),visibility .2s ease!important;
}
.nanu-location-panel:before{
  content:""!important;position:absolute!important;left:18px!important;right:18px!important;top:0!important;height:3px!important;border-radius:999px!important;
  background:linear-gradient(90deg,#ff9c00,#ec6608,rgba(236,102,8,0))!important;
}
.nanu-location-panel.is-open{
  opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0) scale(1)!important;
}
.nanu-location-panel__head{
  display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:12px!important;
  padding:5px 2px 13px!important;border-bottom:1px solid rgba(236,102,8,.10)!important;
}
.nanu-location-panel__head h3{margin:0!important;color:#171614!important;font-size:20px!important;line-height:1.08!important;font-weight:950!important;letter-spacing:-.03em!important}
.nanu-location-panel__head p{margin:5px 0 0!important;color:#9a826d!important;font-size:11px!important;line-height:1.35!important;font-weight:750!important}
.nanu-location-list{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;margin-top:13px!important}
.nanu-location-item{
  appearance:none!important;min-height:44px!important;padding:0 12px!important;border-radius:14px!important;
  border:1px solid rgba(23,22,20,.065)!important;background:#fff!important;color:#514338!important;
  display:flex!important;align-items:center!important;justify-content:space-between!important;gap:8px!important;
  font:inherit!important;font-size:12px!important;font-weight:850!important;text-align:left!important;cursor:pointer!important;
  transition:background .16s ease,border-color .16s ease,color .16s ease,transform .16s ease!important;
}
.nanu-location-item:hover{transform:translateY(-1px)!important;background:#fff8ef!important;border-color:rgba(236,102,8,.18)!important;color:#d86000!important}
.nanu-location-item.is-active{background:linear-gradient(135deg,rgba(255,156,0,.12),rgba(236,102,8,.065))!important;border-color:rgba(236,102,8,.18)!important;color:#c95600!important}
.nanu-location-item__check{width:18px!important;height:18px!important;min-width:18px!important;border-radius:50%!important;display:grid!important;place-items:center!important;background:rgba(236,102,8,.09)!important;color:#ec6608!important;opacity:0!important}
.nanu-location-item.is-active .nanu-location-item__check{opacity:1!important}

@media(min-width:901px){
  .nanu-workbar{min-height:38px!important}
  .nanu-workbar__inner{justify-content:center!important;gap:0!important}
  .nanu-workbar__button{margin-left:0!important;max-width:none!important}
}
@media(max-width:900px){
  .nanu-workbar__inner{display:flex!important;justify-content:center!important;min-height:42px!important;padding:4px 8px!important}
  .nanu-workbar__cluster{width:min(100%,560px)!important;justify-content:center!important;background:rgba(255,255,255,.72)!important}
  .nanu-location-button{flex:0 1 auto!important;min-width:0!important;padding:0 8px!important}
  .nanu-workbar__button{flex:1 1 auto!important;width:auto!important;max-width:none!important;min-width:0!important;padding:0 8px!important;border-radius:10px!important}
  .nanu-workbar__status-copy{min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important}
  .nanu-location-panel{left:12px!important;right:12px!important;width:auto!important;max-height:calc(100dvh - 74px)!important;border-radius:22px!important}
}
@media(max-width:520px){
  .nanu-workbar__cluster{gap:2px!important;padding:3px!important}
  .nanu-workbar__divider{margin:0!important}
  .nanu-location-button,.nanu-workbar__button{font-size:11px!important;gap:6px!important}
  .nanu-location-button__pin{width:16px!important;height:16px!important;min-width:16px!important}
  .nanu-location-button__pin svg{width:16px!important;height:16px!important}
  .nanu-location-list{grid-template-columns:1fr!important}
}

/* ===== NANU location hub: Chisinau / Regions / Services ===== */
.nanu-location-panel{
  width:min(520px,calc(100vw - 24px))!important;
}
.nanu-location-hub{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:8px!important;
  margin:14px 0 12px!important;
}
.nanu-location-hub__card{
  appearance:none!important;
  min-width:0!important;
  min-height:76px!important;
  padding:11px 10px!important;
  border:1px solid rgba(23,22,20,.065)!important;
  border-radius:17px!important;
  background:linear-gradient(180deg,#fff 0%,#fffaf5 100%)!important;
  color:#59493c!important;
  display:flex!important;
  align-items:center!important;
  gap:9px!important;
  text-align:left!important;
  cursor:pointer!important;
  box-shadow:0 9px 20px rgba(44,28,13,.035)!important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease!important;
}
.nanu-location-hub__card:hover{
  transform:translateY(-2px)!important;
  border-color:rgba(236,102,8,.18)!important;
  box-shadow:0 13px 26px rgba(44,28,13,.06)!important;
}
.nanu-location-hub__card.is-active{
  background:linear-gradient(135deg,rgba(255,156,0,.14),rgba(236,102,8,.07))!important;
  border-color:rgba(236,102,8,.22)!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.7),0 10px 22px rgba(236,102,8,.075)!important;
}
.nanu-location-hub__icon{
  width:34px!important;height:34px!important;min-width:34px!important;
  display:grid!important;place-items:center!important;
  border-radius:12px!important;
  background:#fff4e7!important;color:#ec6608!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.11)!important;
}
.nanu-location-hub__icon svg{display:block!important;width:19px!important;height:19px!important}
.nanu-location-hub__copy{display:flex!important;flex-direction:column!important;gap:4px!important;min-width:0!important}
.nanu-location-hub__copy strong{
  color:#231f20!important;font-size:12px!important;line-height:1.08!important;font-weight:950!important;white-space:nowrap!important;
}
.nanu-location-hub__copy small{
  color:#9a816d!important;font-size:9px!important;line-height:1.15!important;font-weight:800!important;white-space:nowrap!important;
}
.nanu-location-list[hidden],.nanu-location-services[hidden]{display:none!important}
.nanu-location-services{
  display:flex!important;align-items:center!important;gap:13px!important;
  min-height:90px!important;padding:16px!important;margin-top:4px!important;
  border-radius:18px!important;
  background:linear-gradient(135deg,#fff8ef 0%,#fffdf9 100%)!important;
  border:1px solid rgba(236,102,8,.11)!important;
}
.nanu-location-services__icon{
  width:44px!important;height:44px!important;min-width:44px!important;border-radius:15px!important;
  display:grid!important;place-items:center!important;
  background:linear-gradient(135deg,#ff9c00,#ec6608)!important;color:#fff!important;
  font-size:17px!important;font-weight:950!important;box-shadow:0 11px 24px rgba(236,102,8,.18)!important;
}
.nanu-location-services strong{display:block!important;color:#231f20!important;font-size:14px!important;font-weight:950!important}
.nanu-location-services p{margin:4px 0 0!important;color:#816b59!important;font-size:11px!important;line-height:1.45!important;font-weight:700!important}

@media(max-width:900px){
  .nanu-location-panel{width:auto!important}
}
@media(max-width:520px){
  .nanu-location-hub{grid-template-columns:1fr!important;gap:7px!important}
  .nanu-location-hub__card{min-height:58px!important;padding:9px 10px!important}
  .nanu-location-hub__copy strong{font-size:12px!important}
  .nanu-location-hub__copy small{font-size:9px!important}
}


/* ===== NANU LOCATION HUB PREMIUM V2 ===== */
.nanu-location-panel{
  width:min(620px,calc(100vw - 28px))!important;
  padding:20px!important;
  border-radius:28px!important;
  border:1px solid rgba(236,102,8,.13)!important;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,156,0,.09),transparent 32%),
    linear-gradient(180deg,#fffefd 0%,#fff9f3 100%)!important;
  box-shadow:0 32px 90px rgba(37,25,16,.18),0 0 0 1px rgba(255,255,255,.86) inset!important;
}
.nanu-location-panel:before{
  left:22px!important;right:22px!important;height:3px!important;
  background:linear-gradient(90deg,#ff9c00 0%,#ec6608 48%,rgba(236,102,8,0) 100%)!important;
}
.nanu-location-panel__head{
  align-items:center!important;
  padding:7px 4px 17px!important;
  border-bottom:1px solid rgba(236,102,8,.10)!important;
}
.nanu-location-panel__head>div:first-child{
  min-width:0!important;
}
.nanu-location-panel__head .nanu-work-panel__kicker{
  min-height:24px!important;
  padding:0 10px!important;
  margin-bottom:8px!important;
  background:linear-gradient(135deg,#fff1df,#fff8ee)!important;
  border:1px solid rgba(236,102,8,.12)!important;
  color:#d65d00!important;
  box-shadow:0 6px 14px rgba(236,102,8,.055)!important;
}
.nanu-location-panel__head h3{
  font-size:25px!important;
  line-height:1.04!important;
  letter-spacing:-.04em!important;
}
.nanu-location-panel__head p{
  max-width:390px!important;
  margin-top:7px!important;
  color:#8f7865!important;
  font-size:12px!important;
  line-height:1.45!important;
}
.nanu-location-panel .nanu-work-panel__close{
  width:42px!important;height:42px!important;min-width:42px!important;
  border-radius:15px!important;
  box-shadow:0 10px 24px rgba(37,25,16,.055)!important;
}

/* top category cards */
.nanu-location-hub{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:12px!important;
  margin:18px 0 16px!important;
}
.nanu-location-hub__card{
  position:relative!important;
  min-height:112px!important;
  padding:15px!important;
  border-radius:22px!important;
  border:1px solid rgba(23,22,20,.065)!important;
  background:linear-gradient(180deg,#fff 0%,#fffaf6 100%)!important;
  align-items:flex-start!important;
  flex-direction:column!important;
  justify-content:space-between!important;
  gap:14px!important;
  overflow:hidden!important;
  box-shadow:0 12px 28px rgba(43,28,17,.045)!important;
}
.nanu-location-hub__card:before{
  content:""!important;
  position:absolute!important;
  width:96px!important;height:96px!important;
  right:-46px!important;bottom:-52px!important;
  border-radius:50%!important;
  background:radial-gradient(circle,rgba(255,156,0,.14),rgba(255,156,0,0) 70%)!important;
  pointer-events:none!important;
}
.nanu-location-hub__card:hover{
  transform:translateY(-3px)!important;
  border-color:rgba(236,102,8,.20)!important;
  box-shadow:0 18px 34px rgba(43,28,17,.075)!important;
}
.nanu-location-hub__card.is-active{
  background:linear-gradient(135deg,#ff9c00 0%,#ec6608 100%)!important;
  border-color:transparent!important;
  box-shadow:0 18px 34px rgba(236,102,8,.23)!important;
}
.nanu-location-hub__card.is-active:after{
  content:"✓"!important;
  position:absolute!important;
  top:13px!important;right:13px!important;
  width:24px!important;height:24px!important;
  display:grid!important;place-items:center!important;
  border-radius:50%!important;
  background:rgba(255,255,255,.18)!important;
  border:1px solid rgba(255,255,255,.25)!important;
  color:#fff!important;
  font-size:12px!important;font-weight:950!important;
}
.nanu-location-hub__icon{
  width:42px!important;height:42px!important;min-width:42px!important;
  border-radius:15px!important;
  background:#fff4e7!important;
  color:#ec6608!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.10),0 8px 18px rgba(236,102,8,.06)!important;
}
.nanu-location-hub__icon svg{width:21px!important;height:21px!important}
.nanu-location-hub__card.is-active .nanu-location-hub__icon{
  background:rgba(255,255,255,.18)!important;
  color:#fff!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.22)!important;
}
.nanu-location-hub__copy{gap:5px!important}
.nanu-location-hub__copy strong{
  font-size:14px!important;
  line-height:1.08!important;
  letter-spacing:-.02em!important;
}
.nanu-location-hub__copy small{
  color:#9a816d!important;
  font-size:10px!important;
  line-height:1.25!important;
}
.nanu-location-hub__card.is-active .nanu-location-hub__copy strong,
.nanu-location-hub__card.is-active .nanu-location-hub__copy small{
  color:#fff!important;
}
.nanu-location-hub__card.is-active .nanu-location-hub__copy small{opacity:.82!important}

/* store cards */
.nanu-location-list{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  margin-top:4px!important;
}
.nanu-location-item{
  min-height:66px!important;
  padding:10px 12px!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.88)!important;
  border:1px solid rgba(23,22,20,.065)!important;
  box-shadow:0 8px 20px rgba(42,28,18,.035)!important;
}
.nanu-location-item:hover{
  transform:translateY(-2px)!important;
  background:#fff!important;
  border-color:rgba(236,102,8,.19)!important;
  box-shadow:0 14px 28px rgba(42,28,18,.065)!important;
}
.nanu-location-item.is-active{
  background:linear-gradient(135deg,#fff4e7 0%,#fffaf4 100%)!important;
  border-color:rgba(236,102,8,.22)!important;
  box-shadow:0 12px 26px rgba(236,102,8,.08)!important;
}
.nanu-location-item__lead{
  min-width:0!important;
  display:flex!important;
  align-items:center!important;
  gap:11px!important;
}
.nanu-location-item__pin{
  width:36px!important;height:36px!important;min-width:36px!important;
  display:grid!important;place-items:center!important;
  border-radius:13px!important;
  background:#fff4e7!important;
  color:#ec6608!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;
}
.nanu-location-item__pin svg{width:18px!important;height:18px!important}
.nanu-location-item.is-active .nanu-location-item__pin{
  background:linear-gradient(135deg,#ff9c00,#ec6608)!important;
  color:#fff!important;
  box-shadow:0 8px 18px rgba(236,102,8,.18)!important;
}
.nanu-location-item__copy{
  min-width:0!important;
  display:flex!important;
  flex-direction:column!important;
  gap:4px!important;
}
.nanu-location-item__copy strong{
  color:#231f20!important;
  font-size:13px!important;
  line-height:1.1!important;
  font-weight:950!important;
}
.nanu-location-item__copy small{
  color:#9a816d!important;
  font-size:9px!important;
  line-height:1.2!important;
  font-weight:800!important;
}
.nanu-location-item__check{
  width:24px!important;height:24px!important;min-width:24px!important;
  background:#fff!important;
  border:1px solid rgba(236,102,8,.14)!important;
  box-shadow:0 6px 14px rgba(37,25,16,.04)!important;
  font-size:11px!important;
}
.nanu-location-item.is-active .nanu-location-item__check{
  opacity:1!important;
  background:#ec6608!important;
  border-color:#ec6608!important;
  color:#fff!important;
}

/* services empty state */
.nanu-location-services{
  position:relative!important;
  min-height:122px!important;
  margin-top:4px!important;
  padding:20px!important;
  border-radius:22px!important;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,156,0,.13),transparent 34%),
    linear-gradient(135deg,#fff7eb 0%,#fffdf9 100%)!important;
  border:1px solid rgba(236,102,8,.12)!important;
  box-shadow:0 10px 26px rgba(42,28,18,.04)!important;
}
.nanu-location-services__icon{
  width:52px!important;height:52px!important;min-width:52px!important;
  border-radius:17px!important;
  box-shadow:0 14px 28px rgba(236,102,8,.20)!important;
}
.nanu-location-services strong{font-size:16px!important;letter-spacing:-.02em!important}
.nanu-location-services p{max-width:360px!important;margin-top:6px!important;font-size:12px!important;line-height:1.55!important}

@media(max-width:900px){
  .nanu-location-panel{
    left:12px!important;right:12px!important;width:auto!important;
    padding:16px!important;border-radius:24px!important;
  }
}
@media(max-width:520px){
  .nanu-location-panel__head h3{font-size:22px!important}
  .nanu-location-hub{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:7px!important;
    margin:14px 0 12px!important;
  }
  .nanu-location-hub__card{
    min-height:92px!important;
    padding:10px 8px!important;
    border-radius:17px!important;
    gap:9px!important;
  }
  .nanu-location-hub__icon{
    width:34px!important;height:34px!important;min-width:34px!important;border-radius:12px!important;
  }
  .nanu-location-hub__icon svg{width:18px!important;height:18px!important}
  .nanu-location-hub__copy strong{font-size:11px!important;white-space:normal!important}
  .nanu-location-hub__copy small{display:none!important}
  .nanu-location-hub__card.is-active:after{top:8px!important;right:8px!important;width:20px!important;height:20px!important;font-size:10px!important}
  .nanu-location-list{grid-template-columns:1fr!important;gap:8px!important}
  .nanu-location-item{min-height:62px!important}
  .nanu-location-services{min-height:110px!important;padding:16px!important}
}


/* ===== HOTFIX: compact premium location tabs + smooth content transitions ===== */
.nanu-location-hub{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  width:max-content!important;
  max-width:100%!important;
  gap:8px!important;
  margin:16px 0 14px!important;
  padding:0!important;
}
.nanu-location-hub__card{
  position:relative!important;
  width:auto!important;
  min-width:0!important;
  min-height:42px!important;
  height:42px!important;
  padding:0 16px!important;
  border-radius:11px!important;
  border:1px solid rgba(35,31,32,.13)!important;
  background:rgba(255,255,255,.84)!important;
  color:#231f20!important;
  display:inline-flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:center!important;
  gap:0!important;
  overflow:hidden!important;
  box-shadow:0 5px 14px rgba(35,31,32,.035)!important;
  transform:translateY(0) scale(1)!important;
  transition:
    background .28s cubic-bezier(.2,.7,.2,1),
    color .28s cubic-bezier(.2,.7,.2,1),
    border-color .28s ease,
    box-shadow .28s ease,
    transform .22s cubic-bezier(.2,.7,.2,1)!important;
}
.nanu-location-hub__card:before,
.nanu-location-hub__card:after,
.nanu-location-hub__icon,
.nanu-location-hub__copy small{display:none!important}
.nanu-location-hub__copy{
  display:block!important;
  min-width:0!important;
}
.nanu-location-hub__copy strong{
  display:block!important;
  color:inherit!important;
  font-size:13px!important;
  line-height:1!important;
  font-weight:850!important;
  letter-spacing:-.01em!important;
  white-space:nowrap!important;
  transition:color .28s ease!important;
}
.nanu-location-hub__card:hover{
  transform:translateY(-1px)!important;
  border-color:rgba(236,102,8,.25)!important;
  background:#fff8f1!important;
  box-shadow:0 9px 20px rgba(236,102,8,.08)!important;
}
.nanu-location-hub__card:active{
  transform:translateY(0) scale(.98)!important;
}
.nanu-location-hub__card.is-active{
  background:linear-gradient(135deg,#f26a16 0%,#ec6608 100%)!important;
  color:#fff!important;
  border-color:#ec6608!important;
  box-shadow:0 10px 22px rgba(236,102,8,.19)!important;
}
.nanu-location-hub__card.is-active:hover{
  background:linear-gradient(135deg,#ff7a22 0%,#ec6608 100%)!important;
  color:#fff!important;
  transform:translateY(-1px)!important;
}
.nanu-location-hub__card:focus-visible{
  outline:none!important;
  box-shadow:0 0 0 3px rgba(255,156,0,.18),0 10px 22px rgba(236,102,8,.14)!important;
}

/* transition between Chisinau / Regions / Services */
.nanu-location-list,
.nanu-location-services{
  will-change:opacity,transform,filter!important;
  transform-origin:top center!important;
}
.nanu-location-panel.is-view-leaving .nanu-location-list:not([hidden]),
.nanu-location-panel.is-view-leaving .nanu-location-services:not([hidden]){
  opacity:0!important;
  transform:translateY(7px) scale(.992)!important;
  filter:blur(1px)!important;
  transition:opacity .12s ease,transform .12s ease,filter .12s ease!important;
}
.nanu-location-panel.is-view-entering .nanu-location-list:not([hidden]),
.nanu-location-panel.is-view-entering .nanu-location-services:not([hidden]){
  animation:nanuLocationViewEnter .30s cubic-bezier(.18,.8,.25,1) both!important;
}
@keyframes nanuLocationViewEnter{
  from{opacity:0;transform:translateY(9px) scale(.992);filter:blur(1px)}
  to{opacity:1;transform:translateY(0) scale(1);filter:blur(0)}
}

@media(max-width:520px){
  .nanu-location-hub{
    width:100%!important;
    gap:6px!important;
    margin:13px 0 12px!important;
  }
  .nanu-location-hub__card{
    flex:1 1 0!important;
    min-width:0!important;
    height:38px!important;
    min-height:38px!important;
    padding:0 9px!important;
    border-radius:9px!important;
  }
  .nanu-location-hub__copy strong{
    font-size:11.5px!important;
    white-space:nowrap!important;
  }
}


/* ===== 2026: Chisinau store cards ===== */
.nanu-location-list.is-chisinau-stores{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  margin-top:12px!important;
}
.nanu-city-store-card{
  position:relative!important;
  min-width:0!important;
  min-height:178px!important;
  padding:16px!important;
  border-radius:20px!important;
  background:linear-gradient(180deg,#fff 0%,#fffaf5 100%)!important;
  border:1px solid rgba(35,31,32,.08)!important;
  box-shadow:0 10px 26px rgba(35,31,32,.045)!important;
  cursor:pointer!important;
  overflow:hidden!important;
  transition:transform .22s cubic-bezier(.2,.7,.2,1),border-color .22s ease,box-shadow .22s ease,background .22s ease!important;
}
.nanu-city-store-card:before{
  content:""!important;
  position:absolute!important;
  left:16px!important;right:16px!important;top:0!important;height:2px!important;
  border-radius:999px!important;
  background:linear-gradient(90deg,#ff9c00,#ec6608,rgba(236,102,8,0))!important;
  opacity:.72!important;
}
.nanu-city-store-card.is-primary{grid-column:1 / -1!important;min-height:164px!important}
.nanu-city-store-card:hover{
  transform:translateY(-2px)!important;
  border-color:rgba(236,102,8,.20)!important;
  box-shadow:0 16px 32px rgba(35,31,32,.075)!important;
}
.nanu-city-store-card.is-active{
  background:linear-gradient(135deg,#fff8ef 0%,#fff 72%)!important;
  border-color:rgba(236,102,8,.30)!important;
  box-shadow:0 15px 34px rgba(236,102,8,.10)!important;
}
.nanu-city-store-card:focus-visible{
  outline:none!important;
  box-shadow:0 0 0 3px rgba(255,156,0,.16),0 15px 34px rgba(236,102,8,.10)!important;
}
.nanu-city-store-card__top{
  display:flex!important;
  align-items:flex-start!important;
  justify-content:space-between!important;
  gap:12px!important;
}
.nanu-city-store-card__title{min-width:0!important;display:flex!important;flex-direction:column!important;gap:7px!important}
.nanu-city-store-card__tag{
  display:inline-flex!important;
  align-items:center!important;
  width:max-content!important;
  max-width:100%!important;
  min-height:22px!important;
  padding:0 9px!important;
  border-radius:999px!important;
  background:#fff3e4!important;
  border:1px solid rgba(236,102,8,.12)!important;
  color:#dc6208!important;
  font-size:9.5px!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.045em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
.nanu-city-store-card__title strong{
  color:#231f20!important;
  font-size:15px!important;
  line-height:1.2!important;
  font-weight:950!important;
  letter-spacing:-.025em!important;
}
.nanu-city-store-card__check{
  display:grid!important;
  place-items:center!important;
  width:25px!important;height:25px!important;min-width:25px!important;
  border-radius:50%!important;
  background:rgba(236,102,8,.08)!important;
  color:#ec6608!important;
  font-size:12px!important;
  font-weight:950!important;
  opacity:0!important;
  transform:scale(.8)!important;
  transition:opacity .18s ease,transform .18s ease!important;
}
.nanu-city-store-card.is-active .nanu-city-store-card__check{opacity:1!important;transform:scale(1)!important}
.nanu-city-store-card__address{
  display:flex!important;
  align-items:flex-start!important;
  gap:9px!important;
  margin-top:14px!important;
  color:#665648!important;
  font-size:12px!important;
  line-height:1.45!important;
  font-weight:750!important;
}
.nanu-city-store-card__address-icon{
  width:22px!important;height:22px!important;min-width:22px!important;
  display:grid!important;place-items:center!important;
  border-radius:8px!important;
  background:rgba(236,102,8,.08)!important;
  color:#ec6608!important;
}
.nanu-city-store-card__address-icon svg{width:14px!important;height:14px!important;display:block!important}
.nanu-city-store-card__contacts{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:7px!important;
  margin-top:14px!important;
  padding-top:13px!important;
  border-top:1px solid rgba(236,102,8,.08)!important;
}
.nanu-city-store-card__contact{
  display:inline-flex!important;
  align-items:center!important;
  gap:7px!important;
  min-height:32px!important;
  padding:0 10px!important;
  border-radius:10px!important;
  background:#fff!important;
  border:1px solid rgba(35,31,32,.08)!important;
  color:#4d4137!important;
  text-decoration:none!important;
  font-size:10.5px!important;
  line-height:1!important;
  font-weight:850!important;
  white-space:nowrap!important;
  transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease!important;
}
.nanu-city-store-card__contact svg{width:14px!important;height:14px!important;color:#ec6608!important;flex:0 0 14px!important}
.nanu-city-store-card__contact:hover{
  transform:translateY(-1px)!important;
  background:#fff7ee!important;
  border-color:rgba(236,102,8,.20)!important;
  color:#d85d00!important;
}
@media(max-width:700px){
  .nanu-location-list.is-chisinau-stores{grid-template-columns:1fr!important;gap:8px!important}
  .nanu-city-store-card.is-primary{grid-column:auto!important}
  .nanu-city-store-card,.nanu-city-store-card.is-primary{min-height:0!important;padding:14px!important;border-radius:17px!important}
  .nanu-city-store-card__title strong{font-size:14px!important}
  .nanu-city-store-card__address{margin-top:11px!important;font-size:11.5px!important}
  .nanu-city-store-card__contacts{margin-top:11px!important;padding-top:11px!important}
  .nanu-city-store-card__contact{font-size:10px!important;padding:0 9px!important}
}


/* ===== HOTFIX 2026-08-10: elegant store contacts + clean section tabs ===== */
/* Active hub tab must be indicated by color only — no floating check bubble. */
.nanu-location-hub__card.is-active:after,
.nanu-location-hub__card.is-active:before{
  content:none!important;
  display:none!important;
}

/* Store contact area: lighter, more elegant and easier to scan. */
.nanu-city-store-card__contacts{
  gap:10px!important;
  align-items:center!important;
}

.nanu-city-store-card__contact[href^="tel:"]{
  min-height:36px!important;
  padding:0 9px 0 4px!important;
  gap:8px!important;
  border:0!important;
  border-radius:12px!important;
  background:transparent!important;
  box-shadow:none!important;
  color:#302923!important;
  font-size:11px!important;
  font-weight:900!important;
  letter-spacing:-.01em!important;
}
.nanu-city-store-card__contact[href^="tel:"] svg{
  width:28px!important;
  height:28px!important;
  flex:0 0 28px!important;
  padding:7px!important;
  border-radius:10px!important;
  background:#fff4e8!important;
  color:#ec6608!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.11)!important;
  transition:background .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease!important;
}
.nanu-city-store-card__contact[href^="tel:"]:hover{
  transform:none!important;
  background:rgba(236,102,8,.045)!important;
  color:#d85d00!important;
}
.nanu-city-store-card__contact[href^="tel:"]:hover svg{
  transform:translateY(-1px)!important;
  background:linear-gradient(135deg,#ff9c00,#ec6608)!important;
  color:#fff!important;
  box-shadow:0 8px 18px rgba(236,102,8,.17)!important;
}

/* Keep email secondary and visually quieter than the phone. */
.nanu-city-store-card__contact[href^="mailto:"]{
  min-height:34px!important;
  padding:0 11px!important;
  border-radius:11px!important;
  background:#fff!important;
  border:1px solid rgba(35,31,32,.07)!important;
  color:#69594b!important;
  font-size:10.5px!important;
  font-weight:800!important;
  box-shadow:0 5px 14px rgba(35,31,32,.025)!important;
}

@media(max-width:700px){
  .nanu-city-store-card__contacts{
    gap:7px!important;
  }
  .nanu-city-store-card__contact[href^="tel:"]{
    min-height:34px!important;
    padding-right:7px!important;
    font-size:10.5px!important;
  }
  .nanu-city-store-card__contact[href^="tel:"] svg{
    width:26px!important;
    height:26px!important;
    flex-basis:26px!important;
    padding:6px!important;
    border-radius:9px!important;
  }
}

/* ===== 2026: premium regional store details ===== */
.nanu-location-list.is-region-stores{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  margin-top:12px!important;
}
.nanu-region-store-card{
  position:relative!important;
  min-width:0!important;
  padding:15px!important;
  border-radius:19px!important;
  background:linear-gradient(180deg,#fff 0%,#fffaf5 100%)!important;
  border:1px solid rgba(35,31,32,.075)!important;
  box-shadow:0 9px 24px rgba(35,31,32,.04)!important;
  cursor:pointer!important;
  overflow:hidden!important;
  transition:transform .22s cubic-bezier(.2,.7,.2,1),border-color .22s ease,box-shadow .22s ease,background .22s ease!important;
}
.nanu-region-store-card:before{
  content:""!important;position:absolute!important;left:15px!important;right:15px!important;top:0!important;height:2px!important;border-radius:999px!important;
  background:linear-gradient(90deg,#ff9c00,#ec6608,rgba(236,102,8,0))!important;opacity:.64!important;
}
.nanu-region-store-card.has-departments{grid-column:1 / -1!important}
.nanu-region-store-card:hover{transform:translateY(-2px)!important;border-color:rgba(236,102,8,.18)!important;box-shadow:0 15px 30px rgba(35,31,32,.07)!important}
.nanu-region-store-card.is-active{background:linear-gradient(135deg,#fff7ed 0%,#fff 72%)!important;border-color:rgba(236,102,8,.28)!important;box-shadow:0 14px 32px rgba(236,102,8,.09)!important}
.nanu-region-store-card:focus-visible{outline:none!important;box-shadow:0 0 0 3px rgba(255,156,0,.14),0 14px 32px rgba(236,102,8,.08)!important}
.nanu-region-store-card__top{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:10px!important}
.nanu-region-store-card__heading{display:flex!important;flex-direction:column!important;gap:6px!important;min-width:0!important}
.nanu-region-store-card__heading>span{display:inline-flex!important;width:max-content!important;max-width:100%!important;min-height:21px!important;align-items:center!important;padding:0 9px!important;border-radius:999px!important;background:#fff3e4!important;border:1px solid rgba(236,102,8,.11)!important;color:#d95f06!important;font-size:9px!important;line-height:1!important;font-weight:900!important;letter-spacing:.045em!important;text-transform:uppercase!important;white-space:nowrap!important}
.nanu-region-store-card__heading>strong{color:#231f20!important;font-size:14px!important;line-height:1.2!important;font-weight:950!important;letter-spacing:-.022em!important}
.nanu-region-store-card__selected{display:none!important;align-items:center!important;min-height:24px!important;padding:0 9px!important;border-radius:999px!important;background:#ec6608!important;color:#fff!important;font-size:9px!important;font-weight:900!important;white-space:nowrap!important}
.nanu-region-store-card.is-active .nanu-region-store-card__selected{display:inline-flex!important}
.nanu-region-store-card__address{display:flex!important;align-items:flex-start!important;gap:8px!important;margin-top:12px!important;color:#655548!important;font-size:11.5px!important;line-height:1.45!important;font-weight:760!important}
.nanu-region-store-card__address>i{display:grid!important;place-items:center!important;width:22px!important;height:22px!important;min-width:22px!important;border-radius:8px!important;background:#fff3e7!important;color:#ec6608!important;font-style:normal!important}
.nanu-region-store-card__address svg{width:13px!important;height:13px!important;display:block!important}
.nanu-region-store-card__meta{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;margin-top:12px!important;padding-top:12px!important;border-top:1px solid rgba(236,102,8,.08)!important}
.nanu-region-store-card__phone{display:inline-flex!important;align-items:center!important;gap:7px!important;min-width:0!important;color:#2f2924!important;text-decoration:none!important;font-size:10.5px!important;font-weight:900!important;white-space:nowrap!important}
.nanu-region-store-card__phone>i{display:grid!important;place-items:center!important;width:28px!important;height:28px!important;min-width:28px!important;border-radius:10px!important;background:#fff4e8!important;color:#ec6608!important;font-style:normal!important;box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;transition:all .18s ease!important}
.nanu-region-store-card__phone svg{width:14px!important;height:14px!important}
.nanu-region-store-card__phone:hover{color:#d85d00!important}
.nanu-region-store-card__phone:hover>i{background:linear-gradient(135deg,#ff9c00,#ec6608)!important;color:#fff!important;box-shadow:0 8px 18px rgba(236,102,8,.17)!important;transform:translateY(-1px)!important}
.nanu-region-store-card__hours{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:5px!important;flex-wrap:wrap!important}
.nanu-region-store-card__hours>span{display:flex!important;align-items:center!important;gap:4px!important;min-height:27px!important;padding:0 7px!important;border-radius:9px!important;background:#fff!important;border:1px solid rgba(35,31,32,.065)!important;white-space:nowrap!important}
.nanu-region-store-card__hours small{color:#9b8069!important;font-size:8px!important;font-weight:850!important;text-transform:uppercase!important}
.nanu-region-store-card__hours strong{color:#51453b!important;font-size:9px!important;font-weight:900!important}
.nanu-region-store-card__departments{margin-top:12px!important;padding-top:12px!important;border-top:1px solid rgba(236,102,8,.08)!important}
.nanu-region-store-card__departments-toggle{display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:8px!important;width:100%!important;min-height:34px!important;padding:0 4px!important;border:0!important;background:transparent!important;color:#55483d!important;font-size:10.5px!important;font-weight:900!important;text-align:left!important}
.nanu-region-store-card__departments-toggle b{display:grid!important;place-items:center!important;min-width:22px!important;height:22px!important;padding:0 6px!important;border-radius:999px!important;background:#fff3e6!important;color:#dc6208!important;font-size:9px!important}
.nanu-region-store-card__departments-toggle svg{width:16px!important;height:16px!important;margin-left:auto!important;color:#ec6608!important;transition:transform .24s ease!important}
.nanu-region-store-card.is-departments-open .nanu-region-store-card__departments-toggle svg{transform:rotate(180deg)!important}
.nanu-region-store-card__departments-list{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important;padding-top:8px!important}
.nanu-region-store-card__departments-list[hidden]{display:none!important}
.nanu-region-store-card__departments-list a{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;min-width:0!important;min-height:40px!important;padding:8px 10px!important;border-radius:12px!important;background:#fff!important;border:1px solid rgba(35,31,32,.065)!important;color:#5c4e42!important;text-decoration:none!important;transition:background .18s ease,border-color .18s ease,transform .18s ease!important}
.nanu-region-store-card__departments-list a:hover{transform:translateY(-1px)!important;background:#fff8f0!important;border-color:rgba(236,102,8,.17)!important}
.nanu-region-store-card__departments-list a span{min-width:0!important;font-size:9.5px!important;line-height:1.25!important;font-weight:800!important}
.nanu-region-store-card__departments-list a strong{flex:0 0 auto!important;color:#d75e04!important;font-size:9.5px!important;font-weight:950!important;white-space:nowrap!important}
@media(max-width:700px){
  .nanu-location-list.is-region-stores{grid-template-columns:1fr!important;gap:8px!important}
  .nanu-region-store-card.has-departments{grid-column:auto!important}
  .nanu-region-store-card{padding:13px!important;border-radius:17px!important}
  .nanu-region-store-card__heading>strong{font-size:13.5px!important}
  .nanu-region-store-card__meta{align-items:flex-start!important;flex-direction:column!important;gap:8px!important}
  .nanu-region-store-card__hours{justify-content:flex-start!important}
  .nanu-region-store-card__departments-list{grid-template-columns:1fr!important}
  .nanu-region-store-card__departments-list a{min-height:38px!important}
}

/* ===== HOTFIX 2026-08-10: regional popup consistent cards + clean inner scroll ===== */
@media (min-width:701px){
  .nanu-location-panel{
    display:flex!important;
    flex-direction:column!important;
    width:min(620px,calc(100vw - 28px))!important;
    max-height:min(820px,calc(100dvh - 70px))!important;
    overflow:hidden!important;
  }

  .nanu-location-panel__head,
  .nanu-location-hub{
    flex:0 0 auto!important;
  }

  .nanu-location-list{
    flex:1 1 auto!important;
    min-height:0!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    overscroll-behavior:contain!important;
    padding-right:7px!important;
    margin-right:-4px!important;
    scrollbar-width:thin!important;
    scrollbar-color:rgba(236,102,8,.32) transparent!important;
  }
  .nanu-location-list::-webkit-scrollbar{width:6px!important}
  .nanu-location-list::-webkit-scrollbar-track{background:transparent!important}
  .nanu-location-list::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,rgba(255,156,0,.48),rgba(236,102,8,.34))!important;
    border-radius:999px!important;
  }

  .nanu-location-services{
    flex:1 1 auto!important;
    min-height:0!important;
    overflow:auto!important;
  }

  /* A store is one complete information unit: never leave a half-empty row. */
  .nanu-location-list.is-region-stores{
    grid-template-columns:minmax(0,1fr)!important;
    gap:10px!important;
    align-content:start!important;
  }
  .nanu-region-store-card,
  .nanu-region-store-card.has-departments{
    grid-column:auto!important;
    width:100%!important;
    min-height:0!important;
  }

  /* More elegant horizontal balance inside every full-width regional card. */
  .nanu-region-store-card__meta{
    display:grid!important;
    grid-template-columns:minmax(145px,.72fr) minmax(0,1.28fr)!important;
    align-items:center!important;
    gap:14px!important;
  }
  .nanu-region-store-card__hours{
    justify-content:flex-end!important;
  }
}

@media (max-width:700px){
  .nanu-location-panel{
    display:flex!important;
    flex-direction:column!important;
    overflow:hidden!important;
  }
  .nanu-location-list{
    flex:1 1 auto!important;
    min-height:0!important;
    overflow-y:auto!important;
    overscroll-behavior:contain!important;
    padding-right:4px!important;
    scrollbar-width:thin!important;
    scrollbar-color:rgba(236,102,8,.3) transparent!important;
  }
  .nanu-location-list::-webkit-scrollbar{width:4px!important}
  .nanu-location-list::-webkit-scrollbar-thumb{background:rgba(236,102,8,.3)!important;border-radius:999px!important}
}


/* ===== HOTFIX 2026-08-10: premium polish for location cubes ===== */
.nanu-location-hub{
  gap:10px!important;
}
.nanu-location-hub__card{
  min-height:44px!important;
  padding:0 18px!important;
  border-radius:14px!important;
  background:linear-gradient(180deg,#ffffff 0%,#fffaf5 100%)!important;
  border:1px solid rgba(35,31,32,.10)!important;
  box-shadow:0 8px 20px rgba(35,31,32,.04)!important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease!important;
}
.nanu-location-hub__card .nanu-location-hub__copy strong{
  font-size:13px!important;
  font-weight:900!important;
  letter-spacing:-.01em!important;
}
.nanu-location-hub__card:hover{
  transform:translateY(-1px)!important;
  border-color:rgba(236,102,8,.22)!important;
  box-shadow:0 12px 22px rgba(236,102,8,.08)!important;
}
.nanu-location-hub__card.is-active{
  background:linear-gradient(135deg,#f38a1b 0%,#ec6608 100%)!important;
  border-color:#ec6608!important;
  box-shadow:0 16px 28px rgba(236,102,8,.22)!important;
}
.nanu-location-hub__card.is-active .nanu-location-hub__copy strong{
  color:#fff!important;
}

.nanu-city-store-card,
.nanu-region-store-card{
  border-radius:22px!important;
  background:
    linear-gradient(180deg,#ffffff 0%,#fffaf5 100%)!important;
  border:1px solid rgba(35,31,32,.08)!important;
  box-shadow:0 14px 34px rgba(35,31,32,.05)!important;
}
.nanu-city-store-card:before,
.nanu-region-store-card:before{
  left:0!important;right:0!important;top:0!important;height:3px!important;border-radius:22px 22px 0 0!important;
  background:linear-gradient(90deg,#ff9c00 0%,#ec6608 50%,rgba(236,102,8,0) 100%)!important;
  opacity:.92!important;
}
.nanu-city-store-card:hover,
.nanu-region-store-card:hover{
  transform:translateY(-3px)!important;
  border-color:rgba(236,102,8,.20)!important;
  box-shadow:0 18px 38px rgba(35,31,32,.08)!important;
}
.nanu-city-store-card.is-active,
.nanu-region-store-card.is-active{
  background:linear-gradient(180deg,#fff8f1 0%,#fffdfb 100%)!important;
  border-color:rgba(236,102,8,.26)!important;
  box-shadow:0 18px 42px rgba(236,102,8,.10)!important;
}
.nanu-city-store-card__top,
.nanu-region-store-card__top{
  gap:14px!important;
}
.nanu-city-store-card__tag,
.nanu-region-store-card__heading>span{
  min-height:23px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  background:#fff4e7!important;
  border:1px solid rgba(236,102,8,.12)!important;
  color:#d65d05!important;
  font-size:9px!important;
  letter-spacing:.06em!important;
}
.nanu-city-store-card__title strong,
.nanu-region-store-card__heading>strong{
  font-size:15px!important;
  line-height:1.24!important;
  letter-spacing:-.025em!important;
}
.nanu-city-store-card__address,
.nanu-region-store-card__address{
  margin-top:13px!important;
  color:#66584b!important;
}
.nanu-city-store-card__address-icon,
.nanu-region-store-card__address>i{
  width:24px!important;height:24px!important;min-width:24px!important;
  border-radius:9px!important;
  background:#fff4e8!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;
}
.nanu-city-store-card__contacts,
.nanu-region-store-card__meta{
  margin-top:14px!important;
  padding-top:14px!important;
  border-top:1px solid rgba(236,102,8,.09)!important;
}
.nanu-city-store-card__contact[href^="tel:"],
.nanu-region-store-card__phone{
  min-height:38px!important;
  padding:0 12px!important;
  border-radius:13px!important;
  background:#fff!important;
  border:1px solid rgba(35,31,32,.07)!important;
  box-shadow:0 6px 16px rgba(35,31,32,.03)!important;
  font-size:11px!important;
  font-weight:900!important;
  color:#2f2924!important;
}
.nanu-city-store-card__contact[href^="tel:"] svg,
.nanu-region-store-card__phone>i{
  width:30px!important;height:30px!important;min-width:30px!important;
  border-radius:10px!important;
  background:#fff4e8!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;
}
.nanu-region-store-card__phone>i{display:grid!important;place-items:center!important}
.nanu-city-store-card__contact[href^="tel:"]:hover,
.nanu-region-store-card__phone:hover{
  border-color:rgba(236,102,8,.18)!important;
  box-shadow:0 10px 20px rgba(236,102,8,.08)!important;
}
.nanu-city-store-card__contact[href^="tel:"]:hover svg,
.nanu-region-store-card__phone:hover>i{
  background:linear-gradient(135deg,#ff9c00,#ec6608)!important;
  color:#fff!important;
  transform:translateY(-1px)!important;
}
.nanu-region-store-card__hours{
  gap:7px!important;
}
.nanu-region-store-card__hours>span{
  min-height:30px!important;
  padding:0 9px!important;
  border-radius:10px!important;
  background:linear-gradient(180deg,#fff 0%,#fffbf8 100%)!important;
  border:1px solid rgba(35,31,32,.065)!important;
  box-shadow:0 4px 12px rgba(35,31,32,.025)!important;
}
.nanu-region-store-card__hours small{
  font-size:8px!important;
  letter-spacing:.04em!important;
}
.nanu-region-store-card__hours strong{
  font-size:9.5px!important;
}
.nanu-city-store-card__check,
.nanu-region-store-card__selected{
  min-height:27px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,#ff9c00,#ec6608)!important;
  color:#fff!important;
  box-shadow:0 8px 18px rgba(236,102,8,.18)!important;
}
.nanu-region-store-card__departments{
  margin-top:14px!important;
  padding-top:14px!important;
}
.nanu-region-store-card__departments-toggle{
  min-height:38px!important;
  padding:0 4px!important;
  color:#4f4338!important;
}
.nanu-region-store-card__departments-toggle b{
  min-width:24px!important;
  height:24px!important;
  background:#fff4e8!important;
  border:1px solid rgba(236,102,8,.10)!important;
}
.nanu-region-store-card__departments-list a{
  min-height:42px!important;
  border-radius:13px!important;
  box-shadow:0 4px 12px rgba(35,31,32,.025)!important;
}
@media(max-width:700px){
  .nanu-location-hub{gap:8px!important}
  .nanu-location-hub__card{
    min-height:42px!important;
    padding:0 14px!important;
    border-radius:12px!important;
  }
  .nanu-location-hub__card .nanu-location-hub__copy strong{font-size:12px!important}
  .nanu-city-store-card,
  .nanu-region-store-card{border-radius:18px!important}
  .nanu-city-store-card__title strong,
  .nanu-region-store-card__heading>strong{font-size:14px!important}
  .nanu-region-store-card__meta{gap:10px!important}
  .nanu-region-store-card__hours>span{min-height:28px!important;padding:0 8px!important}
}


/* ===== HOTFIX 2026-08-10: restore rich region cards with visible details ===== */
.nanu-location-list.is-region-stores{
  display:grid!important;
  grid-template-columns:minmax(0,1fr)!important;
  gap:14px!important;
  align-content:start!important;
}
.nanu-region-store-card,
.nanu-region-store-card.has-departments{
  display:flex!important;
  flex-direction:column!important;
  width:100%!important;
  height:auto!important;
  min-height:186px!important;
  max-height:none!important;
  overflow:hidden!important;
  padding:18px 18px 16px!important;
}
.nanu-region-store-card__top,
.nanu-region-store-card__heading,
.nanu-region-store-card__address,
.nanu-region-store-card__meta,
.nanu-region-store-card__departments{
  display:flex!important;
}
.nanu-region-store-card__top{
  align-items:flex-start!important;
  justify-content:space-between!important;
}
.nanu-region-store-card__heading{
  flex-direction:column!important;
  gap:8px!important;
  min-width:0!important;
}
.nanu-region-store-card__heading>strong{
  display:block!important;
  white-space:normal!important;
}
.nanu-region-store-card__selected{
  display:none!important;
}
.nanu-region-store-card.is-active .nanu-region-store-card__selected{
  display:inline-flex!important;
}
.nanu-region-store-card__address{
  align-items:flex-start!important;
  gap:10px!important;
  margin-top:14px!important;
}
.nanu-region-store-card__meta{
  display:grid!important;
  grid-template-columns:minmax(180px,.75fr) minmax(0,1.25fr)!important;
  align-items:center!important;
  gap:16px!important;
  margin-top:14px!important;
  padding-top:14px!important;
}
.nanu-region-store-card__phone{
  width:max-content!important;
  max-width:100%!important;
}
.nanu-region-store-card__hours{
  display:flex!important;
  justify-content:flex-end!important;
  align-items:center!important;
  gap:7px!important;
  flex-wrap:wrap!important;
}
.nanu-region-store-card__hours>span{
  display:inline-flex!important;
}
.nanu-region-store-card__departments{
  display:flex!important;
  flex-direction:column!important;
  margin-top:14px!important;
  padding-top:14px!important;
}
.nanu-region-store-card__departments-toggle{
  display:flex!important;
  align-items:center!important;
  width:100%!important;
}
.nanu-region-store-card__departments-list{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:8px!important;
  padding-top:10px!important;
}
.nanu-region-store-card__departments-list[hidden]{display:none!important}
.nanu-region-store-card__departments-list a{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
}
@media (max-width:700px){
  .nanu-region-store-card,
  .nanu-region-store-card.has-departments{
    min-height:0!important;
    padding:16px 14px 14px!important;
    border-radius:18px!important;
  }
  .nanu-region-store-card__meta{
    grid-template-columns:1fr!important;
    gap:10px!important;
    align-items:flex-start!important;
  }
  .nanu-region-store-card__hours{
    justify-content:flex-start!important;
  }
  .nanu-region-store-card__departments-list{
    grid-template-columns:1fr!important;
  }
}


/* ===== 2026-08-10: region cards = contacts only, schedule stays in live status ===== */
.nanu-region-store-card__hours{
  display:none!important;
}
.nanu-region-store-card__meta.nanu-region-store-card__meta--contacts{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:12px!important;
  margin-top:14px!important;
  padding-top:14px!important;
  border-top:1px solid rgba(236,102,8,.09)!important;
}
.nanu-region-store-card__contact-main{
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  min-width:0!important;
  flex-wrap:wrap!important;
}
.nanu-region-store-card__contact-label{
  display:inline-flex!important;
  align-items:center!important;
  min-height:28px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  background:#fff5e9!important;
  border:1px solid rgba(236,102,8,.10)!important;
  color:#9a7253!important;
  font-size:9px!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.055em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
.nanu-region-store-card__phone{
  display:inline-flex!important;
  align-items:center!important;
  gap:9px!important;
  min-height:40px!important;
  padding:4px 14px 4px 5px!important;
  border-radius:14px!important;
  background:linear-gradient(180deg,#fff 0%,#fffaf6 100%)!important;
  border:1px solid rgba(35,31,32,.075)!important;
  box-shadow:0 7px 18px rgba(35,31,32,.035)!important;
  color:#2f2924!important;
  text-decoration:none!important;
  font-size:11.5px!important;
  font-weight:950!important;
  white-space:nowrap!important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,color .18s ease!important;
}
.nanu-region-store-card__phone>i{
  display:grid!important;
  place-items:center!important;
  width:31px!important;
  height:31px!important;
  min-width:31px!important;
  border-radius:10px!important;
  background:#fff1e2!important;
  color:#ec6608!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;
}
.nanu-region-store-card__phone:hover{
  transform:translateY(-1px)!important;
  color:#d85d00!important;
  border-color:rgba(236,102,8,.20)!important;
  box-shadow:0 11px 22px rgba(236,102,8,.08)!important;
}
.nanu-region-store-card__phone:hover>i{
  background:linear-gradient(135deg,#ff9c00,#ec6608)!important;
  color:#fff!important;
}
.nanu-region-store-card__departments{
  margin-top:12px!important;
  padding-top:12px!important;
}
.nanu-region-store-card__departments-toggle{
  border-radius:13px!important;
  padding:0 10px!important;
  background:#fffaf5!important;
  border:1px solid rgba(236,102,8,.08)!important;
  transition:background .18s ease,border-color .18s ease!important;
}
.nanu-region-store-card__departments-toggle:hover{
  background:#fff5e9!important;
  border-color:rgba(236,102,8,.16)!important;
}
@media(max-width:700px){
  .nanu-region-store-card__meta.nanu-region-store-card__meta--contacts{
    display:block!important;
  }
  .nanu-region-store-card__contact-main{
    gap:8px!important;
  }
  .nanu-region-store-card__contact-label{
    min-height:26px!important;
    font-size:8.5px!important;
  }
  .nanu-region-store-card__phone{
    min-height:38px!important;
    font-size:11px!important;
  }
}


/* ===== 2026: NANU Service cards ===== */
.nanu-location-services.is-service-stores{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
  min-height:0!important;
  padding:0!important;
  margin-top:12px!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.nanu-service-store-card{
  position:relative!important;
  min-width:0!important;
  padding:17px!important;
  border-radius:21px!important;
  background:linear-gradient(180deg,#fff 0%,#fffaf5 100%)!important;
  border:1px solid rgba(35,31,32,.08)!important;
  box-shadow:0 11px 28px rgba(35,31,32,.05)!important;
  cursor:pointer!important;
  overflow:hidden!important;
  transition:transform .22s cubic-bezier(.2,.7,.2,1),border-color .22s ease,box-shadow .22s ease,background .22s ease!important;
}
.nanu-service-store-card:before{
  content:""!important;position:absolute!important;left:0!important;right:0!important;top:0!important;height:3px!important;
  background:linear-gradient(90deg,#ff9c00,#ec6608,rgba(236,102,8,0))!important;
}
.nanu-service-store-card:hover{
  transform:translateY(-3px)!important;
  border-color:rgba(236,102,8,.22)!important;
  box-shadow:0 18px 38px rgba(35,31,32,.08)!important;
}
.nanu-service-store-card.is-active{
  background:linear-gradient(135deg,#fff7ed 0%,#fff 74%)!important;
  border-color:rgba(236,102,8,.30)!important;
  box-shadow:0 18px 40px rgba(236,102,8,.10)!important;
}
.nanu-service-store-card__top{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:12px!important}
.nanu-service-store-card__heading{display:flex!important;flex-direction:column!important;gap:6px!important;min-width:0!important}
.nanu-service-store-card__heading>span{
  display:inline-flex!important;align-items:center!important;width:max-content!important;min-height:22px!important;padding:0 9px!important;border-radius:999px!important;
  background:#fff3e4!important;border:1px solid rgba(236,102,8,.12)!important;color:#d95f06!important;font-size:9px!important;font-weight:900!important;letter-spacing:.06em!important;text-transform:uppercase!important;
}
.nanu-service-store-card__heading>strong{color:#231f20!important;font-size:15px!important;line-height:1.2!important;font-weight:950!important;letter-spacing:-.025em!important}
.nanu-service-store-card__heading>small{color:#d65d05!important;font-size:11px!important;line-height:1.2!important;font-weight:900!important}
.nanu-service-store-card__selected{display:none!important;align-items:center!important;min-height:26px!important;padding:0 10px!important;border-radius:999px!important;background:linear-gradient(135deg,#ff9c00,#ec6608)!important;color:#fff!important;font-size:9px!important;font-weight:900!important;white-space:nowrap!important;box-shadow:0 8px 18px rgba(236,102,8,.18)!important}
.nanu-service-store-card.is-active .nanu-service-store-card__selected{display:inline-flex!important}
.nanu-service-store-card__address{display:flex!important;align-items:flex-start!important;gap:9px!important;margin-top:13px!important;color:#655548!important;font-size:11.5px!important;line-height:1.45!important;font-weight:760!important}
.nanu-service-store-card__address>i{display:grid!important;place-items:center!important;width:24px!important;height:24px!important;min-width:24px!important;border-radius:9px!important;background:#fff4e8!important;color:#ec6608!important;font-style:normal!important;box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important}
.nanu-service-store-card__address svg{width:13px!important;height:13px!important}
.nanu-service-store-card__contacts{margin-top:14px!important;padding-top:14px!important;border-top:1px solid rgba(236,102,8,.09)!important}
.nanu-service-store-card__contacts-label{display:block!important;margin-bottom:8px!important;color:#9a806a!important;font-size:9px!important;font-weight:900!important;letter-spacing:.06em!important;text-transform:uppercase!important}
.nanu-service-store-card__contacts>div{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important}
.nanu-service-store-card__phone{display:inline-flex!important;align-items:center!important;gap:7px!important;min-height:38px!important;padding:0 11px!important;border-radius:13px!important;background:#fff!important;border:1px solid rgba(35,31,32,.07)!important;box-shadow:0 6px 16px rgba(35,31,32,.03)!important;color:#2f2924!important;text-decoration:none!important;font-size:10.5px!important;font-weight:900!important;transition:all .18s ease!important}
.nanu-service-store-card__phone>i{display:grid!important;place-items:center!important;width:28px!important;height:28px!important;min-width:28px!important;border-radius:10px!important;background:#fff4e8!important;color:#ec6608!important;font-style:normal!important;box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;transition:all .18s ease!important}
.nanu-service-store-card__phone svg{width:14px!important;height:14px!important}
.nanu-service-store-card__phone:hover{color:#d85d00!important;border-color:rgba(236,102,8,.20)!important;box-shadow:0 10px 20px rgba(236,102,8,.08)!important}
.nanu-service-store-card__phone:hover>i{background:linear-gradient(135deg,#ff9c00,#ec6608)!important;color:#fff!important;transform:translateY(-1px)!important}
@media(max-width:700px){
  .nanu-location-services.is-service-stores{grid-template-columns:1fr!important;gap:9px!important}
  .nanu-service-store-card{padding:14px!important;border-radius:18px!important}
  .nanu-service-store-card__heading>strong{font-size:14px!important}
  .nanu-service-store-card__contacts>div{align-items:stretch!important}
  .nanu-service-store-card__phone{flex:1 1 auto!important;justify-content:flex-start!important}
}


/* ===== HOTFIX 2026-08-10: strict tab visibility ===== */
.nanu-location-panel .nanu-location-list[hidden],
.nanu-location-panel .nanu-location-services[hidden],
.nanu-location-panel .nanu-location-services.is-service-stores[hidden],
.nanu-location-panel .nanu-location-list.is-region-stores[hidden]{display:none!important;visibility:hidden!important;pointer-events:none!important}
.nanu-location-panel .nanu-location-list:not([hidden]),
.nanu-location-panel .nanu-location-services:not([hidden]){visibility:visible!important;pointer-events:auto!important}

/* keep service cards equal */
.nanu-location-services.is-service-stores{align-items:stretch!important}
.nanu-service-store-card{display:flex!important;flex-direction:column!important;align-self:stretch!important;height:100%!important;min-height:268px!important}
.nanu-service-store-card__contacts{margin-top:auto!important}
.nanu-service-store-card__contacts>div{align-items:flex-start!important}

/* clean region cards v2 */
.nanu-location-list.is-region-stores{display:grid!important;grid-template-columns:1fr!important;gap:14px!important;align-content:start!important}
.nanu-region-store-card{position:relative!important;padding:18px!important;border-radius:22px!important;background:linear-gradient(180deg,#fff 0%,#fffaf5 100%)!important;border:1px solid rgba(35,31,32,.08)!important;box-shadow:0 14px 34px rgba(35,31,32,.05)!important;overflow:hidden!important;height:auto!important;min-height:0!important;max-height:none!important;cursor:pointer!important;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease!important}
.nanu-region-store-card:before{content:""!important;position:absolute!important;left:0!important;right:0!important;top:0!important;height:3px!important;background:linear-gradient(90deg,#ff9c00,#ec6608,rgba(236,102,8,0))!important}
.nanu-region-store-card:hover{transform:translateY(-2px)!important;border-color:rgba(236,102,8,.18)!important;box-shadow:0 18px 38px rgba(35,31,32,.08)!important}
.nanu-region-store-card.is-active{background:linear-gradient(180deg,#fff8f1 0%,#fffdfb 100%)!important;border-color:rgba(236,102,8,.24)!important;box-shadow:0 18px 42px rgba(236,102,8,.10)!important}
.nanu-region-store-card__top{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:10px!important}
.nanu-region-store-card__heading{display:flex!important;flex-direction:column!important;gap:7px!important;min-width:0!important}
.nanu-region-store-card__heading>span{display:inline-flex!important;width:max-content!important;min-height:22px!important;align-items:center!important;padding:0 9px!important;border-radius:999px!important;background:#fff3e4!important;border:1px solid rgba(236,102,8,.11)!important;color:#d95f06!important;font-size:9px!important;line-height:1!important;font-weight:900!important;letter-spacing:.05em!important;text-transform:uppercase!important}
.nanu-region-store-card__heading>strong{color:#231f20!important;font-size:15px!important;line-height:1.22!important;font-weight:950!important;letter-spacing:-.022em!important}
.nanu-region-store-card__selected{display:none!important;align-items:center!important;min-height:27px!important;padding:0 10px!important;border-radius:999px!important;background:linear-gradient(135deg,#ff9c00,#ec6608)!important;color:#fff!important;font-size:9px!important;font-weight:900!important;white-space:nowrap!important;box-shadow:0 8px 18px rgba(236,102,8,.18)!important}
.nanu-region-store-card.is-active .nanu-region-store-card__selected{display:inline-flex!important}
.nanu-region-store-card__body-v2{display:flex!important;flex-direction:column!important;gap:14px!important;margin-top:14px!important}
.nanu-region-store-card__address-v2{display:flex!important;align-items:flex-start!important;gap:9px!important;color:#655548!important;font-size:12px!important;line-height:1.45!important;font-weight:760!important}
.nanu-region-store-card__address-v2 i{display:grid!important;place-items:center!important;width:24px!important;height:24px!important;min-width:24px!important;border-radius:9px!important;background:#fff4e8!important;color:#ec6608!important;box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important}
.nanu-region-store-card__address-v2 svg{width:13px!important;height:13px!important}
.nanu-region-store-card__main-row-v2{display:flex!important;align-items:center!important;gap:12px!important;flex-wrap:wrap!important;padding-top:14px!important;border-top:1px solid rgba(236,102,8,.09)!important}
.nanu-region-store-card__main-label-v2{display:inline-flex!important;align-items:center!important;min-height:34px!important;padding:0 12px!important;border-radius:999px!important;background:linear-gradient(180deg,#fff8ee 0%,#fff3e3 100%)!important;border:1px solid rgba(236,102,8,.14)!important;color:#c8640a!important;font-size:10px!important;line-height:1!important;font-weight:950!important;letter-spacing:.05em!important;text-transform:uppercase!important;box-shadow:0 6px 14px rgba(236,102,8,.05)!important}
.nanu-region-store-card__main-phone-v2{display:inline-flex!important;align-items:center!important;gap:8px!important;min-height:38px!important;padding:0 14px 0 8px!important;border-radius:999px!important;background:#fff!important;border:1px solid rgba(35,31,32,.08)!important;box-shadow:0 8px 18px rgba(35,31,32,.04)!important;color:#2f2924!important;text-decoration:none!important;font-size:12px!important;font-weight:950!important;white-space:nowrap!important}
.nanu-region-store-card__main-phone-v2 i{display:grid!important;place-items:center!important;width:28px!important;height:28px!important;min-width:28px!important;border-radius:999px!important;background:#fff4e8!important;color:#ec6608!important;box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;transition:all .18s ease!important}
.nanu-region-store-card__main-phone-v2 svg{width:14px!important;height:14px!important}
.nanu-region-store-card__main-phone-v2:hover{border-color:rgba(236,102,8,.18)!important;box-shadow:0 10px 20px rgba(236,102,8,.08)!important;color:#d85d00!important}
.nanu-region-store-card__main-phone-v2:hover i{background:linear-gradient(135deg,#ff9c00,#ec6608)!important;color:#fff!important;transform:translateY(-1px)!important}
.nanu-region-store-card__dept-wrap-v2{display:flex!important;flex-direction:column!important;gap:10px!important;padding-top:14px!important;border-top:1px dashed rgba(236,102,8,.12)!important}
.nanu-region-store-card__dept-head-v2{display:flex!important;align-items:center!important;gap:8px!important}
.nanu-region-store-card__dept-title-v2{display:inline-flex!important;align-items:center!important;min-height:30px!important;padding:0 11px!important;border-radius:999px!important;background:#fff4e8!important;border:1px solid rgba(236,102,8,.10)!important;color:#d75e04!important;font-size:10px!important;font-weight:900!important;letter-spacing:.04em!important;text-transform:uppercase!important}
.nanu-region-store-card__dept-head-v2 b{display:grid!important;place-items:center!important;min-width:22px!important;height:22px!important;padding:0 6px!important;border-radius:999px!important;background:#fff3e6!important;color:#dc6208!important;font-size:9px!important}
.nanu-region-store-card__dept-grid-v2{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}
.nanu-region-store-card__dept-item-v2{display:flex!important;flex-direction:column!important;align-items:flex-start!important;justify-content:center!important;gap:5px!important;min-height:58px!important;padding:10px 12px!important;border-radius:14px!important;background:linear-gradient(180deg,#fff 0%,#fffbf8 100%)!important;border:1px solid rgba(35,31,32,.06)!important;box-shadow:0 6px 14px rgba(35,31,32,.03)!important;color:#5c4e42!important;text-decoration:none!important;transition:background .18s ease,border-color .18s ease,transform .18s ease!important}
.nanu-region-store-card__dept-item-v2:hover{transform:translateY(-1px)!important;background:#fff8f0!important;border-color:rgba(236,102,8,.17)!important}
.nanu-region-store-card__dept-item-v2 span{display:block!important;min-width:0!important;font-size:10.5px!important;line-height:1.3!important;font-weight:850!important;color:#655648!important;white-space:normal!important}
.nanu-region-store-card__dept-item-v2 strong{display:block!important;color:#d65d04!important;font-size:11px!important;font-weight:950!important;white-space:nowrap!important}
@media(max-width:700px){
  .nanu-service-store-card{min-height:0!important;height:auto!important}
  .nanu-region-store-card{padding:15px!important;border-radius:18px!important}
  .nanu-region-store-card__heading>strong{font-size:14px!important}
  .nanu-region-store-card__main-row-v2{gap:10px!important}
  .nanu-region-store-card__main-label-v2{min-height:32px!important;padding:0 10px!important;font-size:9px!important}
  .nanu-region-store-card__main-phone-v2{min-height:36px!important;padding:0 12px 0 8px!important;font-size:11px!important;max-width:100%!important}
  .nanu-region-store-card__dept-grid-v2{grid-template-columns:1fr!important}
}


/* ===== NANU REGION CARDS V4 — dedicated, cache-safe layer ===== */
.nanu-location-panel .nanu-location-list[hidden],
.nanu-location-panel .nanu-location-services[hidden],
.nanu-location-panel .nanu-location-list.is-region-stores[hidden],
.nanu-location-panel .nanu-location-services.is-service-stores[hidden]{display:none!important;visibility:hidden!important;pointer-events:none!important}

.nanu-location-list.is-region-stores{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:12px!important;
  align-content:start!important;
}
.nanu-rg-card{
  display:block!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  padding:16px!important;
  overflow:hidden!important;
  border-radius:20px!important;
  background:linear-gradient(180deg,#fff 0%,#fffaf5 100%)!important;
  border:1px solid rgba(35,31,32,.08)!important;
  box-shadow:0 10px 28px rgba(35,31,32,.045)!important;
}
.nanu-rg-card.has-departments{
  padding:18px!important;
  border-color:rgba(236,102,8,.15)!important;
  box-shadow:0 16px 38px rgba(35,31,32,.065)!important;
}
.nanu-rg-card:before{
  left:0!important;right:0!important;top:0!important;height:3px!important;
  background:linear-gradient(90deg,#ff9c00,#ec6608 54%,rgba(236,102,8,0))!important;
  opacity:.92!important;
}
.nanu-rg-top{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:12px!important}
.nanu-rg-heading{display:flex!important;flex-direction:column!important;gap:7px!important;min-width:0!important}
.nanu-rg-heading>span{min-height:22px!important;padding:0 9px!important;border-radius:999px!important;background:#fff4e8!important;border:1px solid rgba(236,102,8,.12)!important;color:#d75e04!important;font-size:9px!important;font-weight:900!important;letter-spacing:.055em!important}
.nanu-rg-heading>strong{font-size:15px!important;line-height:1.22!important;font-weight:950!important;letter-spacing:-.025em!important;color:#231f20!important}

.nanu-rg-content{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:14px!important;
  margin-top:14px!important;
}
.nanu-rg-card.has-departments .nanu-rg-content{
  grid-template-columns:minmax(185px,.72fr) minmax(0,1.28fr)!important;
  align-items:start!important;
  gap:18px!important;
}
.nanu-rg-info{display:flex!important;flex-direction:column!important;gap:14px!important;min-width:0!important}
.nanu-rg-address{display:flex!important;align-items:flex-start!important;gap:9px!important;color:#655548!important;font-size:11.5px!important;line-height:1.45!important;font-weight:760!important}
.nanu-rg-address i{display:grid!important;place-items:center!important;width:24px!important;height:24px!important;min-width:24px!important;border-radius:9px!important;background:#fff4e8!important;color:#ec6608!important;box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important}
.nanu-rg-address svg{width:13px!important;height:13px!important}
.nanu-rg-main-phone{display:flex!important;align-items:center!important;gap:9px!important;flex-wrap:wrap!important;padding-top:13px!important;border-top:1px solid rgba(236,102,8,.09)!important}
.nanu-rg-main-phone__label{display:inline-flex!important;align-items:center!important;min-height:32px!important;padding:0 10px!important;border-radius:999px!important;background:#fff4e8!important;border:1px solid rgba(236,102,8,.12)!important;color:#c85f09!important;font-size:9px!important;font-weight:950!important;letter-spacing:.045em!important;text-transform:uppercase!important}
.nanu-rg-main-phone>a{display:inline-flex!important;align-items:center!important;gap:7px!important;min-height:36px!important;padding:0 12px 0 7px!important;border-radius:999px!important;background:#fff!important;border:1px solid rgba(35,31,32,.075)!important;box-shadow:0 7px 17px rgba(35,31,32,.04)!important;color:#2f2924!important;text-decoration:none!important;font-size:11px!important;font-weight:950!important;white-space:nowrap!important}
.nanu-rg-main-phone>a i{display:grid!important;place-items:center!important;width:27px!important;height:27px!important;min-width:27px!important;border-radius:50%!important;background:#fff3e6!important;color:#ec6608!important}
.nanu-rg-main-phone>a svg{width:13px!important;height:13px!important}
.nanu-rg-main-phone>a:hover{border-color:rgba(236,102,8,.18)!important;color:#d75e04!important;box-shadow:0 9px 20px rgba(236,102,8,.08)!important}

.nanu-rg-departments{
  display:flex!important;
  flex-direction:column!important;
  gap:10px!important;
  min-width:0!important;
  padding-left:18px!important;
  border-left:1px solid rgba(236,102,8,.10)!important;
}
.nanu-rg-departments__head{display:flex!important;align-items:center!important;gap:7px!important}
.nanu-rg-departments__head>span{display:inline-flex!important;align-items:center!important;min-height:30px!important;padding:0 10px!important;border-radius:999px!important;background:linear-gradient(135deg,#fff5e8,#fff0df)!important;border:1px solid rgba(236,102,8,.13)!important;color:#d65d04!important;font-size:10px!important;font-weight:950!important;letter-spacing:.05em!important;text-transform:uppercase!important}
.nanu-rg-departments__head>b{display:grid!important;place-items:center!important;min-width:23px!important;height:23px!important;padding:0 6px!important;border-radius:999px!important;background:#ec6608!important;color:#fff!important;font-size:9px!important;font-weight:950!important}
.nanu-rg-departments__grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}
.nanu-rg-department{display:flex!important;flex-direction:column!important;align-items:flex-start!important;justify-content:center!important;gap:4px!important;min-width:0!important;min-height:56px!important;padding:9px 10px!important;border-radius:13px!important;background:#fff!important;border:1px solid rgba(35,31,32,.06)!important;box-shadow:0 5px 13px rgba(35,31,32,.028)!important;text-decoration:none!important;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease!important}
.nanu-rg-department:hover{transform:translateY(-1px)!important;border-color:rgba(236,102,8,.18)!important;box-shadow:0 8px 18px rgba(236,102,8,.07)!important}
.nanu-rg-department>span{display:block!important;color:#67584a!important;font-size:9.5px!important;line-height:1.25!important;font-weight:850!important;white-space:normal!important}
.nanu-rg-department>strong{display:block!important;color:#d65d04!important;font-size:10.5px!important;line-height:1.15!important;font-weight:950!important;white-space:nowrap!important}

/* services stay equal-height */
.nanu-location-services.is-service-stores{align-items:stretch!important}
.nanu-service-store-card{display:flex!important;flex-direction:column!important;align-self:stretch!important;height:100%!important;min-height:268px!important}
.nanu-service-store-card__contacts{margin-top:auto!important}

@media(max-width:700px){
  .nanu-rg-card,.nanu-rg-card.has-departments{padding:14px!important;border-radius:17px!important}
  .nanu-rg-heading>strong{font-size:14px!important}
  .nanu-rg-card.has-departments .nanu-rg-content{grid-template-columns:1fr!important;gap:13px!important}
  .nanu-rg-departments{padding-left:0!important;padding-top:13px!important;border-left:0!important;border-top:1px solid rgba(236,102,8,.10)!important}
  .nanu-rg-departments__grid{grid-template-columns:1fr!important}
  .nanu-service-store-card{height:auto!important;min-height:0!important}
}


/* ======================================================================
   NANU REGIONS FINAL V5 — isolated from all legacy .nanu-region-store-card
   ====================================================================== */
.nanu-location-panel .nanu-location-list[hidden],
.nanu-location-panel .nanu-location-services[hidden],
.nanu-location-panel .nanu-location-services.is-service-stores[hidden],
.nanu-location-panel .nanu-location-list.is-region-stores[hidden]{
  display:none!important;
  visibility:hidden!important;
  pointer-events:none!important;
}
.nanu-location-panel .nanu-location-list:not([hidden]),
.nanu-location-panel .nanu-location-services:not([hidden]){
  visibility:visible!important;
  pointer-events:auto!important;
}

.nanu-location-list.is-region-stores{
  display:flex!important;
  flex-direction:column!important;
  gap:14px!important;
  align-items:stretch!important;
  margin-top:12px!important;
  padding-bottom:8px!important;
}

.nanu-region-v5-card{
  position:relative!important;
  display:block!important;
  flex:0 0 auto!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  box-sizing:border-box!important;
  padding:18px!important;
  margin:0!important;
  overflow:visible!important;
  border:1px solid rgba(35,31,32,.085)!important;
  border-radius:22px!important;
  background:linear-gradient(180deg,#ffffff 0%,#fffaf5 100%)!important;
  box-shadow:0 12px 30px rgba(35,31,32,.05)!important;
  cursor:pointer!important;
  isolation:isolate!important;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease!important;
}
.nanu-region-v5-card::before{
  content:""!important;
  position:absolute!important;
  z-index:0!important;
  left:0!important;
  right:0!important;
  top:0!important;
  height:3px!important;
  border-radius:22px 22px 0 0!important;
  background:linear-gradient(90deg,#ff9c00 0%,#ec6608 56%,rgba(236,102,8,0) 100%)!important;
}
.nanu-region-v5-card:hover{
  transform:translateY(-2px)!important;
  border-color:rgba(236,102,8,.20)!important;
  box-shadow:0 18px 38px rgba(35,31,32,.075)!important;
}
.nanu-region-v5-card.is-active{
  background:linear-gradient(180deg,#fff8f0 0%,#fffdfb 100%)!important;
  border-color:rgba(236,102,8,.30)!important;
  box-shadow:0 18px 42px rgba(236,102,8,.10)!important;
}
.nanu-region-v5-card > *{position:relative!important;z-index:1!important}

.nanu-region-v5-head{
  display:flex!important;
  align-items:flex-start!important;
  justify-content:space-between!important;
  gap:14px!important;
}
.nanu-region-v5-title{
  display:flex!important;
  flex-direction:column!important;
  gap:8px!important;
  min-width:0!important;
}
.nanu-region-v5-tag{
  display:inline-flex!important;
  align-items:center!important;
  width:max-content!important;
  max-width:100%!important;
  min-height:23px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  background:#fff3e4!important;
  border:1px solid rgba(236,102,8,.12)!important;
  color:#d65d05!important;
  font-size:9px!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.055em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
.nanu-region-v5-title > strong{
  display:block!important;
  color:#231f20!important;
  font-size:15px!important;
  line-height:1.22!important;
  font-weight:950!important;
  letter-spacing:-.025em!important;
  white-space:normal!important;
}
.nanu-region-v5-selected{
  display:none!important;
  align-items:center!important;
  min-height:28px!important;
  padding:0 11px!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,#ff9c00,#ec6608)!important;
  color:#fff!important;
  font-size:9px!important;
  font-weight:900!important;
  white-space:nowrap!important;
  box-shadow:0 8px 18px rgba(236,102,8,.18)!important;
}
.nanu-region-v5-card.is-active .nanu-region-v5-selected{display:inline-flex!important}

.nanu-region-v5-layout{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:0!important;
  margin-top:14px!important;
  min-height:0!important;
  overflow:visible!important;
}
.nanu-region-v5-card--departments .nanu-region-v5-layout{
  grid-template-columns:minmax(235px,.88fr) minmax(0,1.45fr)!important;
  gap:18px!important;
  align-items:start!important;
}
.nanu-region-v5-main{
  display:flex!important;
  flex-direction:column!important;
  gap:14px!important;
  min-width:0!important;
}
.nanu-region-v5-address{
  display:flex!important;
  align-items:flex-start!important;
  gap:10px!important;
  min-width:0!important;
  color:#655548!important;
  font-size:11.5px!important;
  line-height:1.45!important;
  font-weight:760!important;
}
.nanu-region-v5-address > i{
  display:grid!important;
  place-items:center!important;
  width:24px!important;
  height:24px!important;
  min-width:24px!important;
  border-radius:9px!important;
  background:#fff4e8!important;
  color:#ec6608!important;
  font-style:normal!important;
  box-shadow:inset 0 0 0 1px rgba(236,102,8,.10)!important;
}
.nanu-region-v5-address svg{width:13px!important;height:13px!important;display:block!important}
.nanu-region-v5-address > span{min-width:0!important;white-space:normal!important}

.nanu-region-v5-phone-row{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  flex-wrap:wrap!important;
  padding-top:14px!important;
  border-top:1px solid rgba(236,102,8,.09)!important;
}
.nanu-region-v5-phone-label{
  display:inline-flex!important;
  align-items:center!important;
  min-height:33px!important;
  padding:0 11px!important;
  border-radius:999px!important;
  background:linear-gradient(180deg,#fff8ee 0%,#fff3e3 100%)!important;
  border:1px solid rgba(236,102,8,.14)!important;
  color:#c8640a!important;
  font-size:9px!important;
  line-height:1!important;
  font-weight:950!important;
  letter-spacing:.05em!important;
  text-transform:uppercase!important;
}
.nanu-region-v5-phone{
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  min-height:38px!important;
  padding:0 14px 0 7px!important;
  border-radius:999px!important;
  background:#fff!important;
  border:1px solid rgba(35,31,32,.075)!important;
  box-shadow:0 7px 17px rgba(35,31,32,.04)!important;
  color:#2f2924!important;
  text-decoration:none!important;
  font-size:11px!important;
  font-weight:950!important;
  white-space:nowrap!important;
}
.nanu-region-v5-phone > i{
  display:grid!important;
  place-items:center!important;
  width:28px!important;
  height:28px!important;
  min-width:28px!important;
  border-radius:50%!important;
  background:#fff3e6!important;
  color:#ec6608!important;
}
.nanu-region-v5-phone svg{width:13px!important;height:13px!important}
.nanu-region-v5-phone:hover{
  border-color:rgba(236,102,8,.18)!important;
  color:#d75e04!important;
  box-shadow:0 9px 20px rgba(236,102,8,.08)!important;
}
.nanu-region-v5-phone:hover > i{background:linear-gradient(135deg,#ff9c00,#ec6608)!important;color:#fff!important}

.nanu-region-v5-departments{
  display:flex!important;
  flex-direction:column!important;
  gap:10px!important;
  min-width:0!important;
  min-height:0!important;
  height:auto!important;
  max-height:none!important;
  overflow:visible!important;
  padding-left:18px!important;
  border-left:1px dashed rgba(236,102,8,.13)!important;
}
.nanu-region-v5-departments__head{
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
}
.nanu-region-v5-departments__head > span{
  display:inline-flex!important;
  align-items:center!important;
  min-height:30px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,#fff5e8,#fff0df)!important;
  border:1px solid rgba(236,102,8,.13)!important;
  color:#d65d04!important;
  font-size:10px!important;
  font-weight:950!important;
  letter-spacing:.05em!important;
  text-transform:uppercase!important;
}
.nanu-region-v5-departments__head > b{
  display:grid!important;
  place-items:center!important;
  min-width:23px!important;
  height:23px!important;
  padding:0 6px!important;
  border-radius:999px!important;
  background:#ec6608!important;
  color:#fff!important;
  font-size:9px!important;
  font-weight:950!important;
}
.nanu-region-v5-departments__grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  grid-auto-rows:auto!important;
  gap:8px!important;
  align-items:stretch!important;
  min-height:0!important;
  height:auto!important;
  max-height:none!important;
  overflow:visible!important;
}
.nanu-region-v5-department{
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-start!important;
  justify-content:center!important;
  gap:5px!important;
  width:100%!important;
  min-width:0!important;
  min-height:58px!important;
  height:auto!important;
  max-height:none!important;
  padding:10px 11px!important;
  box-sizing:border-box!important;
  border-radius:13px!important;
  background:#fff!important;
  border:1px solid rgba(35,31,32,.065)!important;
  box-shadow:0 5px 13px rgba(35,31,32,.028)!important;
  color:#5c4e42!important;
  text-decoration:none!important;
  overflow:visible!important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease!important;
}
.nanu-region-v5-department:hover{
  transform:translateY(-1px)!important;
  border-color:rgba(236,102,8,.18)!important;
  box-shadow:0 8px 18px rgba(236,102,8,.07)!important;
}
.nanu-region-v5-department > span{
  display:block!important;
  width:100%!important;
  color:#67584a!important;
  font-size:9.5px!important;
  line-height:1.28!important;
  font-weight:850!important;
  white-space:normal!important;
  overflow-wrap:anywhere!important;
}
.nanu-region-v5-department > strong{
  display:block!important;
  color:#d65d04!important;
  font-size:10.5px!important;
  line-height:1.15!important;
  font-weight:950!important;
  white-space:nowrap!important;
}

@media (max-width:900px){
  .nanu-region-v5-card--departments .nanu-region-v5-layout{
    grid-template-columns:1fr!important;
    gap:14px!important;
  }
  .nanu-region-v5-departments{
    padding-left:0!important;
    padding-top:14px!important;
    border-left:0!important;
    border-top:1px dashed rgba(236,102,8,.13)!important;
  }
}
@media (max-width:700px){
  .nanu-location-list.is-region-stores{gap:10px!important}
  .nanu-region-v5-card{padding:14px!important;border-radius:18px!important}
  .nanu-region-v5-title > strong{font-size:14px!important}
  .nanu-region-v5-phone-row{gap:8px!important}
  .nanu-region-v5-phone-label{min-height:31px!important;padding:0 9px!important;font-size:8.5px!important}
  .nanu-region-v5-phone{min-height:36px!important;padding:0 11px 0 7px!important;font-size:10.5px!important;max-width:100%!important}
  .nanu-region-v5-departments__grid{grid-template-columns:1fr!important}
  .nanu-region-v5-department{min-height:54px!important}
}


/* ===== NANU REGIONS v7: toggle only, preserve stable v5 cards ===== */
.nanu-region-v7-departments{
  display:flex!important;
  flex-direction:column!important;
  gap:10px!important;
  min-width:0!important;
}
.nanu-region-v7-toggle{
  display:inline-flex!important;
  align-items:center!important;
  align-self:flex-start!important;
  gap:8px!important;
  min-height:34px!important;
  padding:0 11px!important;
  border:1px solid rgba(236,102,8,.14)!important;
  border-radius:999px!important;
  background:linear-gradient(180deg,#fff8ee 0%,#fff2df 100%)!important;
  color:#d65d04!important;
  box-shadow:0 6px 14px rgba(236,102,8,.05)!important;
  cursor:pointer!important;
  font:inherit!important;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease!important;
}
.nanu-region-v7-toggle:hover{
  transform:translateY(-1px)!important;
  border-color:rgba(236,102,8,.24)!important;
  box-shadow:0 9px 18px rgba(236,102,8,.09)!important;
}
.nanu-region-v7-toggle__text{
  font-size:10px!important;
  line-height:1!important;
  font-weight:950!important;
  letter-spacing:.035em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
.nanu-region-v7-toggle>b{
  display:grid!important;
  place-items:center!important;
  min-width:22px!important;
  height:22px!important;
  padding:0 6px!important;
  border-radius:999px!important;
  background:#ec6608!important;
  color:#fff!important;
  font-size:9px!important;
  font-weight:950!important;
}
.nanu-region-v7-toggle>svg{
  width:15px!important;
  height:15px!important;
  transition:transform .24s ease!important;
}
.nanu-region-v7-toggle[aria-expanded="true"]>svg{transform:rotate(180deg)!important}
.nanu-region-v7-grid[hidden]{display:none!important}
.nanu-region-v7-grid:not([hidden]){
  display:grid!important;
  animation:nanuRegionV7Reveal .24s cubic-bezier(.2,.72,.2,1) both!important;
}
@keyframes nanuRegionV7Reveal{
  from{opacity:0;transform:translateY(-5px)}
  to{opacity:1;transform:translateY(0)}
}
@media(max-width:700px){
  .nanu-region-v7-toggle{min-height:32px!important;padding:0 10px!important}
  .nanu-region-v7-toggle__text{font-size:9px!important}
}


/* ===== NANU REGIONS v7.1: compact main phone row only ===== */
@media (min-width:901px){
  .nanu-region-v5-card--departments{
    padding:15px 17px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-layout{
    grid-template-columns:minmax(305px,1.08fr) minmax(180px,.92fr)!important;
    gap:16px!important;
    margin-top:11px!important;
    align-items:start!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-main{
    gap:10px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-address{
    min-height:28px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-phone-row{
    display:flex!important;
    align-items:center!important;
    flex-wrap:nowrap!important;
    gap:8px!important;
    padding-top:10px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-phone-label{
    flex:0 0 auto!important;
    min-height:30px!important;
    padding:0 9px!important;
    font-size:8.5px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-phone{
    flex:0 0 auto!important;
    min-height:34px!important;
    padding:0 11px 0 6px!important;
    gap:6px!important;
    font-size:10.5px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-phone > i{
    width:25px!important;
    height:25px!important;
    min-width:25px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v7-departments{
    justify-content:flex-start!important;
    padding-top:1px!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v7-toggle{
    min-height:32px!important;
    padding:0 10px!important;
  }
}
@media (max-width:900px){
  .nanu-region-v5-card--departments .nanu-region-v5-phone-row{
    flex-wrap:wrap!important;
  }
}


/* ===== NANU REGIONS v7.2: expanded department numbers use full card width ===== */
@media (min-width:901px){
  .nanu-region-v5-card--departments .nanu-region-v5-layout{
    grid-template-columns:minmax(305px,1.08fr) minmax(180px,.92fr)!important;
    align-items:start!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v5-main{
    grid-column:1!important;
    grid-row:1!important;
  }
  .nanu-region-v5-card--departments .nanu-region-v7-departments{
    grid-column:2!important;
    grid-row:1!important;
    min-width:0!important;
  }
  .nanu-region-v5-card--departments.is-departments-open .nanu-region-v7-departments{
    grid-column:1 / -1!important;
    grid-row:2!important;
    width:100%!important;
    margin-top:2px!important;
    padding-left:0!important;
    padding-top:13px!important;
    border-left:0!important;
    border-top:1px dashed rgba(236,102,8,.13)!important;
  }
  .nanu-region-v5-card--departments.is-departments-open .nanu-region-v7-toggle{
    align-self:flex-start!important;
  }
  .nanu-region-v5-card--departments.is-departments-open .nanu-region-v7-grid{
    width:100%!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:9px!important;
  }
  .nanu-region-v5-card--departments.is-departments-open .nanu-region-v5-department{
    min-height:54px!important;
    padding:9px 12px!important;
  }
  .nanu-region-v5-card--departments.is-departments-open .nanu-region-v5-department > span{
    overflow-wrap:normal!important;
    word-break:normal!important;
    hyphens:none!important;
  }
}


/* ===== CHISINAU / Constructorilor v7: department phones toggle ===== */
.nanu-city-store-card.has-departments{
  height:auto!important;
  max-height:none!important;
}
.nanu-city-store-card.has-departments .nanu-city-store-card__contacts{
  gap:9px!important;
}
.nanu-city-v7-toggle{
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  min-height:34px!important;
  padding:0 11px!important;
  margin-left:auto!important;
  border:1px solid rgba(236,102,8,.14)!important;
  border-radius:999px!important;
  background:linear-gradient(180deg,#fff8ee 0%,#fff2df 100%)!important;
  color:#d65d04!important;
  box-shadow:0 6px 14px rgba(236,102,8,.05)!important;
  cursor:pointer!important;
  font:inherit!important;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease!important;
}
.nanu-city-v7-toggle:hover{
  transform:translateY(-1px)!important;
  border-color:rgba(236,102,8,.24)!important;
  box-shadow:0 9px 18px rgba(236,102,8,.09)!important;
}
.nanu-city-v7-toggle__text{
  font-size:10px!important;
  line-height:1!important;
  font-weight:950!important;
  letter-spacing:.035em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
.nanu-city-v7-toggle>b{
  display:grid!important;
  place-items:center!important;
  min-width:22px!important;
  height:22px!important;
  padding:0 6px!important;
  border-radius:999px!important;
  background:#ec6608!important;
  color:#fff!important;
  font-size:9px!important;
  font-weight:950!important;
}
.nanu-city-v7-toggle>svg{
  width:15px!important;
  height:15px!important;
  transition:transform .24s ease!important;
}
.nanu-city-v7-toggle[aria-expanded="true"]>svg{transform:rotate(180deg)!important}
.nanu-city-v7-departments{
  width:100%!important;
  margin-top:0!important;
}
.nanu-city-store-card.has-departments.is-departments-open .nanu-city-v7-departments{
  margin-top:13px!important;
  padding-top:13px!important;
  border-top:1px dashed rgba(236,102,8,.13)!important;
}
.nanu-city-v7-grid[hidden]{display:none!important}
.nanu-city-v7-grid:not([hidden]){
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:9px!important;
  animation:nanuCityV7Reveal .24s cubic-bezier(.2,.72,.2,1) both!important;
}
.nanu-city-v7-department{
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-start!important;
  justify-content:center!important;
  gap:5px!important;
  min-width:0!important;
  min-height:54px!important;
  padding:9px 12px!important;
  border-radius:14px!important;
  background:linear-gradient(180deg,#fff 0%,#fffbf8 100%)!important;
  border:1px solid rgba(35,31,32,.06)!important;
  box-shadow:0 6px 14px rgba(35,31,32,.03)!important;
  color:#5c4e42!important;
  text-decoration:none!important;
  transition:background .18s ease,border-color .18s ease,transform .18s ease!important;
}
.nanu-city-v7-department:hover{
  transform:translateY(-1px)!important;
  background:#fff8f0!important;
  border-color:rgba(236,102,8,.17)!important;
}
.nanu-city-v7-department>span{
  display:block!important;
  font-size:10.5px!important;
  line-height:1.3!important;
  font-weight:850!important;
  color:#655648!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:normal!important;
}
.nanu-city-v7-department>strong{
  display:block!important;
  color:#d65d04!important;
  font-size:11px!important;
  line-height:1.15!important;
  font-weight:950!important;
  white-space:nowrap!important;
}
@keyframes nanuCityV7Reveal{
  from{opacity:0;transform:translateY(-5px)}
  to{opacity:1;transform:translateY(0)}
}
@media(max-width:700px){
  .nanu-city-v7-toggle{
    margin-left:0!important;
    min-height:32px!important;
    padding:0 10px!important;
  }
  .nanu-city-v7-toggle__text{font-size:9px!important}
  .nanu-city-v7-grid:not([hidden]){grid-template-columns:1fr!important;gap:8px!important}
  .nanu-city-v7-department{min-height:52px!important}
}


/* ===== MOBILE LOCATION PANEL: stable inner scroll + touch buttons ===== */
@media (max-width:700px){
  .nanu-location-panel{
    overflow:hidden!important;
    overscroll-behavior:contain!important;
    touch-action:pan-y!important;
    -webkit-overflow-scrolling:touch!important;
  }
  .nanu-location-panel__head,
  .nanu-location-hub{
    flex:0 0 auto!important;
  }
  .nanu-location-list,
  .nanu-location-services{
    flex:1 1 auto!important;
    min-height:0!important;
    max-height:none!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    overscroll-behavior-y:contain!important;
    touch-action:pan-y!important;
    -webkit-overflow-scrolling:touch!important;
    scroll-behavior:auto!important;
    padding-bottom:max(16px,env(safe-area-inset-bottom))!important;
  }
  .nanu-location-list{
    scrollbar-width:none!important;
  }
  .nanu-location-list::-webkit-scrollbar{
    width:0!important;
    height:0!important;
    display:none!important;
  }
  .nanu-city-store-card,
  .nanu-region-v5-card,
  .nanu-service-store-card{
    scroll-margin-top:10px!important;
    touch-action:pan-y!important;
  }
  .nanu-city-v7-toggle,
  .nanu-region-v7-toggle,
  .nanu-location-hub__card,
  .nanu-work-panel__close,
  .nanu-city-store-card__contact,
  .nanu-city-v7-department,
  .nanu-region-v5-phone,
  .nanu-region-v5-department,
  .nanu-service-store-card__phone{
    touch-action:manipulation!important;
    -webkit-tap-highlight-color:transparent!important;
  }
  .nanu-city-v7-toggle,
  .nanu-region-v7-toggle{
    user-select:none!important;
    -webkit-user-select:none!important;
  }
  .nanu-city-store-card.has-departments.is-departments-open,
  .nanu-region-v5-card--departments.is-departments-open{
    overflow:visible!important;
  }
  .nanu-city-store-card.has-departments.is-departments-open .nanu-city-v7-grid,
  .nanu-region-v5-card--departments.is-departments-open .nanu-region-v7-grid{
    width:100%!important;
    max-width:100%!important;
  }
}


/* ===== MOBILE CHISINAU POLISH 2026-08-10 ===== */
@media (max-width:700px){
  /* Match the clean mobile rhythm already used by Regions. */
  .nanu-location-list.is-chisinau-stores{
    display:flex!important;
    flex-direction:column!important;
    gap:10px!important;
    width:100%!important;
    margin-top:8px!important;
    padding:0 2px max(18px,env(safe-area-inset-bottom))!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card,
  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.is-primary{
    width:100%!important;
    min-width:0!important;
    min-height:0!important;
    height:auto!important;
    max-height:none!important;
    padding:13px 13px 12px!important;
    border-radius:18px!important;
    overflow:hidden!important;
    background:linear-gradient(180deg,#fff 0%,#fffbf7 100%)!important;
    border:1px solid rgba(35,31,32,.075)!important;
    box-shadow:0 9px 22px rgba(35,31,32,.04)!important;
    transform:none!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card:before{
    left:13px!important;
    right:13px!important;
    height:2px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.is-active{
    border-color:rgba(236,102,8,.24)!important;
    background:linear-gradient(180deg,#fff8f1 0%,#fffdfb 100%)!important;
    box-shadow:0 12px 26px rgba(236,102,8,.075)!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__top{
    gap:9px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__title{
    gap:6px!important;
    padding-right:3px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__tag{
    min-height:20px!important;
    padding:0 8px!important;
    font-size:8.5px!important;
    letter-spacing:.04em!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__title strong{
    font-size:13.5px!important;
    line-height:1.22!important;
    letter-spacing:-.02em!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__check{
    width:23px!important;
    height:23px!important;
    min-width:23px!important;
    font-size:11px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__address{
    gap:8px!important;
    margin-top:10px!important;
    font-size:10.8px!important;
    line-height:1.38!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__address-icon{
    width:22px!important;
    height:22px!important;
    min-width:22px!important;
    border-radius:8px!important;
  }

  /* Contacts become a compact mobile action row. */
  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__contacts{
    display:flex!important;
    align-items:center!important;
    gap:7px!important;
    width:100%!important;
    margin-top:10px!important;
    padding-top:10px!important;
    border-top:1px solid rgba(236,102,8,.075)!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__contact[href^="tel:"]{
    flex:0 1 auto!important;
    min-width:0!important;
    min-height:34px!important;
    padding:0 8px 0 4px!important;
    border-radius:11px!important;
    background:#fff!important;
    border:1px solid rgba(35,31,32,.065)!important;
    box-shadow:0 5px 13px rgba(35,31,32,.025)!important;
    font-size:10.2px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__contact[href^="tel:"] svg{
    width:25px!important;
    height:25px!important;
    flex:0 0 25px!important;
    padding:6px!important;
    border-radius:8px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__contact[href^="mailto:"]{
    flex:1 1 100%!important;
    order:3!important;
    width:100%!important;
    max-width:100%!important;
    min-height:32px!important;
    padding:0 9px!important;
    border-radius:10px!important;
    font-size:9.7px!important;
    overflow:hidden!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card__contact[href^="mailto:"] span{
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
  }

  /* Constructorilor: phone + toggle stay compact on one row when space allows. */
  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-v7-toggle{
    flex:0 0 auto!important;
    order:2!important;
    margin-left:auto!important;
    min-height:34px!important;
    padding:0 9px!important;
    gap:6px!important;
    border-radius:11px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-v7-toggle__text{
    font-size:8.5px!important;
    letter-spacing:.025em!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-v7-toggle>b{
    min-width:20px!important;
    height:20px!important;
    padding:0 5px!important;
    font-size:8px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-v7-toggle>svg{
    width:13px!important;
    height:13px!important;
  }

  /* Expanded department block grows naturally downward without breaking inner scroll. */
  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments.is-departments-open{
    overflow:visible!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments.is-departments-open .nanu-city-v7-departments{
    width:100%!important;
    margin-top:10px!important;
    padding-top:10px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-v7-grid:not([hidden]){
    width:100%!important;
    grid-template-columns:1fr!important;
    gap:7px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-v7-department{
    min-height:48px!important;
    padding:8px 10px!important;
    border-radius:12px!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-v7-department>span{
    font-size:9.8px!important;
    line-height:1.25!important;
  }

  .nanu-location-list.is-chisinau-stores .nanu-city-v7-department>strong{
    font-size:10.5px!important;
  }
}

@media (max-width:390px){
  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-store-card__contacts{
    align-items:stretch!important;
  }
  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-store-card__contact[href^="tel:"],
  .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-v7-toggle{
    flex:1 1 calc(50% - 4px)!important;
    justify-content:center!important;
    margin-left:0!important;
  }
}


/* ===== 2026-08-10 MOBILE CHISINAU FULL STABILITY FIX ===== */
@media (max-width:700px){
  html.nanu-location-mobile-open,
  body.nanu-location-mobile-open{
    overflow:hidden!important;
    overscroll-behavior:none!important;
  }

  #nanuLocationPanel.nanu-location-panel.is-open{
    display:flex!important;
    flex-direction:column!important;
    overflow:hidden!important;
    overscroll-behavior:none!important;
    isolation:isolate!important;
  }

  #nanuLocationPanel .nanu-location-panel__head,
  #nanuLocationPanel .nanu-location-hub{
    flex:0 0 auto!important;
  }

  #nanuLocationPanel .nanu-location-list.is-chisinau-stores{
    flex:1 1 auto!important;
    min-height:0!important;
    height:auto!important;
    max-height:none!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    overscroll-behavior-y:contain!important;
    -webkit-overflow-scrolling:touch!important;
    touch-action:pan-y!important;
    scroll-behavior:auto!important;
    contain:layout style!important;
    padding:0 2px max(24px,env(safe-area-inset-bottom))!important;
  }

  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card,
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.is-primary{
    position:relative!important;
    flex:0 0 auto!important;
    width:100%!important;
    min-width:0!important;
    min-height:0!important;
    height:auto!important;
    max-height:none!important;
    overflow:hidden!important;
    touch-action:pan-y!important;
    backface-visibility:hidden!important;
    transform:translateZ(0)!important;
  }

  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card__contacts{
    display:flex!important;
    flex-wrap:wrap!important;
    align-items:center!important;
    width:100%!important;
    min-width:0!important;
    gap:7px!important;
  }

  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-store-card__contact[href^="tel:"]{
    flex:1 1 142px!important;
    min-width:0!important;
    max-width:100%!important;
  }

  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-v7-toggle{
    flex:0 0 auto!important;
    min-width:0!important;
    max-width:100%!important;
    margin-left:0!important;
    white-space:nowrap!important;
    touch-action:manipulation!important;
  }

  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card__contact[href^="mailto:"]{
    flex:1 1 100%!important;
    width:100%!important;
    max-width:100%!important;
  }

  /* Expanded Constructorilor stays inside the card and participates in normal flow. */
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments.is-departments-open{
    overflow:hidden!important;
    contain:none!important;
  }
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-v7-departments{
    position:static!important;
    inset:auto!important;
    float:none!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin:0!important;
    padding:0!important;
    overflow:visible!important;
  }
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments.is-departments-open .nanu-city-v7-departments{
    margin-top:10px!important;
    padding-top:10px!important;
    border-top:1px dashed rgba(236,102,8,.12)!important;
  }
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-v7-grid:not([hidden]){
    position:static!important;
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:7px!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
  }
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-v7-department{
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    min-height:50px!important;
    padding:9px 10px!important;
    overflow:hidden!important;
    touch-action:manipulation!important;
  }
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-v7-department>span{
    min-width:0!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-v7-department>strong{
    white-space:nowrap!important;
  }
}

@media (max-width:390px){
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-store-card__contacts{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:7px!important;
  }
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-store-card__contact[href^="tel:"],
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-v7-toggle,
  #nanuLocationPanel .nanu-location-list.is-chisinau-stores .nanu-city-store-card.has-departments .nanu-city-store-card__contact[href^="mailto:"]{
    width:100%!important;
    max-width:100%!important;
    justify-content:center!important;
    margin:0!important;
  }
}


/* ===== 2026-08-10 REGIONS: same stable phone/toggle layout as Chisinau ===== */
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v5-layout{
  display:block!important;
  grid-template-columns:1fr!important;
  gap:0!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v5-main{
  width:100%!important;
  min-width:0!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-phone-row{
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:center!important;
  gap:8px!important;
  width:100%!important;
  min-width:0!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v5-phone-label{
  flex:0 0 auto!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v5-phone{
  flex:0 0 auto!important;
  min-width:0!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v7-toggle{
  position:static!important;
  inset:auto!important;
  float:none!important;
  flex:0 0 auto!important;
  align-self:center!important;
  margin-left:auto!important;
  min-width:0!important;
  max-width:100%!important;
  min-height:34px!important;
  padding:0 10px!important;
  gap:6px!important;
  border-radius:11px!important;
  white-space:nowrap!important;
  touch-action:manipulation!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v7-toggle__text{
  font-size:8.7px!important;
  letter-spacing:.025em!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v7-toggle>b{
  min-width:20px!important;
  height:20px!important;
  padding:0 5px!important;
  font-size:8px!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v7-toggle>svg{
  width:13px!important;
  height:13px!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v7-departments{
  position:static!important;
  inset:auto!important;
  float:none!important;
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  overflow:visible!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments.is-departments-open .nanu-region-v7-departments{
  width:100%!important;
  margin-top:10px!important;
  padding-top:10px!important;
  border-top:1px dashed rgba(236,102,8,.12)!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v7-grid[hidden]{
  display:none!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v7-grid:not([hidden]){
  position:static!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:8px!important;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  height:auto!important;
  max-height:none!important;
  overflow:visible!important;
}
#nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-department{
  min-width:0!important;
  max-width:100%!important;
  touch-action:manipulation!important;
}

@media(max-width:700px){
  html.nanu-location-mobile-open,
  body.nanu-location-mobile-open{
    overflow:hidden!important;
    overscroll-behavior:none!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores{
    flex:1 1 auto!important;
    min-height:0!important;
    height:auto!important;
    max-height:none!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    overscroll-behavior-y:contain!important;
    -webkit-overflow-scrolling:touch!important;
    touch-action:pan-y!important;
    scroll-behavior:auto!important;
    contain:layout style!important;
    padding:0 2px max(24px,env(safe-area-inset-bottom))!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card{
    position:relative!important;
    flex:0 0 auto!important;
    width:100%!important;
    min-width:0!important;
    min-height:0!important;
    height:auto!important;
    max-height:none!important;
    overflow:hidden!important;
    touch-action:pan-y!important;
    backface-visibility:hidden!important;
    transform:translateZ(0)!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments.is-departments-open{
    overflow:hidden!important;
    contain:none!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v5-phone-label{
    flex:0 0 auto!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v5-phone{
    flex:1 1 132px!important;
    min-width:0!important;
    max-width:100%!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v7-toggle{
    flex:0 0 auto!important;
    margin-left:0!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v7-grid:not([hidden]){
    grid-template-columns:1fr!important;
    gap:7px!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-department{
    min-height:50px!important;
    padding:9px 10px!important;
    overflow:hidden!important;
  }
}
@media(max-width:420px){
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-phone-row{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:7px!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-phone-label{
    grid-column:1 / -1!important;
    width:max-content!important;
  }
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v5-phone,
  #nanuLocationPanel .nanu-location-list.is-region-stores .nanu-region-v5-card--departments .nanu-region-v7-toggle{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    justify-content:center!important;
    margin:0!important;
  }
}
