/* SKC Chat Connect – Enhanced Styles */
.skc-cc-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.skc-cc-inline {
    margin: 10px 0;
}

.skc-cc-floating {
    position: fixed;
    bottom: 20px;
    transition: all 0.3s ease;
}

.skc-cc-floating.skc-cc-right { right: 20px; }
.skc-cc-floating.skc-cc-left  { left: 20px; }

.skc-cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.skc-cc-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    background: #f9f9f9;
}

.skc-cc-wa span, .skc-cc-ms span {
    font-size: 15px;
}

.skc-cc-wa svg path { fill: #25D366; transition: fill 0.2s ease; }
.skc-cc-ms svg path { fill: #0084FF; transition: fill 0.2s ease; }

.skc-cc-btn:hover .skc-cc-wa svg path { fill: #1ebe57; }
.skc-cc-btn:hover .skc-cc-ms svg path { fill: #006edc; }

@media (max-width: 480px) {
    .skc-cc-btn {
        padding: 10px 12px;
        font-size: 14px;
        gap: 6px;
    }
}
