.share-button-container {
    position: fixed;
    bottom: 90px !important;
    right: 20px;
    z-index: 1001;
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.share-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.share-button.active {
    transform: scale(0.9);
    box-shadow: var(--shadow-inner);
    border: 2px solid var(--color-primary-light);
}

.share-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding: 10px;
    border-radius: 15px;
    background-color: transparent;
    box-shadow: none;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1002;
}

.share-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.share-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-option:hover {
    transform: scale(1.1);
}

.share-option.whatsapp { background: #25D366; }
.share-option.facebook { background: #1877F2; }
.share-option.twitter { background: #1DA1F2; }
.share-option.linkedin { background: #0A66C2; }
.share-option.email { background: #EA4335; }
.share-option.copy { background: #6c757d; }

.chat-button {
    position: fixed;
    bottom: 20px !important;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .share-button-container {
        bottom: 90px;
    }
    
    .chat-button {
        bottom: 20px;
    }

    .share-options {
        bottom: 60px;
    }
}