.relative {
    position: relative;
}

.action-icons {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-end; /* Eklendi */
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    gap: 10px;

    .whatsapp {
        background-color: #25D366;
        color: white;
    }

    .phone {
        background-color: #34b7f1;
        color: white;
    }
}

.icon-text-group {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    color: #333;
    border-radius: 30px; /* Pill için yüksek değer */
    width: 60px; /* Sadece ikon kadar geniş */
    transition: width 0.3s ease-in-out;
    overflow: hidden;
}

.icon-text-group:hover {
    width: 160px; /* Sola doğru genişler */
    border-radius: 30px; /* Radius sabit kalır */
}

.action-icon {
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 30px; /* Pill için yüksek değer */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    flex-shrink: 0; /* Sabit kalmasını sağlar */
}

.action-text {
    opacity: 0;
    margin-left: 10px;
    transition: opacity 0.3s ease-in-out;
    white-space: nowrap;
}

.icon-text-group:hover .action-text {
    opacity: 1;
}

@media (max-width: 600px) {
    .icon-text-group {
        width: 60px !important; /* Sadece ikon kadar geniş */
        transition: none;
    }
    .action-text {
        display: none; /* Metni gizle */
    }
    .action-icons {
        justify-content: center; /* Ortala */
        bottom: 55px; /* Daha fazla boşluk */
        right: 15px; /* Daha fazla boşluk */
    }
}
