/* Support Contact Plugin Styles */
.sc-support-button-wrapper {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
}

.sc-support-button-wrapper.sc-position-bottom-right {
    right: 20px;
}

.sc-support-button-wrapper.sc-position-bottom-left {
    left: 20px;
}

.sc-support-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-support-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sc-support-toggle svg {
    width: 28px;
    height: 28px;
}

.sc-support-menu {
    position: absolute;
    bottom: 80px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.sc-position-bottom-right .sc-support-menu {
    right: 0;
}

.sc-position-bottom-left .sc-support-menu {
    left: 0;
}

.sc-support-menu.sc-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sc-support-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-support-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.sc-close-button {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.sc-close-button:hover {
    color: #333;
}

.sc-support-options {
    padding: 10px;
}

.sc-support-option {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    margin-bottom: 8px;
}

.sc-support-option:last-child {
    margin-bottom: 0;
}

.sc-support-option:hover {
    background-color: #f5f5f5;
}

.sc-support-option svg {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.sc-support-option.sc-whatsapp svg {
    color: #25D366;
}

.sc-support-option.sc-email svg {
    color: #EA4335;
}

.sc-support-option div {
    display: flex;
    flex-direction: column;
}

.sc-support-option strong {
    font-size: 16px;
    margin-bottom: 2px;
    color: #333;
}

.sc-support-option span {
    font-size: 13px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .sc-support-menu {
        width: calc(100vw - 40px);
        max-width: 320px;
    }
    
    .sc-support-toggle {
        width: 56px;
        height: 56px;
    }
}