.share .wpz-share-btn,
.share .print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 6px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
  -webkit-font-smoothing: antialiased;
  justify-content: center;
}

/* Ensure inline SVG/img icons match the button color */
.share .wpz-share-btn svg,
.share .wpz-share-btn img,
.share .print svg,
.share .print img {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
}

/* Remove any pseudo-icon / background-image added globally to non-print buttons */
.share .twitter:before,
.share .facebook:before,
.share .pinterest:before,
.share .pin-it-button:before,
.share .wpz-share-btn:before {
  content: none !important;
  background-image: none !important;
  background: none !important;
}

/* Platform background colors */
.share .twitter.wpz-share-btn { background: #000000 !important; }      /* X (black) */
.share .facebook.wpz-share-btn { background: #1877F2 !important; }     /* Facebook blue */
.share .pinterest.wpz-share-btn,
.share .pin-it-button,
.share .pinterest { background: #BD081C !important; }                 /* Pinterest red */
.share .print { background: #6DA544 !important; }                     /* Print green */

/* Keep a print pseudo-icon only on the .print button (falls back harmlessly if font not present) */
.share .print:before {
  content: "\e900";
  font-family: 'foodica', sans-serif;
  display: inline-block;
  margin-right: 8px;
  font-style: normal;
  font-weight: normal;
  speak: none;
  -webkit-font-smoothing: antialiased;
}

/* Ensure inline SVGs show correctly */
.share .wpz-share-btn svg,
.share .print svg {
  display: inline-block !important;
  vertical-align: middle;
}

/* Hover effect */
.share .wpz-share-btn:hover,
.share .print:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  opacity: 0.98;
}

/* Tighter spacing on small screens */
@media (max-width: 480px) {
  .share .wpz-share-btn,
  .share .print {
    padding: 8px 12px;
    font-size: 13px;
  }
}
