/* =========================================================
   BASE (tema claro)
========================================================= */
html { scroll-behavior: smooth; }

:root{
  --bg:#f7f8fb;
  --surface:#ffffff;
  --text:#1c1f24;
  --muted:#7a8091;
  --brand:#e7c15a;
  --stroke:#e8eaf0;
  --radius:18px;
  --shadow:0 1px 0 rgba(18,20,24,.04), 0 10px 30px rgba(18,20,24,.05);
  --container:1100px;

  /* dimensões das extras (desktop) */
  --extraW:200px;
  --extraH:280px;

  /* KPI ultra-soft */
  --kpi-scale: 1.006;
  --kpi-in-dur: 120ms;
  --kpi-out-dur: 220ms;
  --kpi-ease-in:  cubic-bezier(.22,.55,.25,1);
  --kpi-ease-out: cubic-bezier(.16,.84,.44,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  /* fade-in de página */
  animation: pageIn .45s ease both;
}
@keyframes pageIn{ from{opacity:0} to{opacity:1} }

/* tipografia */
h1,h2,h3{line-height:1.15;margin:0 0 .6rem}
h1{font-weight:800;letter-spacing:-.01em;font-size:clamp(2.4rem,7vw,5rem)}
h2{font-size:clamp(1.4rem,3vw,2rem);font-weight:800}
.lead{color:var(--muted);font-weight:400;line-height:1.7}
a{color:#2e3440;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}

/* =========================================================
   HEADER (desktop)
========================================================= */
.site-header{
  position:sticky;top:0;z-index:10;
  background:rgba(247,248,251,.85);
  -webkit-backdrop-filter:saturate(140%) blur(10px);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--stroke);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  min-height:70px;
}
.brand{font-weight:800;margin-right:32px}

.nav{display:flex}
.nav__list{
  display:flex;gap:20px;list-style:none;margin:0;padding:0;align-items:center;
}

/* links do menu */
.nav__list a{
  position: relative; display: inline-block; padding:10px 0;
  transition: transform .12s ease;
}
.nav__list a:hover{ transform: translateY(-1px); }

/* sublinhado suave (não aplica no .btn) */
.nav__list a:not(.btn)::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:2px; border-radius:2px; background: currentColor;
  transform: scaleX(0); transform-origin:50% 50%; opacity:.6;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s;
}
.nav__list a:not(.btn):hover::after,
.nav__list a:not(.btn):focus-visible::after{
  transform: scaleX(1); opacity:.9;
}

/* toggle de tema (mostra apenas o ícone correto) */
.theme-toggle{
  margin-left:auto;
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:9999px;cursor:pointer;
  background:var(--surface);color:var(--text);
  border:1px solid var(--stroke);box-shadow:var(--shadow);
  font:600 .9rem/1 'Inter',system-ui,sans-serif;white-space:nowrap;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.theme-toggle .icon{ display:none; }
.theme-toggle .sun{ display:inline; }
html.theme-dark .theme-toggle .sun{ display:none; }
html.theme-dark .theme-toggle .moon{ display:inline; }
.theme-toggle .sun path, .theme-toggle .sun circle{ stroke: currentColor; fill: none; }
.theme-toggle .moon path{ fill: currentColor; stroke: none; }

/* botão-pílula */
.btn{
  border:1px solid var(--stroke);
  background:#fff;
  padding:.6rem 1rem;border-radius:9999px;font-weight:600;
  box-shadow:var(--shadow);
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  color:var(--text); line-height:1;
}
.btn--sm{padding:.5rem .9rem}
.btn:hover{transform:translateY(-1px);box-shadow:0 2px 0 rgba(18,20,24,.04), 0 14px 36px rgba(18,20,24,.07)}
.btn:active{ transform: translateY(0) scale(.985); }
.btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--brand) 35%, transparent),
    var(--shadow);
}

/* pill do menu mais discreto */
.nav .btn{
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--stroke) 85%, transparent);
  box-shadow: none;
  padding: .45rem .9rem;
}
html.theme-dark .nav .btn{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

/* =========================================================
   HERO
========================================================= */
.hero{padding:72px 0 40px;background:var(--surface); position:relative; z-index:1;}
.hero__grid{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center}
.actions{display:flex;gap:16px;align-items:center;margin-top:10px}
.link{border-bottom:1px solid currentColor;padding-bottom:2px}

.hero__figure{
  position:relative;
  display:grid;place-items:center;
  isolation:isolate;
  height:560px;
}

/* ====== animação de entrada do hero (soft) ====== */
@keyframes fadeUpSoft{
  from{opacity:0; transform: translateY(8px); filter: blur(2px);}
  to  {opacity:1; transform: none;          filter: none;}
}
.hero .tagline{ animation: fadeUpSoft .55s cubic-bezier(.22,.55,.25,1) .05s both; }
.hero .lead   { animation: fadeUpSoft .55s cubic-bezier(.22,.55,.25,1) .12s both; }
.hero .actions{ animation: fadeUpSoft .55s cubic-bezier(.22,.55,.25,1) .18s both; }

/* círculo atrás */
.circle{
  position:absolute;width:360px;height:360px;border-radius:50%;
  background:var(--brand);z-index:0;
  filter:saturate(.9) brightness(1.02);
  box-shadow:0 10px 40px rgba(231,193,90,.15);
  transform:translateX(-8%); /* base */
  transition:transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  animation: fadeUpSoft .6s cubic-bezier(.22,.55,.25,1) .08s both, circleGlow 6.5s ease-in-out infinite .8s;
}

/* frames */
.frame{
  position:absolute;display:block;border-radius:16px;overflow:hidden;
  box-shadow:var(--shadow);z-index:2;
  transition:transform .6s cubic-bezier(.2,.8,.2,1), opacity .4s ease, box-shadow .4s ease;
  will-change:transform;
  /* respiração sutil de sombra, não conflita com o parallax */
  animation: photoBreath 9s ease-in-out infinite .6s;
}
.frame img{
  width:100%;height:100%;object-fit:cover;
  filter:grayscale(.9) contrast(1.05);
}

/* principal */
.frame.main{
  position:relative;
  width:320px;height:480px;
  z-index:3;
  animation: fadeUpSoft .6s cubic-bezier(.22,.55,.25,1) .14s both, photoBreath 9s ease-in-out infinite .6s;
}

/* extras (desktop) */
.frame.extra{ width:var(--extraW); height:var(--extraH); opacity:.95; }
.frame.extra::before{
  content:"";position:absolute;left:50%;top:50%;
  width:78%;aspect-ratio:1/1;transform:translate(-50%,-50%);
  border-radius:50%;
  background:var(--brand);
  filter:saturate(.9) brightness(1.02);
  box-shadow:0 10px 40px rgba(231,193,90,.15);
  z-index:-1;
}

/* posições */
.extra-1{ top:-16px; left:-110px; z-index:3; animation: fadeUpSoft .6s cubic-bezier(.22,.55,.25,1) .22s both, photoBreath 10s ease-in-out infinite .8s; }
.extra-2{ top:-10px; right:-120px; z-index:4; animation: fadeUpSoft .6s cubic-bezier(.22,.55,.25,1) .28s both, photoBreath 12s ease-in-out infinite 1s; }
.extra-3{
  bottom:-60px;
  left: calc(100% - (var(--extraW) / 2));
  z-index:5;
  opacity:.96;
  animation: fadeUpSoft .6s cubic-bezier(.22,.55,.25,1) .34s both, photoBreath 11s ease-in-out infinite .9s;
}

/* pausa a respiração quando o usuário interage (hover) */
@media (hover:hover){
  .hero__figure:hover .frame { animation-play-state: paused; }
  .hero__figure:hover .frame.extra{
    transform:translateY(-2px) scale(1.02);
    box-shadow:0 12px 36px rgba(18,20,24,.12);
  }
  .hero__figure:hover .circle{
    transform:translateX(-6%) translateY(6px) scale(1.02);
    box-shadow:0 20px 50px rgba(231,193,90,.18);
  }
}

/* brilho do círculo */
@keyframes circleGlow {
  0%,100%{ box-shadow:0 10px 40px rgba(231,193,90,.16) }
  50%    { box-shadow:0 16px 66px rgba(231,193,90,.24) }
}
/* respiração (shadow) das fotos */
@keyframes photoBreath {
  0%,100% { box-shadow: var(--shadow); }
  50%     { box-shadow: 0 12px 36px rgba(18,20,24,.12), 0 24px 60px rgba(18,20,24,.06); }
}

@media (prefers-reduced-motion:reduce){
  .frame,.circle{transition:none; animation:none}
}

/* =========================================================
   SECTIONS / CARDS
========================================================= */
.section{padding:60px 0; position:relative; z-index:2;}
.section.alt{background:#f6f7f9}
.cols-2{
  display:grid;grid-template-columns:1fr 1fr;gap:30px;
  align-items:start;
}
.section ul{ padding-left:1.2rem; margin:.6rem 0 0; }
.section li{ margin:.35rem 0; }

.card{
  position:relative; /* para o halo */
  background:#fff;padding:20px;border:1px solid var(--stroke);border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 22px rgba(18,20,24,.06), 0 26px 50px rgba(18,20,24,.08);
}
.kpi{font-weight:800}
.muted{color:var(--muted)}

/* ===== KPI ultra-soft ===== */
@keyframes kpiPop {
  from { transform: scale(.996); opacity:.98; }
  to   { transform: scale(1);    opacity:1;  }
}
.kpi-pop{
  display:inline-block;
  animation: kpiPop 160ms var(--kpi-ease-in) both;
}
.card .kpi{
  display:inline-block;
  transform-origin:left center;
  will-change:transform;
  backface-visibility:hidden;
  transition: transform var(--kpi-out-dur) var(--kpi-ease-out);
}
@media (hover:hover){
  .card:hover .kpi{
    transform: scale(var(--kpi-scale));
    transition-duration: var(--kpi-in-dur);
    transition-timing-function: var(--kpi-ease-in);
  }
  .card:active .kpi{
    transform: scale(calc(var(--kpi-scale) - .004));
    transition-duration: 100ms;
  }
}

/* ===== Reveal on scroll ===== */
.reveal{
  opacity:0;
  transform: translateY(14px) scale(.985);
  filter: blur(2px);
  transition:
    opacity .6s ease,
    transform .6s cubic-bezier(.2,.8,.2,1),
    filter .6s ease;
  will-change: transform, opacity, filter;
}
.reveal.in-view{
  opacity:1;
  transform:none;
  filter:none;
}
/* intro + halo do card quando ele entra na viewport */
.card.reveal.in-view {
  animation: cardIntro .5s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cardIntro {
  from { opacity:0; transform: translateY(10px) scale(.992); filter: blur(1px); }
  to   { opacity:1; transform: none;                  filter: none;     }
}
.card.reveal.in-view::after{
  content:"";
  position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  box-shadow: 0 0 0 0 rgba(231,193,90,0);
  animation: cardHalo 700ms ease-out .12s both;
}
@keyframes cardHalo{
  0%   { box-shadow: 0 0 0 0 rgba(231,193,90,0); }
  45%  { box-shadow: 0 0 0 8px rgba(231,193,90,.12); }
  100% { box-shadow: 0 0 0 0 rgba(231,193,90,0); }
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; filter:none; }
}

/* =========================================================
   FOOTER (texto menor)
========================================================= */
.site-footer{
  border-top:1px solid var(--stroke);
  padding:24px 0 24px;
  background:var(--surface);
  font-size:.72rem;      /* menor */
}
.footer-inner{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:6px;
  justify-items:center;
  text-align:center;
}
.site-footer p{ margin:6px 0; color:var(--muted); }
.site-footer strong{ color:var(--text); font-weight:600; }
.site-footer a{ color:inherit; opacity:.9; text-decoration:none; border-bottom:1px solid transparent; }
.site-footer a:hover{ opacity:1; border-bottom-color: currentColor; }
@media (max-width:560px){
  .site-footer{ font-size:.86rem; }
}

/* =========================================================
   DARK THEME
========================================================= */
html.theme-dark{
  --bg:#0f1115;
  --surface:#141821;
  --text:#e6e8ef;
  --muted:#aab0c0;
  --brand:#e7c15a;
  --stroke:#242a36;
  --shadow:0 1px 0 rgba(0,0,0,.4), 0 18px 40px rgba(0,0,0,.45);
}
@media (prefers-reduced-motion:no-preference){
  body,.card,.site-header,.site-footer,.section.alt{
    transition:background-color .3s ease,color .3s ease,border-color .3s ease
  }
}
html.theme-dark .site-header{background:rgba(20,24,33,.7);border-bottom:1px solid var(--stroke)}
html.theme-dark .section.alt{background:#11141b}
html.theme-dark a{color:var(--text)}
html.theme-dark .brand{color:var(--text)}
html.theme-dark .btn{background:var(--surface);border:1px solid var(--stroke);color:var(--text)}
html.theme-dark .link{color:var(--text);border-color:rgba(230,232,239,.35)}
html.theme-dark .muted{color:#b8bfd0}
html.theme-dark .card{
  background:var(--surface);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width:920px){
  .hero__grid{grid-template-columns:1fr}
  .brand{margin-right:16px}
  .nav__list{gap:16px}

  :root{ --extraW:170px; --extraH:240px; }
  .frame.main{width:280px;height:420px}
  .extra-1{left:-120px}
  .extra-2{right:-120px}
  .extra-3{bottom:-40px;left:calc(70% - (var(--extraW)/2))}
}

@media (max-width:560px){
  .container{ padding:0 16px; }
  :root{ --extraW:140px; --extraH:200px; }
  .frame.main{ width:240px; height:360px; }
  .hero__figure{ height:520px; }
  .extra-1{ left:-90px; }
  .extra-2{ right:-90px; }
  .extra-3{ bottom:-28px; left:calc(62% - (var(--extraW)/2)); }
}

/* Reduz movimento se preferido pelo usuário */
@media (prefers-reduced-motion: reduce){
  body{ animation:none }
  .hero .tagline, .hero .lead, .hero .actions{ animation:none }
  .hero__figure .frame, .hero__figure .circle{ animation:none }
}

/* =========================================================
   PRODUTOS — hero, toolbar e grid
========================================================= */
.catalog-hero{
  background:var(--surface);
  padding:48px 0 8px;
}
.catalog-hero .tagline{
  font-size:clamp(1.8rem, 4.6vw, 3rem);
  animation: fadeUpSoft .55s cubic-bezier(.22,.55,.25,1) .04s both;
}
.catalog-hero .lead{
  max-width:56ch;
  animation: fadeUpSoft .55s cubic-bezier(.22,.55,.25,1) .1s both;
}

.catalog-toolbar{
  background:var(--surface);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.toolbar-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:12px 0;
}

/* chips (filtros) */
.chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  border:1px solid var(--stroke);
  background:rgba(0,0,0,0);
  color:var(--text);
  padding:.45rem .75rem;
  border-radius:9999px;
  font:600 .9rem/1 'Inter',system-ui,sans-serif;
  cursor:pointer;
  transition: transform .12s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.chip:hover{ transform:translateY(-1px); }
.chip.is-active{
  background:var(--surface);
  box-shadow:var(--shadow);
}

/* ordenação */
.sort{ display:flex; align-items:center; gap:8px; }
.sort__select{
  border:1px solid var(--stroke); background:var(--surface); color:var(--text);
  padding:.5rem .6rem; border-radius:10px; font:600 .9rem 'Inter',system-ui,sans-serif;
}

/* grid de produtos */
.products-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap:22px;
  padding:26px 0 18px;
}
.product-card{
  grid-column: span 3;
  position:relative;
  background:var(--surface);
  border:1px solid var(--stroke);
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(18,20,24,.06), 0 26px 50px rgba(18,20,24,.08);
  border-color: color-mix(in srgb, var(--brand) 28%, var(--stroke));
}

/* mídia com proporção 4/5 */
.product-media{
  display:block; position:relative; overflow:hidden;
  aspect-ratio: 4/5; /* fallback visual moderno */
  background: #f2f3f6;
}
.product-media img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.01);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .35s ease;
  filter: grayscale(.05) contrast(1.02);
}
.product-card:hover .product-media img{
  transform: scale(1.035);
}

/* badges */
.badge{
  position:absolute; left:12px; top:12px;
  background:var(--brand); color:#1a1a1a; font-weight:800;
  font-size:.72rem; padding:.28rem .5rem; border-radius:9999px;
  box-shadow:0 8px 24px rgba(231,193,90,.22);
}
.badge--sale{ background:#ffd77a; }

/* conteúdo do card */
.product-body{ padding:14px 14px 16px; }
.product-title{ font-size:1.02rem; line-height:1.28; margin:0 0 2px; }
.product-sub{ margin:0 0 8px; color:var(--muted); font-size:.9rem; }

.price{ display:flex; align-items:baseline; gap:8px; margin:4px 0 10px; }
.price .current{ font-weight:800; }
.price .old{ color:var(--muted); text-decoration:line-through; font-size:.92rem; }

.meta{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.rating{ font-size:.9rem; letter-spacing:1px; }
.rating b{ font-weight:700; margin-left:6px; font-size:.88rem; color:var(--muted); }

.mini-btn{
  border:1px solid var(--stroke);
  background:var(--surface);
  color:var(--text);
  padding:.45rem .7rem;
  border-radius:10px;
  font:700 .86rem 'Inter',system-ui,sans-serif;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s;
}
.mini-btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.mini-btn:disabled{ opacity:.7; cursor:not-allowed; }

/* paginação */
.pagination{
  display:flex; align-items:center; justify-content:center; gap:12px;
  padding:10px 0 44px;
}
.page-btn{
  border:1px solid var(--stroke); background:var(--surface); color:var(--text);
  padding:.55rem .9rem; border-radius:10px; font-weight:700; cursor:pointer;
  transition: transform .12s ease, box-shadow .2s ease;
}
.page-btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.page-btn:disabled{ opacity:.5; cursor:not-allowed; }

/* responsivo do grid */
@media (max-width:1100px){
  .product-card{ grid-column: span 4; }
}
@media (max-width:820px){
  .toolbar-inner{ flex-direction:column; align-items:flex-start; gap:12px; }
  .product-card{ grid-column: span 6; }
}
@media (max-width:560px){
  .product-card{ grid-column: 1 / -1; }
}
/* Planos: listas com margem inferior para o CTA não colar */
#planos .card ul{
  margin: .6rem 0 1rem;  /* mantém seu topo (.6rem) e acrescenta 1rem embaixo */
}

/* cor do texto do select */
.form-soft select { color: var(--text); }

/* enquanto o placeholder (option vazia) estiver selecionado */
.form-soft select:invalid { color: var(--muted); }

/* Esconde visualmente o select nativo, mas mantém acessível */
.soft-select--hidden {
  position: absolute !important;
  inset: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* Wrapper do select custom */
.soft-select {
  position: relative;
  width: 100%;
}

/* Botão (respeita seu estilo de inputs) */
.soft-select__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 12px;              /* cantos arredondados */
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  user-select: none;
  transition: border-color .2s ease, box-shadow .25s ease, background .2s ease;
}
.soft-select__btn[data-placeholder="true"] { color: var(--muted); }
.soft-select__btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--brand) 35%, transparent),
    var(--shadow);
}

/* Ícone setinha */
.soft-select__caret {
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .7;
}

/* Painel da lista (o dropdown) */
.soft-select__panel {
  position: absolute;
  z-index: 50;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  border-radius: 12px;              /* cantos arredondados no MENU */
  max-height: 260px;
  overflow: auto;
  padding: 6px;
  display: none;
  animation: fadeUpSoft .18s ease both;
}

/* Opções */
.soft-select__option {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  border: 0;
  cursor: pointer;
  transition: background .15s ease;
}
.soft-select__option:hover,
.soft-select__option:focus-visible {
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  outline: none;
}
.soft-select__option[aria-selected="true"] {
  background: color-mix(in srgb, var(--brand) 18%, transparent);
}

/* Estado aberto */
.soft-select[data-open="true"] .soft-select__panel { display: block; }

/* Mantém seu placeholder para inputs nativos, caso use */
.form-soft select:invalid { color: var(--muted); }

/* ===== Soft Select (dropdown custom) ===== */
.soft-select--hidden{position:absolute!important;inset:0;width:0;height:0;opacity:0;pointer-events:none}
.soft-select{position:relative;min-width:190px}
.soft-select__btn{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 14px;border:1px solid var(--stroke);border-radius:12px;
  background:var(--surface);color:var(--text);box-shadow:var(--shadow);
  cursor:pointer;user-select:none;transition:border-color .2s,box-shadow .25s,background .2s
}
.soft-select__label{flex:1;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.soft-select__caret{flex:none;width:10px;height:10px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);opacity:.7}
.soft-select__btn:focus-visible{outline:0;box-shadow:0 0 0 3px color-mix(in srgb, var(--brand) 35%, transparent),var(--shadow)}

.soft-select__panel{
  position:absolute;z-index:50;top:calc(100% + 6px);left:0;right:0;
  background:var(--surface);border:1px solid var(--stroke);box-shadow:0 18px 40px rgba(0,0,0,.12);
  border-radius:12px;max-height:260px;overflow:auto;padding:6px;display:none;
  animation: fadeUpSoft .18s ease both;
}
.soft-select[data-open="true"] .soft-select__panel{display:block}

.soft-select__option{
  width:100%;text-align:left;padding:10px 12px;border-radius:10px;background:transparent;color:var(--text);
  border:0;cursor:pointer;transition:background .15s
}
.soft-select__option:hover,.soft-select__option:focus-visible{background:color-mix(in srgb, var(--brand) 12%, transparent);outline:0}
.soft-select__option[aria-selected="true"]{background:color-mix(in srgb, var(--brand) 18%, transparent)}
