.row {
    --bs-gutter-x: 0;
}


/* Social Share Buttons Styling */
.social-share-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-share-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.social-share-btn:active {
    transform: translateY(-1px);
}

/* Platform-specific colors */
.btn-facebook {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.btn-facebook:hover {
    background: linear-gradient(135deg, #2d4373, #3b5998);
}

.btn-twitter {
    background: linear-gradient(135deg, #1da1f2, #1a91da);
}

.btn-twitter:hover {
    background: linear-gradient(135deg, #0d8bd9, #1da1f2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #20b954);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1da851, #25d366);
}

.btn-linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.btn-linkedin:hover {
    background: linear-gradient(135deg, #004471, #0077b5);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #006ba6);
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #005580, #0088cc);
}

.btn-copy {
    background: linear-gradient(135deg, #6c757d, #545b62);
}

.btn-copy:hover {
    background: linear-gradient(135deg, #495057, #6c757d);
}

.btn-print {
    background: linear-gradient(135deg, #343a40, #23272b);
}

.btn-print:hover {
    background: linear-gradient(135deg, #1d2124, #343a40);
}

.btn-email {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.btn-email:hover {
    background: linear-gradient(135deg, #d39e00, #ffc107);
    color: #212529;
}

/* Icons */
.social-share-btn i {
    font-size: 16px;
}

/* Notification styles */
.share-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
    max-width: 300px;
}

.share-notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.share-notification.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.share-notification.info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .social-share-buttons {
        flex-direction: column;
    }
    
    .social-share-btn {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .share-notification {
        left: 20px;
        right: 20px;
        width: auto;
        max-width: none;
    }
    
    .social-share-section {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .social-share-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .social-share-btn i {
        font-size: 18px;
    }
}

/* Loading state */
.social-share-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.social-share-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .social-share-section {
        background: #2d3748;
        color: #e2e8f0;
    }
}

/* Print styles */
@media print {
    .social-share-section {
        display: none;
    }
}