/* =========================================================
   Business Directory Plugin Lite – Card Grid with Photos
   ========================================================= */

/* === GRID LAYOUT === */
.wpbdp-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* === CARD === */
.wpbdp-listing {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

/* Hover */
.wpbdp-listing:hover {
  transform: translateY(-3px);
}
.woocommerce span.onsale {
    background-color: #0a7cff; /* badge background */
    color: #ffffff;           /* text color */
    border-radius: 6px;       /* optional rounded corners */
}
/* =========================================================
   REMOVE "Send a Message" (Business Directory Plugin Lite)
   WordPress.com-safe
   ========================================================= */

/* Hide contact section heading */
.single-wpbdp_listing h3 {
  display: none !important;
}

/* Hide BD contact/message form */
.single-wpbdp_listing form[action*="contact"],
.single-wpbdp_listing form[action*="wpbdp"],
.single-wpbdp_listing .wpbdp-contact-form,
.single-wpbdp_listing .wpbdp-send-message {
  display: none !important;
}

/* =========================================================
   LINKS: NO underline by default, underline only on hover
   ========================================================= */

a, a:visited {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

a:hover, a:focus {
  text-decoration: underline !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* If the underline is coming from editor underline formatting */
u,
.has-text-decoration-underline {
  text-decoration: none !important;
}