
/* Hide variation selector dropdown on commerce product full page */
.product-detail .commerce-order-item-dc-ajax-add-cart-form .field--name-purchased-entity {
  display: none !important;
}

/* Gallery thumbnail selected state - overrides tw-border-gray-200 */
.gallery-thumbnail-selected {
  border-color: rgb(59, 130, 246) !important; /* tw-border-blue-500 */
  border-width: 2px !important; /* Override universal reset */
  box-shadow: 0 0 0 3px rgb(59, 130, 246) !important; /* Blue glow effect */
}

/* Variation out of stock strikethrough effect */
.variation-out-of-stock {
  position: relative;
}

.variation-selector[data-stock-level="0"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, transparent 49.5%, #ef4444 49.5%, #ef4444 50.5%, transparent 50.5%);
  z-index: 2;
  pointer-events: none;
}


.twbase_webform_product_waiting_list_block{
  display: none;
}

.show-if-stock-level-0.hide{
  display: none;
}

/* Override to show waiting list button when stock is 0 */
.show-if-stock-level-0.show {
  display: block !important;
}

.product_body_container iframe ,
.product_short_description_container iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

/* Make quantity and add to cart button appear in same row */
.commerce-order-item-dc-ajax-add-cart-form .field--name-quantity,
.commerce-order-item-dc-ajax-add-cart-form .form-actions {
    display: inline-flex;
    vertical-align: top;
}

.commerce-order-item-dc-ajax-add-cart-form .field--name-quantity {
    margin-right: 1rem;
    margin-bottom: 0;
}

.commerce-order-item-dc-ajax-add-cart-form .form-actions {
    margin-top: 0;
}

.commerce-order-item-dc-ajax-add-cart-form .field--name-quantity .js-form-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.commerce-order-item-dc-ajax-add-cart-form .field--name-quantity input[type="number"] {
    width: 80px;
    margin: 0;
}
