/**
 * Social Share Buttons
 * Mobile-first, design minimalista
 */

/* ===== Share Section ===== */
.share-section {
    background: transparent;
    border-top: 1px solid #e5e5e5;
    padding: 16px 0 12px 0;
    margin: 16px 0 0 0;
}

.share-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 10px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-title i {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ===== Share Buttons ===== */
.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(255, 152, 0, 0.05);
}

.share-btn:active {
    transform: scale(0.98);
}

.share-btn i {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.share-btn:hover i {
    color: var(--color-primary);
}

/* ===== Platform Specific Icons (subtle colors) ===== */
.share-facebook i {
    color: #1877F2;
}

.share-twitter i {
    color: #1DA1F2;
}

.share-whatsapp i {
    color: #25D366;
}

.share-email i {
    color: #EA4335;
}

.share-copy i {
    color: #6C757D;
}

/* ===== Responsive - Tablet/Desktop ===== */
@media (min-width: 768px) {
    .share-section {
        padding: 20px 0 16px 0;
        margin: 20px 0 0 0;
    }
    
    .share-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .share-btn i {
        font-size: 15px;
    }
    
    .share-btn span {
        display: inline;
    }
}

/* ===== Mobile: Hide text, show only icons ===== */
@media (max-width: 767px) {
    .share-btn span {
        display: none;
    }
    
    .share-btn {
        padding: 8px;
        min-width: 36px;
        min-height: 36px;
    }
}
