/* Rawcut Social Share Styles */
.rawcut-social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rawcut-social-share--left {
    justify-content: flex-start;
}

.rawcut-social-share--center {
    justify-content: center;
}

.rawcut-social-share--right {
    justify-content: flex-end;
}

.rawcut-social-share__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rawcut-social-share__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rawcut-social-share__button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    position: relative;
    z-index: 2;
}

/* Hover efekti */
.rawcut-social-share__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b11656;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: 1;
}

.rawcut-social-share__button:hover::before {
    transform: scale(1);
}

.rawcut-social-share__button:hover {
    color: #fff;
}

/* Sosyal medya renkleri (opsiyonel - aktif etmek için yorumu kaldırın) */
/*
.rawcut-social-share__button--linkedin {
    background-color: #0077b5;
}

.rawcut-social-share__button--twitter {
    background-color: #000;
}

.rawcut-social-share__button--facebook {
    background-color: #1877f2;
}

.rawcut-social-share__button--instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
*/

/* Boyut varyasyonları */
.rawcut-social-share--small .rawcut-social-share__button {
    width: 36px;
    height: 36px;
}

.rawcut-social-share--small .rawcut-social-share__button svg {
    width: 16px;
    height: 16px;
}

.rawcut-social-share--large .rawcut-social-share__button {
    width: 52px;
    height: 52px;
}

.rawcut-social-share--large .rawcut-social-share__button svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .rawcut-social-share {
        gap: 10px;
    }
    
    .rawcut-social-share__buttons {
        gap: 8px;
    }
    
    .rawcut-social-share__button {
        width: 20px;
        height: 20px;
    }
    
    .rawcut-social-share__button svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .rawcut-social-share {
        flex-wrap: wrap;
    }
    
    .rawcut-social-share--center,
    .rawcut-social-share--right {
        justify-content: flex-start;
    }
}
