.woocommerce a.added_to_cart {
  display: none !important;
}

/* Style all WooCommerce checkout dropdowns (Select2) */

/* Closed dropdown box */
.woocommerce-checkout .select2-container .select2-selection {
    background-color: #181D3D !important; /* box background */
    color: #fff !important; /* selected text */
    border: 1px solid #F8F7F3 !important;
}

/* Expanded dropdown list */
.woocommerce-checkout .select2-container .select2-dropdown {
    background-color: #181D3D !important; /* dropdown list background */
    color: #fff !important;
    border: 1px solid #F8F7F3 !important;
}

/* Each option */
.woocommerce-checkout .select2-container .select2-results__option {
    background-color: #181D3D !important;
    color: #fff !important;
}

/* Highlighted/hover option */
.woocommerce-checkout .select2-container .select2-results__option--highlighted {
    background-color: #444 !important; /* hover/active background */
    color: #fff !important;
}

/* Add spacing between all checkout/payment buttons on Cart page */
.woocommerce-cart .wc-proceed-to-checkout > * {
    display: block;
    margin-bottom: 15px !important;
}

/* Remove underline from all WooCommerce sale prices */
.woocommerce ins {
    text-decoration: none !important;
}

/* Force product images to show in cart on mobile */
@media (max-width: 767px) {
  .woocommerce-cart .product-thumbnail {
    display: table-cell !important;
    width: 60px !important;
  }

  .woocommerce-cart .product-thumbnail img {
    max-width: 60px;
    height: auto;
    display: block;
  }
}

/* Single Product Page - In Stock */
.single-product p.stock.in-stock,
.single-product span.stock.in-stock {
    color: green !important; /* Change green to your desired color */
}

/* Single Product Page - Out of Stock */
.single-product p.stock.out-of-stock,
.single-product span.stock.out-of-stock {
    color: red !important; /* Change red to your desired color */
}

/* Circular Sale badge on product images */
.woocommerce span.onsale,
.woocommerce-page span.onsale {
    background-color: #993BBB !important; /* badge color */
    color: #F8F7F3 !important;            /* text color */
    font-weight: bold !important;         
    width: 50px !important;               /* adjust size */
    height: 50px !important;              /* same as width for circle */
    display: flex !important;
    align-items: center !important;       /* center text vertically */
    justify-content: center !important;   /* center text horizontally */
    border-radius: 50% !important;        /* makes it circular */
    padding: 0 !important;                /* remove default padding */
    font-size: 0.8rem !important;         /* adjust text size */
    text-align: center !important;
}

/* Hide all comment icons in galleries/lightboxes */
.elementor-lightbox [class*="comment"],
.lb-comments,
.lightbox-comments,
.gal-comment-icon,
.elementor-lightbox-comments,
.gallery-lightbox .comments,
.fancybox-comments,
.photoswipe-comment-icon {
    display: none !important;
    pointer-events: none !important; /* Prevent clicks */
}


