/* Social Share - Minimal Design */
.simple-social-share {
    margin: 50px 0;
    padding: 30px 0 0 0;
    border-top: 1px solid #e5e7eb;
}

.simple-social-share .share-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 16px;
    text-align: center;
}

.simple-social-share .share-title svg {
    display: none;
}

.simple-social-share .share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

/* Minimal buttons */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.share-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #1f2937;
}

/* Ensure all SVG icons display correctly */
.share-btn svg path,
.share-btn svg polyline,
.share-btn svg circle,
.share-btn svg line {
    fill: currentColor;
    stroke: currentColor;
}

/* For filled icons */
.share-btn.facebook svg path,
.share-btn.twitter svg path,
.share-btn.pinterest svg path,
.share-btn.whatsapp svg path,
.share-btn.linkedin svg path {
    fill: currentColor;
    stroke: none;
}

/* For stroke icons */
.share-btn.email svg path,
.share-btn.email svg polyline,
.share-btn.copy svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.share-btn span {
    color: #1f2937;
}

.share-btn:hover {
    opacity: 0.6;
}

.share-btn:active {
    opacity: 0.8;
}

/* Remove gradient backgrounds */
.share-btn.facebook,
.share-btn.twitter,
.share-btn.pinterest,
.share-btn.whatsapp,
.share-btn.linkedin,
.share-btn.email,
.share-btn.copy {
    background: transparent;
}

/* Mobile */
@media (max-width: 640px) {
    .simple-social-share {
        margin: 40px 0;
    }
    
    .simple-social-share .share-buttons {
        gap: 20px;
    }
    
    .share-btn {
        gap: 8px;
        font-size: 15px;
    }
    
    .share-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Extra small mobile - icon only */
@media (max-width: 480px) {
    .simple-social-share .share-buttons {
        gap: 16px;
    }
    
    .share-btn span {
        display: none;
    }
    
    .share-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Toast - Minimal */
.copy-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #1f2937;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 9999;
    animation: slideIn 0.2s ease, slideOut 0.2s ease 2.5s;
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}

@media print {
    .simple-social-share { display: none; }
}
