/* Social Share Buttons Styles */
.wsk-share { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }

.wsk-share-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 15px; background: var(--share-color, #6b7280); color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s; cursor: pointer; border: none; }
.wsk-share-btn:hover { filter: brightness(1.1); transform: translateY(-2px); color: #fff; }

.wsk-share-icon { display: flex; width: 18px; height: 18px; }
.wsk-share-icon svg { width: 100%; height: 100%; fill: currentColor; }

/* Shapes */
.wsk-share-rounded .wsk-share-btn { border-radius: 8px; }
.wsk-share-square .wsk-share-btn { border-radius: 4px; }
.wsk-share-circle .wsk-share-btn { border-radius: 50%; padding: 12px; }
.wsk-share-circle .wsk-share-text { display: none; }

/* Sizes */
.wsk-share-small .wsk-share-btn { padding: 8px 12px; font-size: 12px; }
.wsk-share-small .wsk-share-icon { width: 14px; height: 14px; }
.wsk-share-large .wsk-share-btn { padding: 14px 20px; font-size: 16px; }
.wsk-share-large .wsk-share-icon { width: 22px; height: 22px; }

/* Icons Only */
.wsk-share-icons .wsk-share-text { display: none; }
.wsk-share-icons .wsk-share-btn { padding: 10px; }

/* Floating */
.wsk-share-floating { position: fixed; top: 50%; left: 20px; transform: translateY(-50%); flex-direction: column; gap: 5px; margin: 0; z-index: 999; background: #fff; padding: 10px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.wsk-share-floating .wsk-share-btn { padding: 10px; }
.wsk-share-floating .wsk-share-text { display: none; }

/* Copy button */
.wsk-share-copy.copied { background: #22c55e !important; }

/* Responsive */
@media (max-width: 768px) {
    .wsk-share-floating { top: auto; bottom: 0; left: 0; right: 0; transform: none; flex-direction: row; justify-content: center; border-radius: 0; }
}
