/* WPForms fixes */
/* Initial field looks */
.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea {
    background: #fff;
    border-width: 0 0 1px 0;
    color: var(--ast-global-color-2);
    opacity: 0.5;
}
/* On focus */
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
    outline: none;
    opacity: 1;
    border-color: var(--ast-global-color-0);
}
/* Don't allow resizing the Message box */
.wpforms-container textarea {
    resize: none;
}
/* Message box fixed height */
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
    height: 136px;
}
/* Button size & font size */
.wpforms-container button {
    padding: 15px 34px;
    font-size: 15px;
}
/* WPForms done */
/* Footer 2 big columns on sides and 1 small one in the middle */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
    grid-template-columns: 3fr 1fr 3fr;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the page takes up the full viewport height */
}

#page .site-content {
  flex-grow: 1; /* Pushes the footer to the bottom */
}

img {
  pointer-events: none; /* Prevent clicking on images */
  user-select: none; /* Disable selecting the image */
  -webkit-user-drag: none; /* Disable dragging the image (for WebKit browsers) */
}

.wp-block-image img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
[name="jetpack_subscriptions_widget"] {
    background-color: #D3D3D3 !important; /* Light grey */
 
}
/* Disable WooCommerce zoom magnifier icon */
.woocommerce-product-gallery__trigger {
    display: none !important;
}

/* Disable WooCommerce zoom on hover */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper img {
    pointer-events: none !important;
    transform: none !important;
}