.single-product .wp-block-woocommerce-product-details .wc-tabs {
	display: block !important;
}

.single-product .wp-block-woocommerce-product-details .woocommerce-tabs div[style="display: none;"] {
    display: none !important;
}
@media (max-width: 1023px) {
  #shop-filter-toggle #showFilter,
  #shop-filter-toggle #CloseFilter {
    display: none;
  }
}

/* Homepage product images - FINAL stable version */
.home .wc-block-components-product-image img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #f8f8f8;
}
.product.outofstock {
    position: relative;
}

.product.outofstock::before {
    content: "ΕΞΑΝΤΛΗΘΗΚΕ";
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e60000;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 10px;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 3px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.product.outofstock img {
    opacity: 0.6;
    filter: grayscale(40%);
}
.single-product span.price ins .woocommerce-Price-amount,
.single-product .woocommerce-variation-price span.price ins .woocommerce-Price-amount {
    color: #e53935 !important;
}

.single-product span.price del .woocommerce-Price-amount,
.single-product .woocommerce-variation-price span.price del .woocommerce-Price-amount {
    color: #000000 !important;
    opacity: 0.6;
}
.single-product span.price del,
.single-product .woocommerce-variation-price span.price del {
    text-decoration-color: #e53935 !important;
}
add_filter( 'woocommerce_sale_badge_text', 'custom_sale_badge_block_text', 99, 2 );
function custom_sale_badge_block_text( $sale_text, $product ) {
    return 'Σε έκπτωση!';
}

add_filter( 'woocommerce_sale_flash', 'custom_classic_sale_flash_text', 99, 3 );
function custom_classic_sale_flash_text( $html, $post, $product ) {
    return '<span class="onsale">Σε έκπτωση!</span>';
}