/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

// Face toate variațiile (inclusiv fără stoc) active în selector
add_filter('woocommerce_variation_is_active', function( $active, $variation ) {
    if ( ! $variation->is_in_stock() ) {
        return true; // o menținem activă
    }
    return $active;
}, 10, 2);

/* Bară progres transport gratuit */
.bq-free-ship-bar {
  margin: 12px 0 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f6f7f9;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  font-size: 14px;
}

.bq-free-ship-bar .bq-free-ship-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 8px;
}

.bq-free-ship-bar .bq-free-ship-fill {
  height: 100%;
  width: 0%;
  transition: width 0.35s ease;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}

.bq-free-ship-bar.bq-success .bq-free-ship-fill {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.bq-free-ship-bar .bq-free-ship-text {
  line-height: 1.4;
}

.bq-free-ship-bar.bq-success .bq-free-ship-text {
  color: #1f8e4d;
  font-weight: 600;
}

/* Mini-cart spacing tweak în Flatsome */
.widget_shopping_cart .bq-free-ship-bar {
  margin-top: 6px;
  margin-bottom: 12px;
}

