/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
.woocommerce-terms-and-conditions-wrapper {
    display: none;
}

p.hostinger-reach-optin.form-row {
    display: none;
}
.woocommerce-product-attributes-item__label{
	display: none;
}
.woocommerce-product-attributes-item__value{
	display: none;
}
tr.woocommerce-product-attributes-item.woocommerce-product-attributes-item--attribute_pa_size {
    display: none;
}
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-updateOrderReview {
    display: none;
}

.mobile-image {
    display: none !important;
}

.desktop-image {
    display: block; /* or 'inline-block', depending on your layout needs */
    width: 100%; /* Optional: adjust as needed */
    height: auto; /* Optional: adjust as needed */
}

/* Media query for mobile devices (e.g., screens smaller than 768px) */
@media (max-width: 767px) {
    .mobile-image {
        display: block; /* Show the mobile image on small screens */
    }
    .desktop-image {
        display: none !important; /* Hide the desktop image on small screens */
    }
}