/* === CLEAN VISIBLE DOCK === */
.social-dock {
    position: fixed;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 6px 4px;

    /* Very light container background */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Square items with brand colors */
.dock-item {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s;
}

.dock-item svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2;
    transition: transform 0.2s;
}

/* Brand-specific background colors */
.dock-item[data-brand="facebook"] {
    background: #1877f2;
}

.dock-item[data-brand="x"] {
    background: #1a1a1a;
}

.dock-item[data-brand="linkedin"] {
    background: #0a66c2;
}

.dock-item[data-brand="youtube"] {
    background: #ff0000;
}

.dock-item[data-brand="instagram"] {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* Hover effect */
.dock-item:hover {
    transform: translateX(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.dock-item:hover svg {
    transform: scale(1.05);
}

/* Divider */
.dock-divider {
    width: 20px;
    height: 1px;
    background: #cbd5e1;
    margin: 4px auto;
    opacity: 0.5;
}

/* Mobile */
@media (max-width: 768px) {
    .social-dock {
        display: none;
    }

    .dock-item {
        width: 36px;
        height: 36px;
    }

    .dock-divider {
        width: 1px;
        height: 18px;
        margin: auto 6px;
    }

    .dock-item:hover {
        transform: translateY(-2px);
    }
}