/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


.product-stock-status {
  display: flex;
  align-items: center;
  margin-top: 8px; /* Espace sous le titre */
  margin-bottom: 15px; /* Espace avant le prix */
}

.stock-dot {
  width: 10px;
  height: 10px;
  background-color: #28a745; /* Vert "succès" */
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  /* Optionnel : petit effet de pulsation */
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
  animation: pulse-stock 2s infinite;
}

.stock-text {
  font-size: 13px;
  font-weight: 700;
  color: #28a745;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse-stock {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}
