/* =========================================================
   LIHUE — Regalería empresarial
   Token system (alineado al Manual de Identidad de Marca):
   Color   #FFFFFF fondo (blanco puro) · #000000 tinta (negro puro)
           #B98C37 dorado (acento, tono del isotipo dorado) · #8C6B28 dorado oscuro
           Grises neutros para superficies y texto secundario
   Type    Display: Montserrat Bold · Body/UI: Montserrat Medium
   Signature: recortes facetados (clip-path) que repiten
              el ángulo del isotipo — en tarjetas, botones y
              en los "dientes" de las secciones.
   ========================================================= */

:root{
  --bg: #FFFFFF;
  --surface: #F5F5F4;
  --surface-2: #ECECEA;
  --ink: #000000;
  --muted: #5C5C5C;
  --brass: #B98C37;
  --brass-dim: #8C6B28;
  --line: #DCDCDC;

  --display: 'Montserrat', sans-serif;
  --body: 'Montserrat', sans-serif;

  --facet: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  --facet-sm: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

*{ box-sizing: border-box; }
[hidden]{ display: none !important; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display:block; }
a{ color: inherit; }
h1,h2,h3{ font-family: var(--display); font-weight: 700; margin: 0 0 .4em; letter-spacing: -0.01em; }
h1{ font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; }
h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3{ font-size: 1.15rem; }
p{ margin: 0 0 1em; color: var(--muted); font-weight: 500; }

.eyebrow{
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .6em;
}

:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ===== HEADER ===== */
.site-header{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-top{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 20px clamp(20px, 5vw, 56px);
}

.logo-mark{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color: var(--ink);
}
.logo-icon{ height: 34px; width: auto; }
.logo-text{ display:flex; flex-direction:column; gap:3px; align-items: flex-start; }
.logo-word{ height: 15px; width: auto; }
.logo-tagline{
  font-family: var(--display);
  font-weight: 700;
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.site-nav{ display:flex; align-items:center; gap: clamp(16px, 3vw, 32px); }
.site-nav a{
  text-decoration:none; font-size:.92rem; font-weight: 500; color: var(--muted);
  transition: color .2s ease;
}
.site-nav a:hover{ color: var(--brass); }
.site-nav a[aria-current="page"]{ color: var(--ink); }
.nav-divider{
  width: 1px; height: 18px;
  background: var(--line);
}
.social-links.social-links--header{ gap: 6px; }
.social-links.social-links--header a{
  width: 40px; height: 40px;           /* área de toque cómoda */
  border: none;
  clip-path: none;
  color: var(--muted);
}
.social-links.social-links--header svg{ width: 20px; height: 20px; }

/* ===== MENÚ HAMBURGUESA ===== */
.header-top{ position: relative; z-index: 45; background: var(--bg); }
.nav-toggle{
  display: none;
  width: 46px; height: 46px;
  padding: 0; border: 0;
  background: var(--ink);
  clip-path: var(--facet-sm);
  cursor: pointer;
  position: relative;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  position: absolute; left: 50%;
  width: 20px; height: 2px;
  background: var(--bg);
  translate: -50% 0;
  transition: rotate .25s ease, top .25s ease, opacity .2s ease;
}
.nav-toggle__bars{ top: 50%; margin-top: -1px; }
.nav-toggle__bars::before, .nav-toggle__bars::after{ content: ""; left: 0; translate: 0 0; }
.nav-toggle__bars::before{ top: -7px; }
.nav-toggle__bars::after{ top: 7px; }
.site-header.menu-open .nav-toggle{ background: var(--brass); }
.site-header.menu-open .nav-toggle__bars{ background: transparent; }
.site-header.menu-open .nav-toggle__bars::before{ top: 0; rotate: 45deg; background: #000; }
.site-header.menu-open .nav-toggle__bars::after{ top: 0; rotate: -45deg; background: #000; }

@media (max-width: 860px){
  .header-top{ flex-wrap: nowrap; }
  .nav-toggle{ display: block; }
  .site-nav{
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px clamp(20px, 5vw, 56px) 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,.12);
    visibility: hidden; opacity: 0; translate: 0 -8px;
    transition: opacity .2s ease, translate .2s ease, visibility .2s ease;
  }
  .site-header.menu-open .site-nav{ visibility: visible; opacity: 1; translate: 0 0; }
  .site-nav > a{
    font-family: var(--display); font-weight: 700;
    font-size: 1.15rem; color: var(--ink);
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-nav > a[aria-current="page"]{ color: var(--brass-dim); }
  .nav-divider{ display: none; }
  .social-links.social-links--header{ gap: 12px; margin-top: 18px; }
  .social-links.social-links--header a{
    width: 50px; height: 50px;
    border: 1px solid var(--line);
    clip-path: var(--facet-sm);
    color: var(--ink);
  }
  .social-links.social-links--header svg{ width: 24px; height: 24px; }
  .social-links.social-links--header a:hover{ background: var(--brass); color: #000; }
}
.social-links.social-links--header a:hover{
  background: none;
  color: var(--brass);
}

/* ===== CARRUSEL ===== */
.carousel{
  position: relative;
  height: clamp(260px, 46vw, 520px);
  overflow: hidden;
  background: var(--surface);
}
.carousel-track{
  display: flex;
  width:100%; height:100%;
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.carousel-slide{
  flex: 0 0 100%;
  width: 100%; height: 100%;
}
.carousel-link{ display:block; width:100%; height:100%; }
.carousel-img{
  width:100%; height:100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}


.carousel-arrow{
  position:absolute; top:50%; translate: 0 -50%;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.4rem; line-height:1;
  cursor:pointer;
  clip-path: var(--facet-sm);
  transition: background .2s ease;
}
.carousel-arrow:hover{ background: var(--brass); color:#000000; }
.carousel-arrow.prev{ left: 16px; }
.carousel-arrow.next{ right: 16px; }

.carousel-dots{
  position:absolute; bottom: 16px; left:50%; translate: -50% 0;
  display:flex; gap: 10px;
}
.carousel-dots button{
  width: 9px; height:9px; padding:0; border:0;
  background: var(--muted);
  cursor:pointer;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity:.5;
  transition: opacity .2s ease, background .2s ease;
}
.carousel-dots button.is-active{ opacity:1; background: var(--brass); }

/* ===== INTRO ===== */
.intro{
  max-width: 760px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 56px) clamp(24px, 4vw, 40px);
}
.intro-copy{ font-size: 1.05rem; }

/* ===== SECCIONES GENERALES ===== */
section{ padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 56px); }
.catalogo, .contacto{ background: var(--surface); }

/* ===== CATÁLOGO: VISTA PREVIA ===== */
.preview-wrap{
  position: relative;
  margin-top: 24px;
  /* la tira llega hasta el borde derecho de la sección */
  margin-right: calc(-1 * clamp(20px, 5vw, 56px));
}
.preview-track{
  display: flex;
  gap: 20px;
  padding: 8px clamp(20px, 5vw, 56px) 18px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, #000 55%, rgba(0,0,0,.25) 82%, transparent 100%);
          mask-image: linear-gradient(to right, #000 55%, rgba(0,0,0,.25) 82%, transparent 100%);
}
.preview-track::-webkit-scrollbar{ display: none; }

.preview-card{
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  clip-path: var(--facet);
  transition: transform .35s ease;
}
.preview-card__img{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
}
.preview-card__img img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.preview-card__img.is-empty{
  display: flex; align-items: center; justify-content: center;
}
.preview-card__img.is-empty .cat-icon{ margin: 0; transition: transform .6s ease; }
.preview-card__body{ padding: 16px 18px 20px; }
.preview-card__body h3{ font-size: 1.05rem; margin-bottom: 6px; }
.preview-card__body p{ font-size: .9rem; line-height: 1.45; margin: 0; }

.preview-card:hover,
.preview-card:focus-visible{ transform: translateY(-6px); }
.preview-card:hover .preview-card__img img,
.preview-card:focus-visible .preview-card__img img{ transform: scale(1.05); }
.preview-card:hover .cat-icon,
.preview-card:focus-visible .cat-icon{ transform: scale(1.18); }

.cat-icon{
  display: block;
  width: 34px; height: 34px;
  background: var(--brass);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.preview-mas{
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  top: 50%;
  translate: 0 -50%;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--display);
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  clip-path: var(--facet-sm);
  transition: background .25s ease, color .25s ease, gap .25s ease;
}
.preview-mas:hover,
.preview-mas:focus-visible{ background: var(--brass); color: #000000; gap: 14px; }

@media (max-width: 640px){
  .preview-track{
    -webkit-mask-image: linear-gradient(to right, #000 75%, transparent 100%);
            mask-image: linear-gradient(to right, #000 75%, transparent 100%);
  }
  .preview-mas{ position: static; translate: none; margin-top: 18px; }
}

/* ===== QUIÉNES SOMOS ===== */
.qs-hero{
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding-top: clamp(56px, 8vw, 96px);
}
.qs-hero h1{ max-width: 640px; }
.qs-hero .intro-copy{ max-width: 580px; }
.qs-mark{
  aspect-ratio: 4 / 3;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  clip-path: var(--facet);
}
.qs-mark img:first-child{ height: 38%; width: auto; }
.qs-mark img:last-child{ height: 11%; width: auto; }
.qs-bloque{ max-width: none; }
.qs-bloque--gris{ background: var(--surface); max-width: none; }
.qs-grid{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 24px; }
.qs-card{ background: var(--bg); padding: 26px 24px; clip-path: var(--facet); }
.qs-bloque:not(.qs-bloque--gris) .qs-card{ background: var(--surface); }
.qs-card p{ margin: 0; font-size: .95rem; }
.qs-pasos{ list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; counter-reset: paso; }
.qs-pasos li{ counter-increment: paso; border-top: 2px solid var(--ink); padding-top: 16px; }
.qs-pasos li::before{
  content: counter(paso, decimal-leading-zero);
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.6rem; color: var(--brass); margin-bottom: 8px;
}
.qs-pasos h3{ margin-bottom: 6px; }
.qs-pasos p{ margin: 0; font-size: .92rem; }
.qs-cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.qs-cta a{
  display: inline-block; padding: 13px 26px;
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  text-decoration: none; clip-path: var(--facet-sm);
  transition: background .2s ease, color .2s ease;
}
.qs-cta .is-primary{ background: var(--ink); color: var(--bg); }
.qs-cta .is-primary:hover{ background: var(--brass); color: #000; }
.qs-cta .is-secondary{ background: var(--brass); color: #000; }
.qs-cta .is-secondary:hover{ background: #D4A64B; }
@media (max-width: 900px){
  .qs-hero{ grid-template-columns: 1fr; }
  .qs-mark{ max-width: 420px; }
  .qs-grid{ grid-template-columns: 1fr; }
  .qs-pasos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){ .qs-pasos{ grid-template-columns: 1fr; } }

/* ===== PÁGINA DE CATÁLOGO ===== */
.catalogo-page{ max-width: none; }
.catalogo-page h1{ max-width: 760px; }
.catalogo-page .intro-copy{ max-width: 620px; }
.catalogo-vacio a{ color: var(--ink); font-weight: 700; }
.cat-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
  align-items: start;
}
@media (min-width: 1500px){ .cat-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 960px){ .cat-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px){ .cat-grid{ grid-template-columns: 1fr; } }

.cat-item{ background: var(--surface); clip-path: var(--facet); scroll-margin-top: 24px; }
.cat-item__heading{ margin: 0; font-size: inherit; }
.cat-item__head{
  display: block; width: 100%;
  padding: 0; border: 0; background: none;
  text-align: left; font: inherit; color: inherit; cursor: pointer;
}
.cat-item__img{
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--surface-2);
}
.cat-item__img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-item__head:hover .cat-item__img img{ transform: scale(1.04); }
.cat-item__text{ display: block; padding: 18px 20px 20px; }
.cat-item__title{ display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cat-item__name{ font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.cat-item__toggle{
  position: relative; flex: none;
  width: 30px; height: 30px;
  background: var(--ink);
  clip-path: var(--facet-sm);
  transition: background .2s ease;
}
.cat-item__toggle::before, .cat-item__toggle::after{
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 2px; background: var(--bg);
  translate: -50% -50%;
  transition: rotate .25s ease;
}
.cat-item__toggle::after{ rotate: 90deg; }
.cat-item__head[aria-expanded="true"] .cat-item__toggle{ background: var(--brass); }
.cat-item__head[aria-expanded="true"] .cat-item__toggle::after{ rotate: 0deg; }
.cat-item__short{ display: block; margin-top: 6px; font-size: .92rem; font-weight: 500; line-height: 1.5; color: var(--muted); }
.cat-item__heading{ letter-spacing: normal; line-height: 1.3; }
.cat-item__count{ display: block; margin-top: 10px; font-size: .8rem; color: var(--brass-dim); }

.cat-item__panel{ padding: 0 20px 22px; border-top: 1px solid var(--line); }
.cat-item__panel p{ margin: 16px 0 0; font-size: .92rem; }
.cat-variantes{ list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 12px; }
.cat-variantes li{ display: flex; flex-direction: column; gap: 6px; font-size: .82rem; }
.cat-variantes img{ aspect-ratio: 1; object-fit: cover; clip-path: var(--facet-sm); }
.cat-variantes__dot{ aspect-ratio: 1; background: var(--surface-2); clip-path: var(--facet-sm); }
.cat-item__cta{
  display: inline-block; margin-top: 18px;
  padding: 11px 20px;
  background: var(--brass); color: #000000;
  font-family: var(--display); font-weight: 700; font-size: .88rem;
  text-decoration: none;
  clip-path: var(--facet-sm);
  transition: background .2s ease;
}
.cat-item__cta:hover{ background: #D4A64B; }

/* ===== EFEMÉRIDES ===== */
.efemerides-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.efemeride-card{
  background: none; border: none; padding:0; cursor:pointer;
  text-align:left; color: var(--ink); font: inherit;
}
.efemeride-flyer{
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
  clip-path: var(--facet);
  overflow: hidden;
  transition: transform .25s ease, filter .25s ease;
}
.efemeride-flyer img{ width:100%; height:100%; object-fit: cover; }
.efemeride-flyer.is-empty{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3;
  background: var(--ink); color: var(--bg);
}
.efemeride-dia{ font-family: var(--display); font-weight: 700; font-size: clamp(4rem, 9vw, 6rem); line-height: 1; }
.efemeride-mes{ margin-top: 8px; font-weight: 700; color: var(--brass); text-transform: capitalize; }
.efemeride-modal-card:has(.efemeride-modal-flyer:not([style*="url"])){ grid-template-columns: 1fr; max-width: 480px; }
.efemeride-modal-flyer:not([style*="url"]){ display: none; }
.efemeride-cta{
  display: inline-block; margin-top: 8px;
  padding: 12px 22px;
  background: var(--brass); color: #000000;
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  text-decoration: none;
  clip-path: var(--facet-sm);
  transition: background .2s ease;
}
.efemeride-cta:hover{ background: #D4A64B; }
.efemeride-card:hover .efemeride-flyer{
  transform: translateY(-4px);
  filter: brightness(0.97);
}
.efemeride-fecha{
  display:block; margin-top: 12px;
  font-size: .8rem; color: var(--brass-dim);
}
.efemeride-nombre{
  display:block; margin-top: 2px;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
}

/* Modal */
.efemeride-modal{
  position: fixed; inset:0; z-index: 60;
  display:flex; align-items:center; justify-content:center;
  padding: 20px;
  visibility: hidden; opacity:0;
  transition: opacity .25s ease, visibility .25s ease;
}
.efemeride-modal[aria-hidden="false"]{ visibility:visible; opacity:1; }
.efemeride-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.6);
}
.efemeride-modal-card{
  position:relative; z-index:1;
  background: var(--surface-2);
  max-width: 720px; width:100%;
  max-height: 86vh; overflow:auto;
  display:grid; grid-template-columns: 1fr 1fr;
  clip-path: var(--facet);
  border: 1px solid var(--line);
}
.efemeride-modal-flyer{
  aspect-ratio: 4/5;
  background: var(--surface) center / cover no-repeat;
}
.efemeride-modal-info{ padding: 28px; }
.efemeride-modal-close{
  position:absolute; top:10px; right:14px;
  background:none; border:none; color: var(--ink);
  font-size: 1.6rem; cursor:pointer; z-index:2;
}
@media (max-width: 620px){
  .efemeride-modal-card{ grid-template-columns: 1fr; }
}

/* ===== CONTACTO ===== */
.contacto-intro{ max-width: 560px; margin-bottom: 0; }
.contacto-intro a{
  color: var(--ink); font-weight: 700;
  text-decoration-color: var(--brass);
  text-underline-offset: 3px;
}
.contacto-intro a:hover{ color: var(--brass-dim); }
.contacto-form{ max-width: 560px; margin-top: 24px; }
.form-hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-row{ margin-bottom: 18px; display:flex; flex-direction:column; gap:6px; }
.form-row label{ font-size: .85rem; color: var(--muted); }
.form-row input, .form-row textarea{
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  font-family: var(--body);
  font-weight: 500;
  font-size: .95rem;
  clip-path: var(--facet-sm);
}
.form-row input:focus, .form-row textarea:focus{ border-color: var(--brass); }
.btn-submit{
  background: var(--brass);
  color: #000000;
  border: none;
  font-family: var(--display); font-weight: 700;
  padding: 13px 30px;
  cursor:pointer;
  clip-path: var(--facet-sm);
  transition: background .2s ease;
}
.btn-submit:hover{ background: #D4A64B; }
.btn-submit:disabled{ opacity: .6; cursor: wait; }
.form-status.is-error{ color: #A3322A; }
.form-status{ margin-top: 14px; font-size: .88rem; color: var(--brass-dim); min-height: 1.2em; }

/* ===== FOOTER ===== */
.site-footer{
  padding: 22px clamp(20px,5vw,56px);
  border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap: wrap; gap: 14px;
}
.social-links{ display:flex; gap: 14px; }
.social-links a{
  display:flex; align-items:center; justify-content:center;
  width: 34px; height:34px;
  color: var(--muted);
  border: 1px solid var(--line);
  clip-path: var(--facet-sm);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.social-links a:hover{
  color: #000000;
  background: var(--brass);
  border-color: var(--brass);
}

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float{
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display:flex; flex-direction:column; align-items:flex-end; gap: 10px;
}
.wa-toggle{
  width: 56px; height: 56px;
  background: var(--brass);
  color: #000000;
  border: none;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.wa-options{
  display:flex; flex-direction:column; gap:8px;
  opacity:0; visibility:hidden; translate: 0 6px;
  transition: opacity .2s ease, translate .2s ease, visibility .2s ease;
}
.wa-float.is-open .wa-options{
  opacity:1; visibility:visible; translate:0 0;
}
.wa-option{
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration:none;
  font-size: .85rem;
  font-weight: 500;
  padding: 10px 16px;
  text-align:right;
  clip-path: var(--facet-sm);
  white-space: nowrap;
}
.wa-option:hover{ border-color: var(--brass); color: var(--brass-dim); }

@media (min-width: 641px){
  .wa-float:hover .wa-options,
  .wa-float:focus-within .wa-options{
    opacity:1; visibility:visible; translate:0 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
