/* TouchTry – Try On button (no hover) */
.ttwt-tryon-button {
  display: inline-flex;             /* keeps text perfectly centered */
  align-items: center;
  justify-content: center;
  gap: 8px;                         /* space if you add an icon later */
  padding: 12px 22px;
  background: #111;                 /* solid black */
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  border: 1px solid #111;           /* crisp edge */
  border-radius: 12px;              /* smooth pill corners */
  text-decoration: none;
  cursor: pointer;

  /* subtle depth without hover */
  box-shadow: 0 2px 0 #0d0d0d, 0 6px 12px rgba(0,0,0,0.08);

  /* remove transition/hover effects */
  transition: none;
}

/* optional: make it full-width under Add to Cart (use together with class="ttwt-tryon-button ttwt-block") */
.ttwt-tryon-button.ttwt-block {
  width: 100%;
}

/* accessibility: visible focus ring for keyboard users */
.ttwt-tryon-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}
