html body .wapf-field-container.wapf-field-image-swatch.wapf-hide {
  display: block !important;
  opacity: 0.5;
}

html body .wapf-field-container.wapf-field-image-swatch.wapf-hide .wapf-field-description {
  background: white;
}

html body .wapf-field-container.wapf-field-image-swatch.wapf-hide .wapf-field-input input[type=radio]:focus ~ .wapf-field-description {
  animation: highlight-background 1s ease-in-out;
}

@keyframes highlight-background {
  0% {
    background-color: white;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: white;
  }
}
.custom-button-overlay {
  position: absolute;
  right: 0;
  width: calc(100% - 90px);
  margin-left: 40px;
  height: 52px;
  background: rgba(0, 0, 0, 0); /* Fully transparent */
  cursor: not-allowed; /* Show a not-allowed cursor to indicate the button is disabled */
  z-index: 10; /* Ensure the overlay is on top */
  pointer-events: auto;
  cursor: not-allowed;
}

.grayscale {
  opacity: 0.3;
}

.custom-button-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: all; /* Enable pointer events for the pseudo-element */
}

button.single_add_to_cart_button {
  position: relative;
}

.notice-alert {
  color: red;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
