
/* Wallet Theme — Qty Swatches (attribute "Quantità")
   Progressive enhancement per WooCommerce. */
.wc-attr-swatches{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(88px,1fr));
  gap:.5rem;
  margin-top:.5rem
}
.wc-attr-swatch{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  padding:.65rem .8rem;
  border-radius:999px;
  border:2px solid var(--wc-accent,currentColor);
  background:#fff;
  color:var(--wc-accent,currentColor);
  cursor:pointer;
  user-select:none;
  transition:transform .06s ease,background .15s ease,color .15s ease,border-color .15s ease;
  font-weight:600;
  text-align:center;
  white-space:nowrap
}
.wc-attr-swatch:hover{transform:translateY(-1px)}
.wc-attr-swatch.is-selected,.wc-attr-swatch:focus-visible{
  background:var(--wc-accent,currentColor);
  color:#fff;
  outline:none
}
.wc-attr-swatch.is-disabled{opacity:.45;cursor:not-allowed;text-decoration:line-through}
.wc-attr-select.is-enhanced{
  position:absolute!important;
  width:1px!important;height:1px!important;
  overflow:hidden!important;
  clip:rect(1px,1px,1px,1px)!important;
  white-space:nowrap!important
}
/* compat con table.variations */
table.variations td.value{display:block}
