/* ── SEC Social Share Perfectionist Styling ── */
.sec-social-share {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 18px;
  background: #FFFFFF;
  border: 1px solid #E9E8EC;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.sec-social-share:hover {
  border-color: #DCD9E1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.sec-social-share__label {
  font-family: "Helvetica_geo_bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6E6A72;
  letter-spacing: 0.01em;
  margin-right: 4px;
}

.sec-social-share__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Force exact button & link styling reset */
button.sec-share-btn,
a.sec-share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 50% !important;
  background: #F5F4F7 !important;
  color: #333333 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

button.sec-share-btn svg,
a.sec-share-btn svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  fill: currentColor;
  display: block !important;
  transition: transform 0.2s ease;
}

button.sec-share-btn:hover,
a.sec-share-btn:hover {
  transform: translateY(-2.5px) scale(1.07) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

button.sec-share-btn:active,
a.sec-share-btn:active {
  transform: translateY(0) scale(0.95) !important;
}

/* Brand Hover Specifics */
.sec-share-btn--facebook:hover { background: #1877F2 !important; color: #FFFFFF !important; }
.sec-share-btn--x:hover { background: #111111 !important; color: #FFFFFF !important; }
.sec-share-btn--linkedin:hover { background: #0A66C2 !important; color: #FFFFFF !important; }
.sec-share-btn--copy:hover { background: #A61832 !important; color: #FFFFFF !important; }

/* Tooltip on hover */
.sec-share-btn[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.9);
  padding: 4px 8px;
  background: #111111;
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.sec-share-btn[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px) scale(1);
}

/* Copy Toast Notification */
.sec-share-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #111111;
  color: #FFFFFF;
  font-family: "Helvetica_geo_bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.sec-share-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sec-share-toast svg {
  width: 16px;
  height: 16px;
  stroke: #25D366;
}

@media (max-width: 600px) {
  .sec-social-share {
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
  }
}
@media (max-width: 600px) {
  .sec-share-toast {
    bottom: 20px !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(16px) scale(0.95) !important;
    width: calc(100% - 40px) !important;
    max-width: 320px !important;
    justify-content: center !important;
  }
  .sec-share-toast.is-visible {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }
}