.home__social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* BUTTON BASE */
.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* ICON SIZE */
.social-btn i {
    font-size: 18px;
}

/* HOVER EFFECT */
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* SHOPEE STYLE */
.social-btn.shopee {
    background: linear-gradient(135deg, #ee4d2d, #ff6a3d);
}

/* WEBSITE STYLE */
.social-btn.website {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* TIKTOK STYLE */
.social-btn.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}