/**
* Theme Name: WooFood Child
* Description: This is a child theme of WooFood.
* Author: <a href="https://www.wpslash.com">WPSlash</a>
* Template: woofood
* Version: 2.7.3
*/
form.checkout_coupon.woocommerce-form-coupon {
display: block !important;
}
.woocommerce-info {
display: none;
}
.notification-bar {
  background-color: #cc0000;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  margin-bottom: 5px;
}

.notification-bar h4,
.notification-bar p {
  margin: 5px 0;
}

.notification-code {
  background-color: #ffffff;
  color: #cc0000;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
}

.merchant-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  font-family: Arial, sans-serif;
}

.merchant-info > * {
  margin: 0 5px; /* Ajuster l'espacement entre les éléments si nécessaire */
}

.opening-hours {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.opening-hours.open,
.opening-hours.closed {
  color: #fff;
  border-radius: 20px;
  padding: 3px 8px;
}

.opening-hours.open {
  background-color: #4caf50;
}

.opening-hours.closed {
  background-color: #e0e0e0;
  color: #343434;
}

.merchant-info a {
  text-decoration: none;
  color: #333;
}

.merchant-info i {
  margin-right: 5px;
}

.notification {
  display: block;
  background-color: #ffc107;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 10px;
}

.pickup-only {
  color: red;
  font-weight: bold;
  font-size: 12px;
  margin-left: 5px;
}


.payment-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.payment-icons img {
  width: 30px; /* Ajustez la largeur selon vos besoins */
  height: 30px; /* Hauteur fixée pour uniformiser */
  object-fit: contain; /* Assure que les images gardent leur proportion */
  margin-right: 10px;
}

.payment-icons img:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .woofood-product-loop .product-short-desc {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    white-space: normal !important;
  }
}


