:root{
  --bnu-bg:#f6f6f6;
  --bnu-card:#ffffff;
  --bnu-accent:#f5b6b0;
  --bnu-black:#000000;
  --bnu-gray-400:#9a9a9a;
  --bnu-gray-200:#e5e5e5;
  --bnu-gray-100:#f2f2f2;
}

html.bnu-scroll-lock{
  height:100%;
}
html.bnu-scroll-lock body{
  overflow:hidden;
  height:100%;
  position:fixed;
  left:0;
  right:0;
  width:100%;
}

@keyframes bnuNavEnter{
  0%{ opacity:0; transform:translate(-50%, 28px) scale(.92); }
  60%{ opacity:1; transform:translate(-50%, -5px) scale(1.02); }
  100%{ opacity:1; transform:translate(-50%, 0) scale(1); }
}
@keyframes bnuIconPop{
  0%{ transform:scale(1) rotate(0); }
  40%{ transform:scale(1.32) rotate(-6deg); }
  70%{ transform:scale(.92) rotate(3deg); }
  100%{ transform:scale(1) rotate(0); }
}
@keyframes bnuDotPop{
  from{ transform:translateX(-50%) scale(0); }
  to{ transform:translateX(-50%) scale(1); }
}
@keyframes bnuRowIn{
  from{ opacity:0; transform:translateY(10px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes bnuIconWiggle{
  0%{ transform:rotate(0); }
  25%{ transform:rotate(-14deg); }
  50%{ transform:rotate(10deg); }
  75%{ transform:rotate(-6deg); }
  100%{ transform:rotate(0); }
}

.bottom-nav{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  width:78%;
  max-width:360px;
  bottom:calc(12px + env(safe-area-inset-bottom, 0px));
  background:linear-gradient(160deg, #f8c8c2 0%, var(--bnu-accent) 45%, #e39a90 100%);
  border-radius:32px;
  padding:5px;
  box-shadow:
    0 1px 2px rgba(0,0,0,.05),
    0 6px 14px rgba(0,0,0,.08),
    0 20px 40px rgba(0,0,0,.12),
    0 10px 30px rgba(245,182,176,.4);
  transition:box-shadow .3s ease, transform .3s cubic-bezier(.22,1,.36,1), opacity .25s ease;
  z-index:900;
  overflow:hidden;
  animation:bnuNavEnter .35s cubic-bezier(.34,1.56,.64,1) both;
  font-family:"Helvetica Neue", Arial, "Uber Move", sans-serif;
}
.bottom-nav.searching{
  z-index:200001;
}
.bottom-nav.nav-hidden{
  transform:translate(-50%, 140%);
  opacity:0;
  transition:box-shadow .3s ease, transform .22s cubic-bezier(.4,0,1,1), opacity .18s ease;
  pointer-events:none;
}
.nav-items{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  transition:opacity .2s ease, transform .2s ease;
}
.bottom-nav.searching .nav-items{
  opacity:0;
  transform:scale(.95);
  pointer-events:none;
}
.nav-search{
  position:absolute;
  inset:5px;
  display:flex;
  align-items:center;
  gap:4px;
  padding:0 6px 0 14px;
  opacity:0;
  transform:scale(.92);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s cubic-bezier(.34,1.56,.64,1);
}
.bottom-nav.searching .nav-search{
  opacity:1;
  transform:scale(1);
  pointer-events:all;
}
.nav-search-btn{
  flex-shrink:0;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  background:none; border:none; cursor:pointer;
  color:var(--bnu-card);
}
.nav-search-btn svg{
  width:27px; height:27px;
  stroke:var(--bnu-card);
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.nav-search-input{
  flex:1;
  min-width:0;
  border:none;
  outline:none;
  background:transparent;
  font-family:inherit;
  font-size:13px;
  color:var(--bnu-card);
  -webkit-appearance:none;
  appearance:none;
}
.nav-search-input::placeholder{ color:rgba(255,255,255,.7); }
.nav-search-input::-webkit-search-cancel-button,
.nav-search-input::-webkit-search-decoration{
  -webkit-appearance:none;
  appearance:none;
}

.nav-search-results{
  position:fixed;
  left:50%;
  bottom:calc(12px + env(safe-area-inset-bottom, 0px) + 62px);
  transform:translateX(-50%) translateY(8px);
  width:78%;
  max-width:360px;
  max-height:0;
  overflow-y:auto;
  opacity:0;
  pointer-events:none;
  background:var(--bnu-card);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(0,0,0,.2), 0 4px 12px rgba(0,0,0,.08);
  transition:opacity .2s ease, transform .2s ease, max-height .25s ease;
  z-index:900;
}
.nav-search-results.open{
  max-height:60vh;
  opacity:1;
  transform:translateX(-50%) translateY(0);
  pointer-events:all;
}
.nav-search-result{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:11px 16px;
  text-decoration:none;
  border-bottom:1px solid var(--bnu-gray-200);
}
.nav-search-result:last-child{ border-bottom:none; }
.nav-search-result-title{
  font-size:.85rem;
  font-weight:700;
  color:var(--bnu-black);
}
.nav-search-result-cat{
  font-size:.68rem;
  font-weight:600;
  color:var(--bnu-gray-400);
  text-transform:uppercase;
  letter-spacing:1px;
}
.nav-search-result-all{
  font-size:.78rem;
  font-weight:700;
  color:var(--bnu-accent);
  text-align:center;
  padding:12px 16px;
}

.nav-search-img-result{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  text-decoration:none;
  border-bottom:1px solid var(--bnu-gray-200);
}
.nav-search-img-result:last-child{ border-bottom:none; }
.nav-search-img-thumb{
  flex-shrink:0;
  width:40px; height:40px;
  border-radius:10px;
  overflow:hidden;
  background:var(--bnu-gray-100);
}
.nav-search-img-thumb img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center top;
}
.nav-search-img-info{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}
.nav-search-empty{
  padding:16px;
  text-align:center;
  font-size:.8rem;
  color:var(--bnu-gray-400);
}

@media (min-width: 769px){
  .bottom-nav{ display:none; }
}

.nav-item{
  position:relative;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:6px 4px;
  margin:0 1px;
  background:transparent;
  border:none;
  border-radius:22px;
  cursor:pointer;
  color:rgba(255,255,255,.85);
  font-size:10px;
  font-weight:500;
  letter-spacing:.1px;
  transform:scale(1);
  box-shadow:0 0 0 rgba(0,0,0,0);
  transition:background .25s cubic-bezier(.4,0,.2,1),
             color .2s ease,
             transform .15s cubic-bezier(.4,0,.2,1),
             box-shadow .25s ease;
}
.nav-item svg{
  width:18px;
  height:18px;
  stroke:rgba(255,255,255,.85);
  fill:none;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:stroke .2s ease, fill .2s ease;
}
.nav-item svg.pop{
  animation:bnuIconPop .45s cubic-bezier(.34,1.56,.64,1);
}
.nav-item.active{
  background:rgba(255,255,255,.55);
  color:var(--bnu-black);
  font-weight:700;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 2px 6px rgba(0,0,0,.1),
    0 1px 2px rgba(0,0,0,.06);
}
.nav-item.active svg{ stroke:var(--bnu-black); }

.nav-item.active::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:2px;
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--bnu-accent);
  transform:translateX(-50%);
  animation:bnuDotPop .35s cubic-bezier(.34,1.56,.64,1) .05s both;
}

.nav-item:not(.active):hover{
  background:linear-gradient(160deg, #f4b3ac, #e08e83);
  color:var(--bnu-card);
  box-shadow:0 6px 14px rgba(196,110,102,.35);
}
.nav-item:not(.active):hover svg{ stroke:var(--bnu-card); }

.nav-item:active{ transform:scale(.9); }
.nav-item.active:active{ transform:scale(.96); }

.sheet-ov{
  position:fixed; inset:0;
  background:rgba(0,0,0,0);
  z-index:100000;
  pointer-events:none;
  transition:background .3s;
  font-family:"Helvetica Neue", Arial, "Uber Move", sans-serif;
}
.sheet-ov.open{
  background:rgba(0,0,0,.45);
  pointer-events:all;
}
.sheet{
  position:absolute;
  bottom:calc(12px + env(safe-area-inset-bottom, 0px));
  left:50%;
  transform:translateX(-50%) scale(.92) translateY(12px);
  opacity:0;
  width:calc(100% - 48px);
  max-width:360px;
  background:var(--bnu-card);
  border-radius:24px;
  padding:0 0 8px;
  transition:transform .28s cubic-bezier(.34,1.56,.64,1), opacity .2s;
  box-shadow:0 16px 48px rgba(0,0,0,.2), 0 4px 12px rgba(0,0,0,.08);
  max-height:60vh;
  overflow-y:auto;
}
.sheet-ov.open .sheet{
  transform:translateX(-50%) scale(1) translateY(0);
  opacity:1;
}
.sheet-head{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 16px 10px;
  border-bottom:1px solid var(--bnu-gray-200);
  position:relative;
}
.sheet-head-icon{
  width:28px; height:28px;
  border-radius:8px;
  background:var(--bnu-gray-100);
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem;
  flex-shrink:0;
}
.sheet-ov.open .sheet-head-icon{
  animation:bnuIconWiggle .5s ease .15s both;
}
.sheet-title{
  font-size:.9rem;
  font-weight:700;
  color:var(--bnu-black);
}
.sheet-close{
  position:absolute; right:12px; top:50%; transform:translateY(-50%);
  background:none; border:none; cursor:pointer;
  width:26px; height:26px;
  display:flex; align-items:center; justify-content:center;
  color:var(--bnu-gray-400);
  font-size:1rem;
}
.sheet-body{
  padding:12px 14px 4px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.sheet-row{
  display:flex; align-items:center; justify-content:center; gap:12px; text-align:left;
  background:var(--bnu-card);
  border:1.5px solid var(--bnu-gray-200);
  border-radius:12px;
  padding:14px;
  position:relative;
  overflow:hidden;
  opacity:0;
}
.sheet-ov.open .sheet-row{
  animation:bnuRowIn .4s ease both;
}
.sheet-ov.open .sheet-row:nth-child(1){ animation-delay:.08s; }
.sheet-ov.open .sheet-row:nth-child(2){ animation-delay:.15s; }
.sheet-ov.open .sheet-row:nth-child(3){ animation-delay:.22s; }
.sheet-row::after{
  content:'';
  position:absolute;
  top:8px; bottom:8px; left:0;
  width:3px; border-radius:0 2px 2px 0;
  background:repeating-linear-gradient(180deg, var(--bnu-accent) 0, var(--bnu-accent) 5px, transparent 5px, transparent 10px);
  opacity:.55;
}
.sheet-row-icon{ font-size:1.3rem; flex-shrink:0; }
.sheet-row-label{
  font-size:.62rem;
  font-weight:800;
  color:var(--bnu-accent);
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:2px;
}
.sheet-row-value{
  font-size:.82rem;
  font-weight:600;
  color:var(--bnu-black);
  line-height:1.5;
}
.sheet-note{
  margin-bottom:8px;
  font-size:.82rem;
  color:var(--bnu-gray-400);
  line-height:1.5;
}
.sheet-note strong{ color:var(--bnu-black); }

@media (max-width: 768px){
  .wa-btn-wrap{
    bottom:calc(12px + env(safe-area-inset-bottom, 0px) + 78px) !important;
    transition:transform .55s cubic-bezier(.22,1,.36,1), opacity .45s ease;
  }
  .wa-btn-wrap.wa-hidden{
    transform:translateX(160%);
    opacity:0;
    pointer-events:none;
    transition:transform .45s cubic-bezier(.4,0,1,1), opacity .3s ease;
  }
}

@keyframes bnuResultsIn{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
.search-results-section{
  position:fixed;
  inset:0;
  z-index:200000;
  background:var(--bnu-card);
  overflow-y:auto;
  padding:calc(20px + env(safe-area-inset-top, 0px)) 0 calc(100px + env(safe-area-inset-bottom, 0px));
  animation:bnuResultsIn .35s ease both;
}
.search-results-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:20px;
  padding:0 20px;
}
.search-results-title{
  font-size:1.3rem;
  font-weight:700;
  color:var(--bnu-black);
}
.search-results-title span{ color:var(--bnu-accent); }
.search-results-close{
  flex-shrink:0;
  width:32px; height:32px;
  border-radius:50%;
  border:none;
  background:var(--bnu-gray-100);
  color:var(--bnu-black);
  font-size:1rem;
  cursor:pointer;
}
.search-results-grid{
  display:flex;
  flex-direction:column;
  gap:14px;
}
@media (min-width:901px){
  .search-results-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .search-result-card-body{
    padding:10px 4px 4px;
  }
}
.search-result-card{
  display:block;
  text-decoration:none;
  background:transparent;
  box-shadow:none;
  opacity:0;
  transform:translateY(28px);
  transition:opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.search-result-card.in-view{
  opacity:1;
  transform:translateY(0);
}
.search-result-card-img{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:22px;
  background:linear-gradient(160deg, #f8c8c2 0%, var(--bnu-accent) 45%, #e39a90 100%);
  box-shadow:0 4px 16px rgba(212,131,124,.22), 0 1.5px 4px rgba(0,0,0,.06);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.search-result-card-img img{
  display:block;
  width:100%;
  height:auto;
  transition:transform .4s ease;
}
@media (hover:hover){
  .search-result-card:hover .search-result-card-img{
    transform:translateY(-5px) scale(1.015);
    box-shadow:0 16px 32px rgba(212,131,124,.3), 0 4px 10px rgba(0,0,0,.1);
  }
  .search-result-card:hover .search-result-card-img img{
    transform:scale(1.06);
  }
}
.search-result-card:active .search-result-card-img{
  transform:scale(.97);
  box-shadow:0 3px 10px rgba(212,131,124,.2);
  transition-duration:.12s;
}
.search-result-card-share img{
  -webkit-touch-callout:none;
  user-select:none;
  -webkit-user-select:none;
  pointer-events:none;
}
.search-result-card-body{
  padding:10px 20px 4px;
  text-align:center;
}
.search-result-card-title{
  font-size:.85rem;
  font-weight:700;
  color:var(--bnu-black);
}
.search-result-card-cat{
  display:none;
}
.search-results-empty{
  font-size:.9rem;
  color:var(--bnu-gray-400);
  padding:0 20px;
}
.search-results-empty a{
  color:var(--bnu-accent);
  font-weight:700;
  text-decoration:underline;
}

.search-result-card-share{
  cursor:pointer;
  width:100%;
  text-align:left;
  -webkit-tap-highlight-color:transparent;
}

.search-result-card-actions{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  background:rgba(0,0,0,.33);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  z-index:5;
}

@media (hover:hover){
  .search-result-card-share:hover .search-result-card-actions{
    opacity:1;
    pointer-events:auto;
  }
  .search-result-card-actions{
    background:transparent;
    align-items:flex-start;
    justify-content:flex-end;
    padding:8px;
  }
  .search-result-act-wpp{
    display:none !important;
  }
  .search-result-act-share{
    width:26px;
    height:26px;
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(4px);
    color:rgba(180,100,90,.85);
    box-shadow:none;
  }
  .search-result-act-share:hover{
    background:rgba(245,182,176,.75);
    color:#fff;
    box-shadow:none;
  }
  .search-result-act-share svg{
    width:12px;
    height:12px;
  }
}

.search-result-card-share.actions-active .search-result-card-actions{
  opacity:1;
  pointer-events:auto;
}

.search-result-act-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(245,182,176,.80) 100%);
  color:#7a2e28;
  transition:transform .15s ease, box-shadow .2s;
  box-shadow:0 4px 18px rgba(0,0,0,.28);
  -webkit-tap-highlight-color:transparent;
}
.search-result-act-btn svg{
  width:17px;
  height:17px;
  transition:transform .2s ease;
}
.search-result-act-btn:hover svg{
  transform:scale(.75);
}
.search-result-act-btn:active{
  transform:scale(.89);
}

@media (max-width:768px){
  .search-result-act-btn{
    width:52px;
    height:52px;
  }
  .search-result-act-btn svg{
    width:24px;
    height:24px;
  }
}

@keyframes bnuActSpin{ to{ transform:rotate(360deg); } }
.bnu-act-spinner{
  width:17px;
  height:17px;
  animation:bnuActSpin .7s linear infinite;
  display:block;
}

.img-lightbox{
  position:fixed;
  inset:0;
  z-index:300000;
  background:rgba(0,0,0,.92);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}
.img-lightbox.open{
  opacity:1;
  pointer-events:all;
}
.img-lightbox-img{
  max-width:100%;
  max-height:78vh;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.img-lightbox-caption{
  color:#fff;
  font-size:.85rem;
  font-weight:600;
  text-align:center;
  max-width:90%;
}
.img-lightbox-close{
  position:absolute;
  top:calc(16px + env(safe-area-inset-top, 0px));
  right:16px;
  width:38px; height:38px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:1.1rem;
  cursor:pointer;
}

.img-lightbox-actions{
  position:absolute;
  bottom:calc(24px + env(safe-area-inset-bottom, 0px));
  left:50%;
  display:flex;
  gap:14px;
  opacity:0;
  transform:translate(-50%, 12px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.img-lightbox.show-actions .img-lightbox-actions{
  opacity:1;
  transform:translate(-50%, 0);
  pointer-events:all;
}
.img-lightbox-act{
  width:48px; height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:var(--bnu-black);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 6px 20px rgba(0,0,0,.3);
}
.img-lightbox-wpp{ color:#25D366; }
.img-lightbox-share{ color:var(--bnu-black); }
