/* #share  */
/* Widget Genel KonteynÄ±rÄ± */
.share-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    align-items: center;
}

/* PaylaÅŸ ButonlarÄ± Temel Stil */
.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    padding: 0;
    position: relative;
}

/* ÃœstÃ¼ne Gelince Efekt */
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* Aktif BasÄ±lma Hissi */
.share-btn:active {
    transform: scale(0.95);
}

/* Platform Renkleri */
.share-btn.fb {
    background-color: #1877F2;
}

.share-btn.x {
    background-color: #000000;
}

.share-btn.ln {
    background-color: #0077B5;
}

.share-btn.wa {
    background-color: #25D366;
}

.share-btn.tg {
    background-color: #0088CC;
}

.share-btn.copy {
    background-color: #607D8B;
}

.share-btn.native {
    background-color: #673AB7;
}

.share-btn.email {
    background-color: #D44638;
}

/* FontAwesome ve Ä°kon YerleÅŸimi */
.share-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}