/* start social */
.social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.social-icons a {
    color: #333;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Hover สีตาม icon social */
.social-icons a.whatsapp:hover {
    background-color: #25D366;
    color: #fff;
}

.social-icons a.facebook:hover {
    background-color: #1877f2;
    color: #fff;
}

.social-icons a.tiktok:hover {
    background-color: #000000;
    color: #fff;
}

.social-icons a.line:hover {
    background-color: #00c300;
    color: #fff;
}

.social-icons a.telegram:hover {
    background-color: #0088cc;
    color: #fff;
}

/* end social */