/* SNS Section */
.sns-section {
    background-color: #fff;
    text-align: center;
}

.sns-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sns-btn {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 180px;
    justify-content: center;
}

.sns-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.sns-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.tiktok {
    background: #000000;
}

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

.twitter {
    background: #000000;
    /* X brand color */
}

/* Footer */
.footer {
    background-color: var(--primary-pink);
    padding: 20px 0;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}