/* Social Share Pro - Frontend Styles */

/* Share Buttons Container */
.ssp-share-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 0;
    margin: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.ssp-label {
    font-weight: 600;
    font-size: 14px;
    color: #555;
    margin-right: 5px;
}

/* Button Base */
.ssp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.ssp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.ssp-btn:active {
    transform: translateY(0);
}

/* Icon Sizing */
.ssp-icon {
    display: inline-flex;
    align-items: center;
}

.ssp-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Shapes */
.ssp-shape-circle .ssp-btn {
    border-radius: 50%;
    padding: 10px;
}

.ssp-shape-circle .ssp-btn .ssp-text {
    display: none; /* Circle = icon only */
}

.ssp-shape-rounded .ssp-btn {
    border-radius: 6px;
}

.ssp-shape-square .ssp-btn {
    border-radius: 0;
}

/* Sizes */
.ssp-size-small .ssp-btn {
    padding: 5px 10px;
    font-size: 12px;
}

.ssp-size-small .ssp-icon svg {
    width: 14px;
    height: 14px;
}

.ssp-size-large .ssp-btn {
    padding: 12px 20px;
    font-size: 15px;
}

.ssp-size-large .ssp-icon svg {
    width: 20px;
    height: 20px;
}

/* Platform Colors */
.ssp-btn-facebook  { background-color: #1877F2; }
.ssp-btn-twitter   { background-color: #000000; }
.ssp-btn-linkedin  { background-color: #0A66C2; }
.ssp-btn-whatsapp  { background-color: #25D366; }
.ssp-btn-pinterest { background-color: #E60023; }
.ssp-btn-telegram  { background-color: #26A5E4; }
.ssp-btn-reddit    { background-color: #FF4500; }
.ssp-btn-email     { background-color: #666666; }

.ssp-btn-facebook:hover  { background-color: #1565d8; }
.ssp-btn-twitter:hover   { background-color: #222222; }
.ssp-btn-linkedin:hover  { background-color: #094d92; }
.ssp-btn-whatsapp:hover  { background-color: #1fb855; }
.ssp-btn-pinterest:hover { background-color: #c8001e; }
.ssp-btn-telegram:hover  { background-color: #1e90d0; }
.ssp-btn-reddit:hover    { background-color: #e03d00; }
.ssp-btn-email:hover     { background-color: #555555; }

/* ============================================================
   FLOATING BAR (Pro)
   ============================================================ */
.ssp-floating-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 9999;
}

.ssp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ssp-float-btn:hover {
    width: 52px;
    color: #fff;
}

.ssp-float-btn .ssp-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ssp-float-btn.ssp-btn-facebook  { background-color: #1877F2; }
.ssp-float-btn.ssp-btn-twitter   { background-color: #000000; }
.ssp-float-btn.ssp-btn-linkedin  { background-color: #0A66C2; }
.ssp-float-btn.ssp-btn-whatsapp  { background-color: #25D366; }
.ssp-float-btn.ssp-btn-pinterest { background-color: #E60023; }
.ssp-float-btn.ssp-btn-telegram  { background-color: #26A5E4; }
.ssp-float-btn.ssp-btn-reddit    { background-color: #FF4500; }
.ssp-float-btn.ssp-btn-email     { background-color: #666666; }

/* Responsive */
@media (max-width: 768px) {
    .ssp-floating-bar {
        display: none; /* Mobile'da floating bar gizle */
    }

    .ssp-share-wrap {
        justify-content: center;
    }
}
