/* TouchTry – Try On button wrapper */
.ttwt-tryon-wrap {
  margin-top: 12px;
  margin-bottom: 8px;
}

/* TouchTry – Try On button */
.ttwt-tryon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: #111;
  color: #fff !important;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  border: 1px solid #111;
  border-radius: 12px;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 2px 0 #0d0d0d, 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: none;
  max-width: 100%;
  box-sizing: border-box;
}

/* Optional full-width button */
.ttwt-tryon-button.ttwt-block {
  width: 100%;
}

/* Accessibility */
.ttwt-tryon-button:focus,
.ttwt-tryon-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}

/* Keep visited state consistent */
.ttwt-tryon-button:visited,
.ttwt-tryon-button:hover,
.ttwt-tryon-button:active {
  color: #fbf7f7 !important;
  text-decoration: none !important;

}