.cococure-share-container {
    margin: 1em 0;
    padding: 0.75em;
    background: #000;
}

.cococure-share-container h3 {
    margin: 0 0 1em;
    font-size: 1em;
    color: #fff;
}

.cococure-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 3px;
    border: none;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.share-button img {
    width: 10px;
    height: 10px;
    margin-right: 8px;
}

.share-button span {
    font-size: 10px;
    font-weight: 300;
}

/* Platform-specific colors */
.share-button.whatsapp { background: #25D366; color: white; }
.share-button.twitter { background: #1DA1F2; color: white; }
.share-button.instagram { background: #E4405F; color: white; }
.share-button.copy { background: #6c757d; color: white; }
.share-button.email { background: #EA4335; color: white; }
.share-button.native-share { background: #007AFF; color: white; }
.share-button.snapchat { 
    background: #FFFC00; 
    color: black; 
}

.share-button.snapchat img {
    filter: brightness(0);
}

.share-button.tiktok { 
    background: #000000; 
    color: white; 
}

.share-button.tiktok img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .cococure-share-buttons {
        gap: 8px;
    }
    
    .share-button {
        padding: 4px 8px;
    }
    
    .share-button img {
        width: 10px;
        height: 10px;
    }
    
    .share-button span {
        font-size: 12px;
    }
} 