/* Social media links — footer & contact */

.tyb-social-zone {
    position: relative;
}
.tyb-social-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem;
}
.tyb-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}
.tyb-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    text-decoration: none;
}
.tyb-social-icon {
    width: 1.15rem;
    height: 1.15rem;
}
.tyb-social-icon--material {
    font-size: 1.25rem;
    width: auto;
    height: auto;
}

.tyb-social-zone--light .tyb-social-heading {
    color: var(--text-main);
}
.tyb-social-zone--light .tyb-social-link {
    background: var(--card-light, #f9fafb);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.tyb-social-zone--light .tyb-social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.tyb-social-zone--dark .tyb-social-heading {
    color: #fff;
}
.tyb-social-zone--dark .tyb-social-link {
    background: #1f2937;
    color: #9ca3af;
}
.tyb-social-zone--dark .tyb-social-link:hover {
    color: #fff;
    transform: translateY(-1px);
}
.tyb-social-zone--dark .tyb-social-link--facebook:hover { background: #2563eb; }
.tyb-social-zone--dark .tyb-social-link--instagram:hover { background: #db2777; }
.tyb-social-zone--dark .tyb-social-link--twitter:hover { background: #0ea5e9; }
.tyb-social-zone--dark .tyb-social-link--youtube:hover { background: #dc2626; }

.tyb-social-zone--contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.tyb-social-zone--contact .tyb-social-heading {
    color: var(--text-main);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
}
.tyb-social-zone--contact .tyb-social-link {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    width: 2.75rem;
    height: 2.75rem;
}

.tyb-social-zone--compact .tyb-social-links {
    gap: 0.5rem;
}
.tyb-social-zone--compact .tyb-social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
}

.tyb-social-manage-btn {
    display: none;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px dashed rgba(245, 158, 11, 0.6);
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
    cursor: pointer;
}
body.tyb-edit-active .tyb-social-manage-btn {
    display: inline-flex;
}
body.tyb-edit-active [data-tyb-social-zone] {
    outline: 2px dashed rgba(245, 158, 11, 0.45);
    outline-offset: 4px;
    border-radius: 0.5rem;
    padding: 0.25rem;
}
