/* Simple Social Share - Frontend Styles */

.sss-share-wrap {
    margin: 30px 0 20px;
    padding: 0;
    clear: both;
}

.sss-heading {
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 12px;
    padding: 0;
}

.sss-buttons {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.sss-button-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sss-button-item::before {
    display: none !important;
    content: none !important;
}

.sss-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    text-decoration: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 600;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.sss-button:hover {
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.sss-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sss-button:visited {
    color: #fff !important;
}

.sss-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sss-icon svg {
    display: block;
    fill: currentColor;
}

.sss-label {
    white-space: nowrap;
}

/* Button Styles */

/* Rounded (default - like Hubbub) */
.sss-style-rounded .sss-button {
    border-radius: 4px;
}

/* Pill */
.sss-style-pill .sss-button {
    border-radius: 50px;
}

/* Square */
.sss-style-square .sss-button {
    border-radius: 0;
}

/* Button Sizes */

/* Small */
.sss-size-small .sss-button {
    padding: 6px 12px;
    font-size: 12px;
}

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

/* Medium (default) */
.sss-size-medium .sss-button {
    padding: 8px 16px;
    font-size: 13px;
}

.sss-size-medium .sss-icon svg {
    width: 18px;
    height: 18px;
}

/* Large */
.sss-size-large .sss-button {
    padding: 10px 20px;
    font-size: 15px;
}

.sss-size-large .sss-icon svg {
    width: 22px;
    height: 22px;
}

/* Icon-only (no labels) */
.sss-share-wrap .sss-button:not(:has(.sss-label)) {
    padding: 10px;
}

.sss-size-small .sss-button:not(:has(.sss-label)) {
    padding: 7px;
}

.sss-size-large .sss-button:not(:has(.sss-label)) {
    padding: 12px;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .sss-buttons {
        gap: 6px;
    }

    .sss-size-medium .sss-button {
        padding: 7px 12px;
        font-size: 12px;
    }

    .sss-size-large .sss-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}
