/**
 * YB Ausome Shoppe — share bar (reads page og:image for Pinterest only; does not alter <meta> tags).
 */
.yba-share-embed {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 40px;
  box-sizing: border-box;
}

#page-shop > .yba-share-embed {
  padding-top: 4px;
  padding-bottom: 16px;
}

.share-bar {
  --sb-accent: #000abe;
  --sb-accent-hover: #427aa1;
  --sb-border: #000000;
  --sb-text: #000000;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  margin: 0;
}

.share-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--sb-border);
  background: #ffffff;
  color: var(--sb-text);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}

.share-bar__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 10, 190, 0.12);
}

.share-bar__btn:focus-visible {
  outline: 3px solid #ffd000;
  outline-offset: 2px;
}

.share-bar__facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.share-bar__twitter:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.share-bar__pinterest:hover {
  background: #e60023;
  color: #ffffff;
  border-color: #e60023;
}

.share-bar__instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border-color: #bc1888;
}

.share-bar__native,
.share-bar__copy {
  background: #ffffff;
}

.share-bar__copy.copied {
  background: var(--sb-accent);
  color: #ffffff;
  border-color: var(--sb-accent);
}

.share-bar__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

@media (max-width: 480px) {
  .share-bar {
    padding: 6px 0;
  }

  .share-bar__btn {
    padding: 6px 11px;
    font-size: 0.75rem;
  }

  .yba-share-embed {
    padding-left: 16px;
    padding-right: 16px;
  }
}
